diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3648aa6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +iphone/tipop.xcodeproj/xcuserdata/*.xcuserdatad +iphone/tipop.xcodeproj/project.xcworkspace/xcuserdata/*.xcuserdatad +/.DS_Store diff --git a/build/guy.mcdooooo.tipop-iphone-1.0.1.zip b/build/guy.mcdooooo.tipop-iphone-1.0.1.zip deleted file mode 100644 index d731f2d..0000000 Binary files a/build/guy.mcdooooo.tipop-iphone-1.0.1.zip and /dev/null differ diff --git a/build/guy.mcdooooo.tipop-iphone-1.0.2.zip b/build/guy.mcdooooo.tipop-iphone-1.0.2.zip deleted file mode 100644 index c58396f..0000000 Binary files a/build/guy.mcdooooo.tipop-iphone-1.0.2.zip and /dev/null differ diff --git a/build/guy.mcdooooo.tipop-iphone-1.0.3.zip b/build/guy.mcdooooo.tipop-iphone-1.0.3.zip deleted file mode 100644 index 779e3ec..0000000 Binary files a/build/guy.mcdooooo.tipop-iphone-1.0.3.zip and /dev/null differ diff --git a/build/guy.mcdooooo.tipop-iphone-1.0.4.zip b/build/guy.mcdooooo.tipop-iphone-1.0.4.zip deleted file mode 100644 index e2fd362..0000000 Binary files a/build/guy.mcdooooo.tipop-iphone-1.0.4.zip and /dev/null differ diff --git a/build/guy.mcdooooo.tipop-iphone-1.0.5.zip b/build/guy.mcdooooo.tipop-iphone-1.0.5.zip deleted file mode 100644 index 4c4628e..0000000 Binary files a/build/guy.mcdooooo.tipop-iphone-1.0.5.zip and /dev/null differ diff --git a/iphone/.DS_Store b/iphone/.DS_Store new file mode 100644 index 0000000..c6c40dc Binary files /dev/null and b/iphone/.DS_Store differ diff --git a/iphone/Classes/FBPOPAnimator.m b/iphone/Classes/FBPOPAnimator.m index 8c11394..748cbce 100644 --- a/iphone/Classes/FBPOPAnimator.m +++ b/iphone/Classes/FBPOPAnimator.m @@ -8,6 +8,8 @@ #import "FBPOPAnimator.h" +@class TiUILabel, TiUIScrollView; + @implementation FBPOPAnimator #define ERR_DIMENSION -100000000.f @@ -216,12 +218,14 @@ -(void)basicAnimationWithProxy:(TiViewProxy *)proxy andProperties:(NSDictionary [proxy.view.layer pop_addAnimation:animBackgroundColor forKey:@"BasicAnimationBackgroundColor"]; } + + Class TiUILabelClass = NSClassFromString(@"TiUILabel"); - if ( [proxy.view isKindOfClass:[TiUILabel class]] && nil != color ) { + if ( [proxy.view isKindOfClass:TiUILabelClass] && nil != color ) { setAnimationMask(basicMask, TIPOPCOLOR); - [[(TiUILabel *)proxy.view label] pop_removeAnimationForKey:@"BasicAnimationLabelTextColor"]; + [[(id)proxy.view valueForKey:@"label"] pop_removeAnimationForKey:@"BasicAnimationLabelTextColor"]; POPBasicAnimation *animColor = [POPBasicAnimation animationWithPropertyNamed:kPOPLabelTextColor]; animColor.toValue = color.color; @@ -234,7 +238,7 @@ -(void)basicAnimationWithProxy:(TiViewProxy *)proxy andProperties:(NSDictionary }; BASIC_POP_ATTR( animColor ); - [[(TiUILabel *)proxy.view label] pop_addAnimation:animColor forKey:@"BasicAnimationLabelTextColor"]; + [[(id)proxy.view valueForKey:@"label"] pop_addAnimation:animColor forKey:@"BasicAnimationLabelTextColor"]; } if ( nil != tintColor ) { @@ -858,7 +862,9 @@ -(void)basicAnimationWithProxy:(TiViewProxy *)proxy andProperties:(NSDictionary } - if ( [proxy.view isKindOfClass:[TiUIScrollView class]] ) { + Class TiUIScrollViewClass = NSClassFromString(@"TiUIScrollView"); + + if ( [proxy.view isKindOfClass:TiUIScrollViewClass] ) { if ( nil != [properties objectForKey:@"scrollViewContentOffset"] ) { @@ -876,7 +882,7 @@ -(void)basicAnimationWithProxy:(TiViewProxy *)proxy andProperties:(NSDictionary float y = ( nil != [scrollViewContentOffset objectForKey:@"y"] ) ? [[scrollViewContentOffset objectForKey:@"y"] floatValue] : 0.f; - [[(TiUIScrollView *)proxy.view scrollView] pop_removeAnimationForKey:@"BasicAnimationScrollViewContentOffset"]; + [[(id)proxy.view scrollView] pop_removeAnimationForKey:@"BasicAnimationScrollViewContentOffset"]; POPBasicAnimation *animScrollViewContentOffset = [POPBasicAnimation animationWithPropertyNamed:kPOPScrollViewContentOffset]; animScrollViewContentOffset.toValue = [NSValue valueWithCGPoint:CGPointMake(x, y)]; animScrollViewContentOffset.completionBlock = ^(POPAnimation *anim, BOOL completed) { @@ -887,7 +893,7 @@ -(void)basicAnimationWithProxy:(TiViewProxy *)proxy andProperties:(NSDictionary }; BASIC_POP_ATTR( animScrollViewContentOffset ); - [[(TiUIScrollView *)proxy.view scrollView] pop_addAnimation:animScrollViewContentOffset forKey:@"BasicAnimationScrollViewContentOffset"]; + [[(id)proxy.view scrollView] pop_addAnimation:animScrollViewContentOffset forKey:@"BasicAnimationScrollViewContentOffset"]; } @@ -1131,11 +1137,13 @@ -(void)springAnimationWithProxy:(TiViewProxy *)proxy andProperties:(NSDictionary } - if ( [proxy.view isKindOfClass:[TiUILabel class]] && nil != color ) { + Class TiUILabelClass = NSClassFromString(@"TiUILabel"); + + if ( [proxy.view isKindOfClass:TiUILabelClass] && nil != color ) { setAnimationMask(springMask, TIPOPCOLOR); - [[(TiUILabel *)proxy.view label] pop_removeAnimationForKey:@"SpringAnimationLabelTextColor"]; + [[(id)proxy.view valueForKey:@"label"] pop_removeAnimationForKey:@"SpringAnimationLabelTextColor"]; POPSpringAnimation *animColor = [POPSpringAnimation animationWithPropertyNamed:kPOPLabelTextColor]; animColor.toValue = color.color; @@ -1148,7 +1156,7 @@ -(void)springAnimationWithProxy:(TiViewProxy *)proxy andProperties:(NSDictionary }; SPRING_POP_ATTR( animColor ); - [[(TiUILabel *)proxy.view label] pop_addAnimation:animColor forKey:@"SpringAnimationLabelTextColor"]; + [[(id)proxy.view valueForKey:@"label"] pop_addAnimation:animColor forKey:@"SpringAnimationLabelTextColor"]; } @@ -1783,8 +1791,10 @@ -(void)springAnimationWithProxy:(TiViewProxy *)proxy andProperties:(NSDictionary } } + + Class TiUIScrollViewClass = NSClassFromString(@"TiUIScrollView"); - if ( [proxy.view isKindOfClass:[TiUIScrollView class]] ) { + if ( [proxy.view isKindOfClass:TiUIScrollViewClass] ) { if ( nil != [properties objectForKey:@"scrollViewContentOffset"] ) { @@ -1798,7 +1808,7 @@ -(void)springAnimationWithProxy:(TiViewProxy *)proxy andProperties:(NSDictionary float y = ( nil != [scrollViewContentOffset objectForKey:@"y"] ) ? [[scrollViewContentOffset objectForKey:@"y"] floatValue] : 0.f; - [[(TiUIScrollView *)proxy.view scrollView] pop_removeAnimationForKey:@"SpringAnimationScrollViewContentOffset"]; + [[(id)proxy.view scrollView] pop_removeAnimationForKey:@"SpringAnimationScrollViewContentOffset"]; POPSpringAnimation *animScrollViewContentOffset = [POPSpringAnimation animationWithPropertyNamed:kPOPScrollViewContentOffset]; animScrollViewContentOffset.toValue = [NSValue valueWithCGPoint:CGPointMake(x, y)]; @@ -1810,7 +1820,7 @@ -(void)springAnimationWithProxy:(TiViewProxy *)proxy andProperties:(NSDictionary }; SPRING_POP_ATTR( animScrollViewContentOffset ); - [[(TiUIScrollView *)proxy.view scrollView] pop_addAnimation:animScrollViewContentOffset forKey:@"SpringAnimationScrollViewContentOffset"]; + [[(id)proxy.view scrollView] pop_addAnimation:animScrollViewContentOffset forKey:@"SpringAnimationScrollViewContentOffset"]; } @@ -2608,13 +2618,16 @@ -(void)clearAllAnimations:(TiViewProxy *)proxy { [proxy.view.layer pop_removeAllAnimations]; [proxy.view.shadowLayer pop_removeAllAnimations]; - if ( [proxy.view isKindOfClass:[TiUILabel class]] ) { + Class TiUILabelClass = NSClassFromString(@"TiUILabel"); + Class TiUIScrollViewClass = NSClassFromString(@"TiUIScrollView"); + + if ( [proxy.view isKindOfClass:TiUILabelClass] ) { - [[(TiUILabel *)proxy.view label] pop_removeAllAnimations]; + [[(id)proxy.view valueForKey:@"label"] pop_removeAllAnimations]; - } else if ( [proxy.view isKindOfClass:[TiUIScrollView class]] ) { + } else if ( [proxy.view isKindOfClass:TiUIScrollViewClass] ) { - [[(TiUIScrollView *)proxy.view scrollView] pop_removeAllAnimations]; + [[(id)proxy.view scrollView] pop_removeAllAnimations]; } diff --git a/iphone/Classes/GuyMcdoooooTipopModule.h b/iphone/Classes/GuyMcdoooooTipopModule.h index 8e81d68..bf07da4 100644 --- a/iphone/Classes/GuyMcdoooooTipopModule.h +++ b/iphone/Classes/GuyMcdoooooTipopModule.h @@ -5,7 +5,7 @@ * Copyright (c) 2014 Do Lin. All rights reserved. */ -#import "TiModule.h" +#import #import "FBPOPAnimator.h" @interface GuyMcdoooooTipopModule : TiModule { diff --git a/iphone/Classes/GuyMcdoooooTipopModule.m b/iphone/Classes/GuyMcdoooooTipopModule.m index 3f2e229..b5a402f 100644 --- a/iphone/Classes/GuyMcdoooooTipopModule.m +++ b/iphone/Classes/GuyMcdoooooTipopModule.m @@ -6,9 +6,7 @@ */ #import "GuyMcdoooooTipopModule.h" -#import "TiBase.h" -#import "TiHost.h" -#import "TiUtils.h" +#import @implementation GuyMcdoooooTipopModule diff --git a/iphone/Classes/GuyMcdoooooTipopModuleAssets.m b/iphone/Classes/GuyMcdoooooTipopModuleAssets.m index ba99cc5..846cdda 100644 --- a/iphone/Classes/GuyMcdoooooTipopModuleAssets.m +++ b/iphone/Classes/GuyMcdoooooTipopModuleAssets.m @@ -7,20 +7,18 @@ @implementation GuyMcdoooooTipopModuleAssets -- (NSData*) moduleAsset +- (NSData *)moduleAsset { - //##TI_AUTOGEN_BEGIN asset - //Compiler generates code for asset here - return nil; // DEFAULT BEHAVIOR - //##TI_AUTOGEN_END asset + + + return nil; } -- (NSData*) resolveModuleAsset:(NSString*)path +- (NSData *)resolveModuleAsset:(NSString *)path { - //##TI_AUTOGEN_BEGIN resolve_asset - //Compiler generates code for asset resolution here - return nil; // DEFAULT BEHAVIOR - //##TI_AUTOGEN_END resolve_asset + + + return nil; } @end diff --git a/iphone/README b/iphone/README deleted file mode 100644 index 0888ba4..0000000 --- a/iphone/README +++ /dev/null @@ -1,111 +0,0 @@ -# Titanium Facebook-POP Module - -Tipop is a titanium client for [facebook pop](https://github.com/facebook/pop), the rock star animation engine written for iOS / OS X. pop supports both static and dynamic animations, which makes the UI interactions more realistic. - -In addition to the linear and basic ease-in-out functions, tipop adds another 24 easing function supports like quad, cubic or expo. The API is similar to the one that Ti.UI.Animation has, which we Ti-Devs must be familiar with. - -***Built with 3.5.1.GA, ready for 64-bit.*** - - -## Installation - -Git-cloning the repository, unzip the `guy.mcdooooo.tipop-iphone-1.0.4.zip` package and put the `modules/iphone/guy.mcdooooo.tipop` into the `modules/iphone` folder of your project. - - -## Usage - -###1. Accessing Tipop - -To access this module from JavaScript, you would do the following: - -```javascript -var POP = require("guy.mcdooooo.tipop"); -``` - -The POP variable is a reference to the Module object. - -###2. Function list - -| | Basic Animation | Spring Animation | Decay Animation | -|:-----------:|:------------------------------:|:------------------:|:-----------------:| -|**Properties**|POP.***basic***( myView, `{`|POP.***spring***( myView, `{`|POP.***decay***( myView,` {`| -|left|left: 140,
left: '65%',|left: 140,
left: '65%',|left: -20,
// velocity| -|top|top: -50,
top: '15%',|top: -50,
top: '15%',|top: 90,
// velocity| -|width|width: 100,
width: '30%',|width: 100,
width: '30%',|width: -40,
// velocity| -|height|height: 42,
height: '26%',|height: 42,
height: '26%',|height: 25,
// velocity| -|opacity|opacity: 0.7,|opacity: 0.7,|opacity: -1.8,
// velocity| -|zIndex|zIndex: 20,|zIndex: 20,|\\| -|color
*Ti.UI.Label*|color: '#FFD3E0',|color: '#FFD3E0',
|\\| -|backgroundColor|backgroundColor: '#FFD3E0',
|backgroundColor: '#FFD3E0',|\\| -|tintColor|tintColor: '#55EFCB',
|tintColor: '#55EFCB',|\\| -|borderRadius|borderRadius: 75,
|borderRadius: 75,|borderRadius: -68,
// velocity| -|borderWidth|borderWidth: 15,
|borderWidth: 15,|borderWidth: -22,
// velocity| -|borderColor|borderColor: '#FFD3E0',
|borderColor: '#FFD3E0',|\\| -|shadowColor|shadowColor: '#CCCCCC',
|shadowColor: '#CCCCCC',|\\| -|shadowOpacity|shadowOpacity: 0.4,|shadowOpacity: 0.4,|shadowOpacity: -0.8,
// velocity| -|rotate|rotate: {|rotate: {|rotate: {| -|rotate.x|x:80,
// angle|x:80,
// angle|x:-190,
// angle, yet velocity| -|rotate.y|y:-35,
// angle|y:-35,
// angle|y:120,
// angle, yet velocity| -|rotate.z|z:20,
// angle|z:20,
// angle|z:-40,
// angle, yet velocity| -||}|}|}| -|scale|scale: {|scale: {|scale: {| -|scale.x|x:2.5,|x:2.5,|x:-10,
// velocity| -|scale.y|y:-3.5,|y:-3.5,|y:1.2,
// velocity| -||}|}|}| -|translate|translate: {|translate: {|translate: {| -|translate.x|x:30,|x:30,|x:-10,
// velocity| -|translate.y|y:-10,|y:-10,|y:200,
// velocity| -|translate.z|z:75,|z:75,|z:-120,
// velocity| -||}|}|}| -|subTranslate|subTranslate: {|subTranslate: {|subTranslate: {| -|subTranslate.x|x:80,|x:80,|x:-50,
// velocity| -|subTranslate.y|y:-15,|y:-15,|y:10,
// velocity| -||}|}|}| -|scrollViewContentOffset
Ti.UI.ScrollView|scrollViewContentOffset: {|scrollViewContentOffset: {|scrollViewContentOffset: {| -|scrollViewContentOffset.x|x:72,|x:72,|x:-155,
// velocity| -|scrollViewContentOffset.y|y:-500,|y:-500,|y:188,
// velocity| -||}|}|}| -|**CAShapeLayer Animations:** ( the layer should be the first sublayer of proxy.view.layer )|||| -|***strokeStart***|strokeStart:0.5,|strokeStart:0.5,|strokeStart:-2.0,
// velocity| -|***strokeEnd***|strokeEnd:1.0,|strokeEnd:1.0,|strokeEnd:2.0,
// velocity| -|***lineWidth***|lineWidth:5.0,|lineWidth:5.0,|lineWidth:-8.0,
// velocity| -|***strokeColor***|strokeColor:'#5A5A5A',|strokeColor:'#5A5A5A',|\\| -|***fillColor***|fillColor:'blue',|fillColor:'blue',|\\| -|===| -|**Options**| -|duration|duration: 1030,|\\|\\| -|easing|easing: 'default',
easing: 'linear',

easing: 'easeIn',
easing: 'easeOut',
easing: 'easeInOut',

easing: 'easeInSine',
easing: 'easeOutSine',
easing: 'easeInOutSine',

easing: 'easeInQuad',
easing: 'easeOutQuad',
easing: 'easeInOutQuad',

easing: 'easeInCubic',
easing: 'easeOutCubic',
easing: 'easeInOutCubic',

easing: 'easeInQuart',
easing: 'easeOutQuart',
easing: 'easeInOutQuart',

easing: 'easeInQuint',
easing: 'easeOutQuint',
easing: 'easeInOutQuint',

easing: 'easeInExpo',
easing: 'easeOutExpo',
easing: 'easeInOutExpo',

easing: 'easeInCirc',
easing: 'easeOutCirc',
easing: 'easeInOutCirc',

easing: 'easeInBack',
easing: 'easeOutBack',
easing: 'easeInOutBack',
|\\|\\| -|springBounciness
value between 0-20 default at 4|\\|springBounciness: 14,|\\| -|springSpeed
value between 0-20 default at 4|\\|springSpeed: 3,|\\| -|tension|\\|tension: 10,|\\| -|friction|\\|friction: 4,|\\| -|mass|\\|mass: 20,|\\| -|deceleration
range of 0 to 1|\\|\\|deceleration: 0.882,| -|delay|delay: 900,|delay: 900,|delay: 900,| -|repeatCount|repeatCount: 3,|repeatCount: 3,|repeatCount: 3,| -|addictive|addictive: true,
// or false|addictive: true,
// or false|addictive: true,
// or false| -|repeatForever|repeatForever: true,
// or false|repeatForever: true,
// or false|repeatForever: true,
// or false| -|autoreverse|autoreverse: true,
// or false|autoreverse: true,
// or false|autoreverse: true,
// or false| -|===| -|**Callback**|**}, function() {**|**}, function() {**|**}, function() {**| -||**...**|**...**|**...**| -||`});`|`});`|`});`| - -Besides, you could use `POP.clear(myView)` to remove all the pop animations attached to `myView`, and it could be chained with basic, spring or decay methods. - -```javascript -POP -.clear(myView) -.spring(myView, { - ... -}); -``` - - -## Author - -- [@McDo](https://github.com/McDo) - -- email: [mcdooooo@gmail.com](mailTo:mcdooooo@gmail.com) - -- twitter: [do109](https://twitter.com/do109) diff --git a/iphone/build.py b/iphone/build.py deleted file mode 100755 index 96d0c83..0000000 --- a/iphone/build.py +++ /dev/null @@ -1,274 +0,0 @@ -#!/usr/bin/env python -# -# Appcelerator Titanium Module Packager -# -# -import os, subprocess, sys, glob, string -import zipfile -from datetime import date - -cwd = os.path.abspath(os.path.dirname(sys._getframe(0).f_code.co_filename)) -os.chdir(cwd) -required_module_keys = ['architectures', 'name','version','moduleid','description','copyright','license','copyright','platform','minsdk'] -module_defaults = { - 'description':'My module', - 'author': 'Your Name', - 'license' : 'Specify your license', - 'copyright' : 'Copyright (c) %s by Your Company' % str(date.today().year), -} -module_license_default = "TODO: place your license here and we'll include it in the module distribution" - -def find_sdk(config): - sdk = config['TITANIUM_SDK'] - return os.path.expandvars(os.path.expanduser(sdk)) - -def replace_vars(config,token): - idx = token.find('$(') - while idx != -1: - idx2 = token.find(')',idx+2) - if idx2 == -1: break - key = token[idx+2:idx2] - if not config.has_key(key): break - token = token.replace('$(%s)' % key, config[key]) - idx = token.find('$(') - return token - - -def read_ti_xcconfig(): - contents = open(os.path.join(cwd,'titanium.xcconfig')).read() - config = {} - for line in contents.splitlines(False): - line = line.strip() - if line[0:2]=='//': continue - idx = line.find('=') - if idx > 0: - key = line[0:idx].strip() - value = line[idx+1:].strip() - config[key] = replace_vars(config,value) - return config - -def generate_doc(config): - docdir = os.path.join(cwd,'documentation') - if not os.path.exists(docdir): - docdir = os.path.join(cwd,'..','documentation') - if not os.path.exists(docdir): - print "Couldn't find documentation file at: %s" % docdir - return None - - try: - import markdown2 as markdown - except ImportError: - import markdown - documentation = [] - for file in os.listdir(docdir): - if file in ignoreFiles or os.path.isdir(os.path.join(docdir, file)): - continue - md = open(os.path.join(docdir,file)).read() - html = markdown.markdown(md) - documentation.append({file:html}); - return documentation - -def compile_js(manifest,config): - js_file = os.path.join(cwd,'assets','guy.mcdooooo.tipop.js') - if not os.path.exists(js_file): - js_file = os.path.join(cwd,'..','assets','guy.mcdooooo.tipop.js') - if not os.path.exists(js_file): return - - from compiler import Compiler - try: - import json - except: - import simplejson as json - - compiler = Compiler(cwd, manifest['moduleid'], manifest['name'], 'commonjs') - root_asset, module_assets = compiler.compile_module() - - root_asset_content = """ -%s - - return filterDataInRange([NSData dataWithBytesNoCopy:data length:sizeof(data) freeWhenDone:NO], ranges[0]); -""" % root_asset - - module_asset_content = """ -%s - - NSNumber *index = [map objectForKey:path]; - if (index == nil) { - return nil; - } - return filterDataInRange([NSData dataWithBytesNoCopy:data length:sizeof(data) freeWhenDone:NO], ranges[index.integerValue]); -""" % module_assets - - from tools import splice_code - - assets_router = os.path.join(cwd,'Classes','GuyMcdoooooTipopModuleAssets.m') - splice_code(assets_router, 'asset', root_asset_content) - splice_code(assets_router, 'resolve_asset', module_asset_content) - - # Generate the exports after crawling all of the available JS source - exports = open('metadata.json','w') - json.dump({'exports':compiler.exports }, exports) - exports.close() - -def die(msg): - print msg - sys.exit(1) - -def warn(msg): - print "[WARN] %s" % msg - -def error(msg): - print "[ERROR] %s" % msg - -def validate_license(): - license_file = os.path.join(cwd,'LICENSE') - if not os.path.exists(license_file): - license_file = os.path.join(cwd,'..','LICENSE') - if os.path.exists(license_file): - c = open(license_file).read() - if c.find(module_license_default)!=-1: - warn('please update the LICENSE file with your license text before distributing') - -def validate_manifest(): - path = os.path.join(cwd,'manifest') - f = open(path) - if not os.path.exists(path): die("missing %s" % path) - manifest = {} - for line in f.readlines(): - line = line.strip() - if line[0:1]=='#': continue - if line.find(':') < 0: continue - key,value = line.split(':') - manifest[key.strip()]=value.strip() - for key in required_module_keys: - if not manifest.has_key(key): die("missing required manifest key '%s'" % key) - if manifest[key].strip() == '': die("manifest key '%s' missing required value" % key) - if module_defaults.has_key(key): - defvalue = module_defaults[key] - curvalue = manifest[key] - if curvalue==defvalue: warn("please update the manifest key: '%s' to a non-default value" % key) - return manifest,path - -ignoreFiles = ['.DS_Store','.gitignore','libTitanium.a','titanium.jar','README'] -ignoreDirs = ['.DS_Store','.svn','.git','CVSROOT'] - -def zip_dir(zf,dir,basepath,ignore=[],includeJSFiles=False): - for root, dirs, files in os.walk(dir): - for name in ignoreDirs: - if name in dirs: - dirs.remove(name) # don't visit ignored directories - for file in files: - if file in ignoreFiles: continue - e = os.path.splitext(file) - if len(e) == 2 and e[1] == '.pyc': continue - if not includeJSFiles and len(e) == 2 and e[1] == '.js': continue - from_ = os.path.join(root, file) - to_ = from_.replace(dir, basepath, 1) - zf.write(from_, to_) - -def glob_libfiles(): - files = [] - for libfile in glob.glob('build/**/*.a'): - if libfile.find('Release-')!=-1: - files.append(libfile) - return files - -def build_module(manifest,config): - from tools import ensure_dev_path - ensure_dev_path() - - rc = os.system("xcodebuild -sdk iphoneos -configuration Release") - if rc != 0: - die("xcodebuild failed") - rc = os.system("xcodebuild -sdk iphonesimulator -configuration Release") - if rc != 0: - die("xcodebuild failed") - # build the merged library using lipo - moduleid = manifest['moduleid'] - libpaths = '' - for libfile in glob_libfiles(): - libpaths+='%s ' % libfile - - os.system("lipo %s -create -output build/lib%s.a" %(libpaths,moduleid)) - -def verify_build_arch(manifest, config): - binaryname = 'lib%s.a' % manifest['moduleid'] - binarypath = os.path.join('build', binaryname) - manifestarch = set(manifest['architectures'].split(' ')) - - output = subprocess.check_output('xcrun lipo -info %s' % binarypath, shell=True) - - builtarch = set(output.split(':')[-1].strip().split(' ')) - - print 'Check build architectures\n' - - if ('arm64' not in builtarch): - warn('built module is missing 64-bit support.') - - if (manifestarch != builtarch): - warn('architectures in manifest: %s' % ', '.join(manifestarch)) - warn('compiled binary architectures: %s' % ', '.join(builtarch)) - - print '\nMODULE BUILD FAILED' - error('there is discrepancy between the architectures specified in module manifest and compiled binary.') - error('Please update manifest to match module binary architectures.') - die('') - -def package_module(manifest,mf,config): - name = manifest['name'].lower() - moduleid = manifest['moduleid'].lower() - version = manifest['version'] - modulezip = '%s-iphone-%s.zip' % (moduleid,version) - if os.path.exists(modulezip): os.remove(modulezip) - zf = zipfile.ZipFile(modulezip, 'w', zipfile.ZIP_DEFLATED) - modulepath = 'modules/iphone/%s/%s' % (moduleid,version) - zf.write(mf,'%s/manifest' % modulepath) - libname = 'lib%s.a' % moduleid - zf.write('build/%s' % libname, '%s/%s' % (modulepath,libname)) - docs = generate_doc(config) - if docs!=None: - for doc in docs: - for file, html in doc.iteritems(): - filename = string.replace(file,'.md','.html') - zf.writestr('%s/documentation/%s'%(modulepath,filename),html) - - p = os.path.join(cwd, 'assets') - if not os.path.exists(p): - p = os.path.join(cwd, '..', 'assets') - if os.path.exists(p): - zip_dir(zf,p,'%s/%s' % (modulepath,'assets'),['README']) - - for dn in ('example','platform'): - p = os.path.join(cwd, dn) - if not os.path.exists(p): - p = os.path.join(cwd, '..', dn) - if os.path.exists(p): - zip_dir(zf,p,'%s/%s' % (modulepath,dn),['README'],True) - - license_file = os.path.join(cwd,'LICENSE') - if not os.path.exists(license_file): - license_file = os.path.join(cwd,'..','LICENSE') - if os.path.exists(license_file): - zf.write(license_file,'%s/LICENSE' % modulepath) - - zf.write('module.xcconfig','%s/module.xcconfig' % modulepath) - exports_file = 'metadata.json' - if os.path.exists(exports_file): - zf.write(exports_file, '%s/%s' % (modulepath, exports_file)) - zf.close() - - -if __name__ == '__main__': - manifest,mf = validate_manifest() - validate_license() - config = read_ti_xcconfig() - - sdk = find_sdk(config) - sys.path.insert(0,os.path.join(sdk,'iphone')) - sys.path.append(os.path.join(sdk, "common")) - - compile_js(manifest,config) - build_module(manifest,config) - verify_build_arch(manifest, config) - package_module(manifest,mf,config) - sys.exit(0) diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers new file mode 120000 index 0000000..a177d2a --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers @@ -0,0 +1 @@ +Versions/Current/Headers \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Modules b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Modules new file mode 120000 index 0000000..5736f31 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Modules @@ -0,0 +1 @@ +Versions/Current/Modules \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Resources b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Resources new file mode 120000 index 0000000..953ee36 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Resources @@ -0,0 +1 @@ +Versions/Current/Resources \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/TitaniumKit b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/TitaniumKit new file mode 120000 index 0000000..29ccf24 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/TitaniumKit @@ -0,0 +1 @@ +Versions/Current/TitaniumKit \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APIModule.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APIModule.h new file mode 100644 index 0000000..e5851c3 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APIModule.h @@ -0,0 +1,85 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-Present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +@import JavaScriptCore; +#import "ObjcModule.h" + +@protocol APIExports + +/** + Logs a new debug message to the console. + + @param args The message to log. + */ +- (void)debug:(id)args; + +/** + Logs a new info message to the console. + + @param args The message to log. + */ +- (void)info:(id)args; + +/** + Logs a new warn message to the console. + + @param args The message to log. + */ +- (void)warn:(id)args; + +/** + Logs a new error message to the console. + + @param args The message to log. + */ +- (void)error:(id)args; + +/** + Logs a new trace message to the console. + + @param args The message to log. + */ +- (void)trace:(id)args; + +/** + Logs the current timestamp to the console. + + @param args An optional argument containing a dictionary that represents + the error message linked to this timestamp. + */ +- (void)timestamp:(id)args; + +/** + Logs a notice to the console. Identical to `info:`. + + @param args The message to log. + */ +- (void)notice:(id)args; + +/** + Logs a critical message to the console. + + @param args The message to log. Identical to `error:`. + */ +- (void)critical:(id)args; + +JSExportAs(log, + -(void)log + : (id)level withMessage + : (id)args); +- (void)reportUnhandledException:(NSArray *)args; + +@end + +@interface APIModule : ObjcModule +/** + Logs a new message with a given severity. Used internally by TiConsole. + + @param args An array of messages. + @param severity The severity of the log messages. +*/ +- (void)logMessage:(id)args severity:(NSString *)severity; // Used by TiConsole +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSAnalytics.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSAnalytics.h new file mode 100644 index 0000000..ac52557 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSAnalytics.h @@ -0,0 +1,317 @@ +/** + * APS Analytics + * Copyright (c) 2019 by Axway, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +@import Foundation; +@import CoreLocation; + +/** Constant indicating development deployment */ +extern NSString *_Nonnull const APSDeployTypeDevelopment; + +/** Constant indicating production deployment */ +extern NSString *_Nonnull const APSDeployTypeProduction; + +/** + * The APSAnalytics class configures the application to use the APS analytic services + * to send analytic data that can be viewed on the Appcelerator Dashboard. + * + * For information on getting started with Appcelerator Platform Services, + * see [Appcelerator Platform Services for iOS](http://bit.ly/1kqteQS). + */ +@interface APSAnalytics : NSObject + +/** + * Determine if EOL has passed. (March 1st 2022 GMT-8) + */ ++ (BOOL)IS_EOL; + +/** + * Return the singleton instance to the real-time analytics service. + */ ++ (instancetype _Nonnull)sharedInstance; + +/** + * Retrieves the current session identifier. + * + * @return {NSString*} session identifier. + */ +- (NSString *_Nullable)getCurrentSessionId; + +/** + * Retrieves the last event sent. + * + * @return {NSDictionary *} the last event stored, otherwise null if none have been stored. + */ +- (NSDictionary *_Nullable)getLastEvent; + +/** + * Retrieves the derived machine identifier. + * + * @return {NSString *} machine identifier. + */ +- (NSString *_Nonnull)getMachineId; + +/** + * Obtains machine identifier. + */ +- (void)setMachineId; + +/** + * Checks whether the user has opted out from sending analytics data. + * + * @return {BOOL} with the decision + */ +- (BOOL)isOptedOut; + +/** + * Writes the optedOut property in the SharedPreferences instance. + * + * @param {BOOL} value with the decision to opt out. + */ +- (void)setOptedOut:(BOOL)optedOut; + +/** + * Obtains number of events that will be cached. + * + * @return {NSInteger} number of events to cache + */ +- (NSInteger)getCacheSize; + +/** + * Writes the cache size property in the SharedPreferences instance. + * + * @param {NSInteger} number of events to cache + */ +- (void)setCacheSize:(NSInteger)cacheSize; + +/** + * Sends an application enroll event to indicate first launch. + * + * @deprecated use sendAppInstallEvent() instead. + */ +- (void)sendAppEnrollEvent; + +/** + * Sends an application enroll event to indicate first launch. + * + * If this is called multiple times, all executions after the first will + * be ignored and do nothing. + */ +- (void)sendAppInstallEvent; + +/** + * Sends an application foreground event to indicate a new session. + * + * This will usually start a new session, unless one of two conditions: + * + * 1. This is the first foreground sent after an enroll has been sent. + * 2. The last time a background was sent was within the session timeout. + * + * In both of these cases, the same session identifier will be kept. + */ +- (void)sendSessionStartEvent; + +/** + * Sends an application background event to indicate an ended session. + */ +- (void)sendSessionEndEvent; + +/** + * Sends an application navigation event which describes moving between views. + * + * @param fromView the name of the view the user navigated from. + * @param toView the name of the view the user navigated to. + * @param data arbitrary data to be sent alongside the nav event. + */ +- (void)sendAppNavEvent:(NSString *_Nonnull)fromView + toView:(NSString *_Nonnull)toView + event:(NSString *_Nullable)event + data:(NSDictionary *_Nullable)data; + +- (void)sendAppNavEventFromView:(NSString *_Nonnull)fromView + toView:(NSString *_Nonnull)toView + withName:(NSString *_Nullable)event + payload:(NSDictionary *_Nullable)data; + +/** + * Sends an application feature event to allow sending custom data. + * + * @deprecated use sendCustomEvent(String, JSONObject) instead. + */ +- (void)sendAppFeatureEvent:(NSString *_Nonnull)event + payload:(NSDictionary *_Nullable)data; + +/** + * Sends an application feature event to allow sending custom data. + * + * @param name the name of the event being sent. + * @param data the data to send alongside the event. + */ +- (void)sendCustomEvent:(NSString *_Nonnull)name + data:(NSDictionary *_Nullable)data; + +/** + * Sends an event payload. + * + * @param payload the event payload to send. + */ +- (void)sendPayload:(NSDictionary *_Nullable)payload; + +/** + * Sends a crash report as a custom event. + * + * @deprecated use sendCrashReport(JSONObject) instead. + */ +- (void)sendAppCrashEvent:(NSDictionary *_Nonnull)data; + +/** + * Sends a crash report as a custom event. + * + * @param crash the crash data to be included with the payload. + */ +- (void)sendCrashReport:(NSDictionary *_Nonnull)crash; + +/** + * Flush event queue. + */ +- (void)flush; + +/** + * Set sdk version to send in analytics. + * + * @param version sdk version + * + * @deprecated use setSdkVersion() instead. + */ +- (void)setSDKVersion:(NSString *_Nullable)version; + +/** + * @deprecated NOT USED, only defined for backwards compatibility. + */ +- (void)setBuildType:(NSString *_Nullable)type; + +/** + * Enables Analytics with a given app-key and deploy-type. + * @param appKey The APSAnalytics app-key. + * @param deployTime The deploy-type of the application. + */ +- (void)enableWithAppKey:(NSString *_Nonnull)appKey andDeployType:(NSString *_Nonnull)deployType; + +/** + * Get analytics endpoint url + */ +- (NSString *_Nullable)getAnalyticsUrl; + +/** + * Get device architecture + */ +- (NSString *_Nonnull)getArchitecture; + +/** + * Get application id + */ +- (NSString *_Nonnull)getAppId; + +/** + * Get application name + */ +- (NSString *_Nonnull)getAppName; + +/** + * Get application version + */ +- (NSString *_Nonnull)getAppVersion; + +/** + * Get application deployment type (production, development) + */ +- (NSString *_Nonnull)getDeployType; + +/** + * Get analytics flush interval + */ +- (NSInteger)getFlushInterval; + +/** + * Get analytics flush requeue interval + */ +- (NSInteger)getFlushRequeue; + +/** + * Get device model + */ +- (NSString *_Nonnull)getModel; + +/** + * Get network type + */ +- (NSString *_Nullable)getNetworkType; + +/** + * Get OS type (32bit, 64bit) + */ +- (NSString *_Nonnull)getOsType; + +/** + * Get OS version + */ +- (NSString *_Nonnull)getOsVersion; + +/** + * Get current platform + */ +- (NSString *_Nonnull)getPlatform; + +/** + * Get device processor count + */ +- (NSInteger)getProcessorCount; + +/** + * Get SDK version + */ +- (NSString *_Nullable)getSdkVersion; + +/** + * Set analytics endpoint url + */ +- (void)setAnalyticsUrl:(NSString *_Nonnull)url; + +/** + * Set application id + */ +- (void)setAppId:(NSString *_Nonnull)appId; + +/** + * Set application name + */ +- (void)setAppName:(NSString *_Nonnull)appName; + +/** + * Set application version + */ +- (void)setAppVersion:(NSString *_Nonnull)appVersion; + +/** + * Set application deployment type + */ +- (void)setDeployType:(NSString *_Nonnull)deployType; + +/** + * Set SDK version + */ +- (void)setSdkVersion:(NSString *_Nonnull)sdkVersion; + +/** + * Set analytics flush interval + */ +- (void)setFlushInterval:(NSInteger)timeout; + +/** + * Set analytics flush requeue interval + */ +- (void)setFlushRequeue:(NSInteger)timeout; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPClient.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPClient.h new file mode 100644 index 0000000..2589a91 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPClient.h @@ -0,0 +1,24 @@ +/** + * Appcelerator APSHTTPClient Library + * Copyright (c) 2014 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#ifndef DebugLog +#if defined(DEBUG) || defined(DEVELOPER) +#define DebugLog(...) \ + { \ + NSLog(__VA_ARGS__); \ + } +#else +#define DebugLog(...) \ + { \ + } +#endif +#endif + +#import "APSHTTPHelper.h" +#import "APSHTTPPostForm.h" +#import "APSHTTPRequest.h" +#import "APSHTTPResponse.h" diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPHelper.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPHelper.h new file mode 100644 index 0000000..3d27e6b --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPHelper.h @@ -0,0 +1,21 @@ +/** + * Appcelerator APSHTTPClient Library + * Copyright (c) 2014 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +@interface APSHTTPHelper : NSObject + ++ (NSString *)base64encode:(NSData *)plainText; ++ (int)caselessCompareFirstString:(const char *)firstString secondString:(const char *)secondString size:(int)size; ++ (BOOL)extractEncodingFromData:(NSData *)inputData result:(NSStringEncoding *)result; ++ (NSString *)contentTypeForImageData:(NSData *)data; ++ (NSString *)fileMIMEType:(NSString *)file; ++ (NSString *)encodeURL:(NSString *)string; ++ (void)parseMimeType:(NSString **)mimeType andResponseEncoding:(NSStringEncoding *)stringEncoding fromContentType:(NSString *)contentType; ++ (NSStringEncoding)parseStringEncodingFromHeaders:(NSDictionary *)headers; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPPostForm.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPPostForm.h new file mode 100644 index 0000000..a8b1e84 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPPostForm.h @@ -0,0 +1,35 @@ +/** + * Appcelerator APSHTTPClient Library + * Copyright (c) 2014 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +@interface APSHTTPPostForm : NSObject + +@property (nonatomic, readonly) NSData *requestData; +@property (nonatomic, readonly) NSDictionary *requestHeaders; +@property (nonatomic, readonly) NSString *contentType; + +- (void)setJSONData:(id)json; +- (void)setStringData:(NSString *)str; +- (void)appendData:(NSData *)data withContentType:(NSString *)contentType; + +- (void)addDictionay:(NSDictionary *)dict; +- (void)addFormKey:(NSString *)key andValue:(NSString *)value; + +- (void)addFormFile:(NSString *)path; +- (void)addFormFile:(NSString *)path fieldName:(NSString *)name; +- (void)addFormFile:(NSString *)path fieldName:(NSString *)name contentType:(NSString *)contentType; + +- (void)addFormData:(NSData *)data; +- (void)addFormData:(NSData *)data fileName:(NSString *)fileName; +- (void)addFormData:(NSData *)data fileName:(NSString *)fileName fieldName:(NSString *)fieldName; +- (void)addFormData:(NSData *)data fileName:(NSString *)fileName fieldName:(NSString *)fieldName contentType:(NSString *)contentType; + +- (void)addHeaderKey:(NSString *)key andHeaderValue:(NSString *)value; +- (void)destroyTemporaryData; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPRequest.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPRequest.h new file mode 100644 index 0000000..2e26352 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPRequest.h @@ -0,0 +1,85 @@ +/** + * Appcelerator APSHTTPClient Library + * Copyright (c) 2014-2015 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +typedef NS_ENUM(NSInteger, APSRequestError) { + APSRequestErrorCancel = 0, + APSRequestErrorConnectionDelegateFailed = -1 +}; + +@class APSHTTPResponse; +@class APSHTTPRequest; +@class APSHTTPPostForm; + +@protocol APSConnectionDelegate +@optional +- (BOOL)willHandleChallenge:(NSURLAuthenticationChallenge *)challenge forSession:(NSURLSession *)session; +@end + +@protocol APSHTTPRequestDelegate +@optional +- (void)request:(APSHTTPRequest *)request onLoad:(APSHTTPResponse *)response; +- (void)request:(APSHTTPRequest *)request onError:(APSHTTPResponse *)response; +- (void)request:(APSHTTPRequest *)request onDataStream:(APSHTTPResponse *)response; +- (void)request:(APSHTTPRequest *)request onSendStream:(APSHTTPResponse *)response; +- (void)request:(APSHTTPRequest *)request onReadyStateChange:(APSHTTPResponse *)response; +- (void)request:(APSHTTPRequest *)request onRedirect:(APSHTTPResponse *)response; + +@end + +@interface APSHTTPRequest : NSObject + +@property (nonatomic, strong, readwrite) NSURL *url; +@property (nonatomic, strong, readwrite) NSString *method; +@property (nonatomic, strong, readwrite) NSString *filePath; +@property (nonatomic, strong, readwrite) NSString *requestUsername; +@property (nonatomic, strong, readwrite) NSString *requestPassword; +@property (nonatomic, strong, readwrite) APSHTTPPostForm *postForm; +@property (nonatomic, strong, readonly) APSHTTPResponse *response; +@property (nonatomic, weak, readwrite) NSObject *delegate; +@property (nonatomic, weak, readwrite) NSObject *connectionDelegate; +@property (nonatomic, assign, readwrite) NSTimeInterval timeout; +@property (nonatomic, assign, readwrite) BOOL sendDefaultCookies; +@property (nonatomic, assign, readwrite) BOOL redirects; +@property (nonatomic, assign, readwrite) BOOL validatesSecureCertificate; +@property (nonatomic, assign, readwrite) BOOL cancelled; +@property (nonatomic, assign, readwrite) NSURLRequestCachePolicy cachePolicy; +@property (nonatomic, assign, readonly, getter=isReady) BOOL ready; +@property (nonatomic, assign, readwrite) BOOL waitsForConnectivity; +@property (nonatomic, assign, readwrite) NSTimeInterval timeoutForResource; +/*! + @discussion Set to YES to block the caller's thread for the duration + of the network call. In this case the queue property is ignored. The + default value is NO. + */ +@property (nonatomic, assign, readwrite) BOOL synchronous; + +/*! + @discussion An optional NSOperationQueue for delegate callbacks. + The default value is nil, which means delegate callbakcs occur on + the caller's thread if the synchronous property is NO. If the + synchronous property is YES then this property is ignored. + */ +@property (nonatomic, strong, readwrite) NSOperationQueue *theQueue; + +/*! + @discussion An optional array of run loop modes for delegate callbacks + on the run loop of the caller's thread. The default is one element + array containing NSDefaultRunLoopMode. This is an advanced property, + and is ignored if synchronous is YES or theQueue is not nil. It is + the caller's responsibility to keep the thread and the run loop alive. + */ +@property (nonatomic, strong, readwrite) NSArray *runModes; + +// Only used in Titanium ImageLoader +@property (nonatomic, strong, readwrite) NSDictionary *userInfo; + +- (void)send; +- (void)abort; +- (void)addRequestHeader:(NSString *)key value:(NSString *)value; +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPResponse.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPResponse.h new file mode 100644 index 0000000..ea75977 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPResponse.h @@ -0,0 +1,45 @@ +/** + * Appcelerator APSHTTPClient Library + * Copyright (c) 2014 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +typedef NS_ENUM(NSInteger, APSHTTPResponseState) { + APSHTTPResponseStateUnsent = 0, + APSHTTPResponseStateOpened = 1, + APSHTTPResponseStateHeaders = 2, + APSHTTPResponseStateLoading = 3, + APSHTTPResponseStateDone = 4 +}; + +@interface APSHTTPResponse : NSObject + +//@property(nonatomic, strong, readonly ) NSURL *url; +@property (nonatomic, strong, readonly) NSDictionary *headers; // used by TiNetworkHTTPClientProxy, ImageLoader +@property (nonatomic, strong, readonly) NSString *connectionType; // used by TiNetworkHTTPClientProxy +//@property(nonatomic, assign, readonly ) NSStringEncoding encoding; + +@property (nonatomic, strong, readonly) NSData *responseData; // used by TiNetworkHTTPClientProxy, ImageLoader +@property (nonatomic, strong, readonly) NSString *responseString; // used by TiNetworkHTTPClientProxy, YahooModule and GeolocationModule +@property (nonatomic, strong, readonly) NSDictionary *responseDictionary; // used by TiNetworkHTTPClientProxy +@property (nonatomic, strong, readonly) NSArray *responseArray; // used by TiNetworkHTTPClientProxy +@property (nonatomic, assign, readonly) BOOL saveToFile; // used by TiNetworkHTTPClientProxy + +@property (nonatomic, assign, readonly) NSInteger status; // should be protocol (used by APSHTTPRequest) +@property (nonatomic, strong, readonly) NSString *location; // should be protocol (used by APSHTTPRequest) +@property (nonatomic, assign, readonly) NSInteger responseLength; // should be protocol (used by APSHTTPRequest) +@property (nonatomic, strong, readwrite) NSError *error; // should be protocol (used by APSHTTPRequest) +@property (nonatomic, strong, readwrite) NSString *filePath; // should be protocol (used by APSHTTPRequest) +@property (nonatomic, assign, readwrite) float downloadProgress; // should be protocol (used by APSHTTPRequest) +@property (nonatomic, assign, readwrite) float uploadProgress; // should be protocol (used by APSHTTPRequest) +@property (nonatomic, assign, readwrite) BOOL connected; // should be protocol (used by APSHTTPRequest) +@property (nonatomic, assign, readwrite) APSHTTPResponseState readyState; // should be protocol (used by APSHTTPRequest) + +- (void)updateRequestParamaters:(NSURLRequest *)request; +- (void)updateResponseParamaters:(NSURLResponse *)response; + +- (void)appendData:(NSData *)data; +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Bridge.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Bridge.h new file mode 100644 index 0000000..f268be3 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Bridge.h @@ -0,0 +1,38 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2018 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "TiProxy.h" + +@class TiHost; + +/** + The default JavaScriptCore <-> Titanium bridge. Inherited by the XHRBridge and the KrollBridge. + It expects the "app.js" to be the entry point of the application. + */ +@interface Bridge : NSObject { + @private + id callback; + NSString *basename; + @protected + NSURL *url; + TiHost *host; +} + +- (id)initWithHost:(TiHost *)host; + +- (void)boot:(id)callback url:(NSURL *)url preload:(NSDictionary *)preload; + +- (void)booted; + +- (void)shutdown:(NSCondition *)condition; + +- (void)gc; + +- (TiHost *)host; + +- (NSString *)basename; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ImageLoader.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ImageLoader.h new file mode 100644 index 0000000..025daa8 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ImageLoader.h @@ -0,0 +1,215 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "APSHTTPClient.h" +#import "TiDimension.h" +#import +#import + +/** + The scaling options passed to the `imageForSize:scalingStyle:` method. + */ +typedef enum { + TiImageScalingDefault, + TiImageScalingThumbnail, + TiImageScalingNonProportional, + TiImageScalingStretch, +} TiImageScalingStyle; + +@class ImageLoaderRequest; + +/** + Protocol for image loader delegate. + */ +@protocol ImageLoaderDelegate +@required + +/** + Tells the delegate that the image load request succeeded. + @param request The load request. + @param image The loaded image. + */ +- (void)imageLoadSuccess:(ImageLoaderRequest *)request image:(UIImage *)image; + +/** + Tells the delegate that the image load request failed. + @param request The load request. + @param error The error. + */ +- (void)imageLoadFailed:(ImageLoaderRequest *)request error:(NSError *)error; + +@optional + +/** + Tells the delegate that the image load request has been cancelled. + @param request The load request. + */ +- (void)imageLoadCancelled:(ImageLoaderRequest *)request; + +@end + +/** + Image loader request class. Handles remote images passed to the TiUIImageView class. + */ +@interface ImageLoaderRequest : NSObject { + @private + APSHTTPRequest *request; + NSObject *delegate; + NSDictionary *userInfo; + NSURL *url; + CGSize imageSize; + BOOL completed; + BOOL cancelled; +} + +/** + The request to use for loading remote images. + @return The request instance. + */ +@property (nonatomic, readwrite, retain) APSHTTPRequest *request; + +/** + Whether or not the request has completed. + @return _YES_ if the request has completed, _NO_ otherwise. + */ +@property (nonatomic, readwrite, assign) BOOL completed; + +/** + Returns loaded image size. + @return The loaded image size. + */ +@property (nonatomic, readwrite, assign) CGSize imageSize; + +/** + Returns the request delegate. + @return The request delegate. + */ +@property (nonatomic, readonly) NSObject *delegate; + +/** + Cancels the request. + */ +- (void)cancel; + +/** + Whether or not the image load request was cancelled. + @return _YES_ if request was cancelled, _NO_ otherwise. + */ +@property (nonatomic, readonly) BOOL cancelled; + +/** + Returns request additional properties. + @return The dictionary of properties. + */ +@property (nonatomic, readonly) NSDictionary *userInfo; + +/** + Returns the request URL. + @return The image URL. + */ +@property (nonatomic, readonly) NSURL *url; + +@end + +/** + The ImageLoader class provides a centralized point for loading images in Titanium. + Using ImageLoader is the preferred way for getting images from remote sources. + + The class is singleton and not supposed to be subclassed. + The instance should not be instantiated directly, but lazily created with . + */ +@interface ImageLoader : NSObject { + @private + NSCache *cache; + NSOperationQueue *queue; + NSMutableArray *timeout; + NSRecursiveLock *lock; +} + +/** + Returns the shared instance of image loader. + @return The shared instance. + */ ++ (ImageLoader *)sharedLoader; + +/** + Tells the loader to load remote image from URL. + @param url The image URL + @return The loaded image. + @see loadImage:delegate:userInfo: +*/ +- (UIImage *)loadRemote:(NSURL *)url; + +/** + Tells the loader to return previously loaded image with URL. + @param url The image URL + @return The loaded image or _nil_ if the image is not available from the cache. + @see loadRemote: + */ +- (UIImage *)loadImmediateImage:(NSURL *)url; + +/** + Tells the loader to return previously loaded image with URL and size. + @param url The image URL + @param imageSize The required image size. + @return The loaded image or _nil_ if the image is not available from the cache. + @see loadRemote: + */ +- (UIImage *)loadImmediateImage:(NSURL *)url withSize:(CGSize)imageSize; + +/** + Tells the loader to return previously loaded stretchable image with URL. + @param url The image URL + @return The loaded image or _nil_ if the image is not available from the cache. + @see loadRemote: + */ +- (UIImage *)loadImmediateStretchableImage:(NSURL *)url; + +/** + Tells the loader to return previously loaded stretchable image with URL and specified cap values. + @param url The image URL + @param left The value to use for the left cap width. Specify 0 if you want the entire image to be horizontally stretchable. + @param top The value to use for the top cap width. Specify 0 if you want the entire image to be vertically stretchable. + @return The loaded image or _nil_ if the image is not available from cache. + @see loadRemote: + */ +- (UIImage *)loadImmediateStretchableImage:(NSURL *)url withLeftCap:(TiDimension)left topCap:(TiDimension)top; + +/** + Returns the full image size. + @param url The image URL + @return The image size. + */ +- (CGSize)fullImageSize:(NSURL *)url; + +/** + Tells the loader to load image from URL with delegate. + @param url The image URL. + @param delegate The loader delegate. + @param userInfo The additional properties to be assigned to the request. + @return The image load request. + @see loadRemote: + */ +- (ImageLoaderRequest *)loadImage:(NSURL *)url + delegate:(NSObject *)delegate + userInfo:(NSDictionary *)userInfo; + +/* + Tells the image loader to suspend its activities. + */ +- (void)suspend; + +/* + Tells the image loader to resume its activities. + */ +- (void)resume; + +/** + Tells the image loader to cancel all activities. + */ +- (void)cancel; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/JSValue+Addons.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/JSValue+Addons.h new file mode 100644 index 0000000..055a604 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/JSValue+Addons.h @@ -0,0 +1,19 @@ +/** +* Appcelerator Titanium Mobile +* Copyright (c) 2018-Present by Appcelerator, Inc. All Rights Reserved. +* Licensed under the terms of the Apache Public License +* Please see the LICENSE included with this distribution for details. +*/ +@import JavaScriptCore; + +NS_ASSUME_NONNULL_BEGIN + +@interface JSValue (Addons) + +@property (readonly) BOOL isFunction; + +- (void)defineReadOnlyProperty:(NSString *)propertyName withValue:(id)value; + +@end + +NS_ASSUME_NONNULL_END diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollBridge.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollBridge.h new file mode 100644 index 0000000..d2265b0 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollBridge.h @@ -0,0 +1,54 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-Present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "Bridge.h" +#import "TiEvaluator.h" +#import + +@import Foundation; +@import JavaScriptCore; +#include + +extern NSString *TitaniumModuleRequireFormat; + +@class KrollObject; +@class krollContext; +@class TiProxy; + +@interface KrollBridge : Bridge { + @private + NSURL *currentURL; + + KrollContext *context; + NSDictionary *preload; + BOOL shutdown; + BOOL evaluationError; + //NOTE: Do NOT treat registeredProxies like a mutableDictionary; mutable dictionaries copy keys, + //CFMutableDictionaryRefs only retain keys, which lets them work with proxies properly. + CFMutableDictionaryRef registeredProxies; + NSCondition *shutdownCondition; + os_unfair_lock proxyLock; +} +- (void)boot:(id)callback url:(NSURL *)url_ preload:(NSDictionary *)preload_; +- (void)evalJSWithoutResult:(NSString *)code; +- (id)evalJSAndWait:(NSString *)code; +- (BOOL)evaluationError; +- (void)setEvaluationError:(BOOL)value; +- (void)fireEvent:(id)listener withObject:(id)obj remove:(BOOL)yn thisObject:(TiProxy *)thisObject; +- (id)preloadForKey:(id)key name:(id)name; +- (KrollContext *)krollContext; + ++ (NSArray *)krollBridgesUsingProxy:(id)proxy; ++ (BOOL)krollBridgeExists:(KrollBridge *)bridge; ++ (KrollBridge *)krollBridgeForThreadName:(NSString *)threadName; ++ (NSArray *)krollContexts; + +- (void)enqueueEvent:(NSString *)type forProxy:(TiProxy *)proxy withObject:(id)obj; +- (void)registerProxy:(id)proxy krollObject:(KrollObject *)ourKrollObject; +- (int)forceGarbageCollectNow; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollCallback.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollCallback.h new file mode 100644 index 0000000..e5b9a97 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollCallback.h @@ -0,0 +1,41 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2018 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "KrollContext.h" +#import "KrollWrapper.h" +#import +#import + +@class KrollBridge; + +// +// KrollCallback is a wrapper around a JS function object which is passed +// from JS land to native. This object can be passed around on the native +// side as a normal opaque object and then passed back through to Kroll +// for function invocation (or just to pass the function object back as-is) +// +@interface KrollCallback : NSObject { + @private + JSContextRef jsContext; + JSObjectRef thisObj; + JSObjectRef function; + KrollContext *context; + KrollBridge *bridge; + NSString *type; +} + +@property (nonatomic, readwrite, retain) NSString *type; + +- (id)initWithCallback:(JSValueRef)function_ thisObject:(JSObjectRef)thisObject_ context:(KrollContext *)context_; +- (void)callAsync:(NSArray *)args thisObject:(id)thisObject_; +- (id)call:(NSArray *)args thisObject:(id)thisObject_; +- (JSObjectRef)function; +- (KrollContext *)context; +- (KrollWrapper *)toKrollWrapper; ++ (void)shutdownContext:(KrollContext *)context; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollContext.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollContext.h new file mode 100644 index 0000000..8f3ec2a --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollContext.h @@ -0,0 +1,154 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2018 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import +#import + +@class KrollContext; +@class KrollCallback; +@class KrollTimerManager; + +@protocol KrollDelegate + +@required +- (id)require:(KrollContext *)kroll path:(NSString *)path; +- (BOOL)shouldDebugContext; +- (BOOL)shouldProfileContext; +@optional + +- (void)willStartNewContext:(KrollContext *)kroll; +- (void)didStartNewContext:(KrollContext *)kroll; +- (void)willStopNewContext:(KrollContext *)kroll; +- (void)didStopNewContext:(KrollContext *)kroll; + +@end + +@interface KrollContext : NSObject { + @private + id delegate; + BOOL stopped; + + //Garbage collection variables. + BOOL gcrequest; + unsigned int loopCount; + + BOOL destroyed; +#ifndef __clang_analyzer__ + BOOL suspended; +#endif + JSGlobalContextRef context; + KrollTimerManager *timerManager; +} + +@property (nonatomic, readwrite, assign) id delegate; + +- (void)start; +- (void)stop; +- (BOOL)running; +- (void)gc; +- (JSGlobalContextRef)context; +- (BOOL)isKJSThread; + +- (void)invokeOnThread:(id)callback_ method:(SEL)method_ withObject:(id)obj condition:(NSCondition *)condition_; +- (void)invokeOnThread:(id)callback_ method:(SEL)method_ withObject:(id)obj callback:(id)callback selector:(SEL)selector_; +- (void)invokeBlockOnThread:(void (^)(void))block; ++ (void)invokeBlock:(void (^)(void))block; + +- (void)evalJS:(NSString *)code; +- (id)evalJSAndWait:(NSString *)code; + +- (void)enqueue:(id)obj; + +- (int)forceGarbageCollectNow; + +@end + +//==================================================================================================================== + +@interface KrollUnprotectOperation : NSOperation { + JSContextRef jsContext; + JSObjectRef firstObject; + JSObjectRef secondObject; +} + +- (id)initWithContext:(JSContextRef)newContext withJsobject:(JSObjectRef)newFirst; +- (id)initWithContext:(JSContextRef)newContext withJsobject:(JSObjectRef)newFirst andJsobject:(JSObjectRef)newSecond; + +@end + +@interface KrollInvocation : NSObject { + @private + id target; + SEL method; + id obj; + NSCondition *condition; + id notify; + SEL notifySelector; +} +- (id)initWithTarget:(id)target_ method:(SEL)method_ withObject:(id)obj_ condition:(NSCondition *)condition_; +- (id)initWithTarget:(id)target_ method:(SEL)method_ withObject:(id)obj_ callback:(id)callback_ selector:(SEL)selector_; +- (void)invoke:(KrollContext *)context; +@end + +@interface KrollEval : NSObject { + @private + NSString *code; + NSURL *sourceURL; + NSInteger startingLineNo; +} +- (id)initWithCode:(NSString *)code; +- (id)initWithCode:(NSString *)code sourceURL:(NSURL *)sourceURL; +- (id)initWithCode:(NSString *)code sourceURL:(NSURL *)sourceURL startingLineNo:(NSInteger)startingLineNo; +- (JSValueRef)jsInvokeInContext:(KrollContext *)context exception:(JSValueRef *)exceptionPointer; +- (void)invoke:(KrollContext *)context; +- (id)invokeWithResult:(KrollContext *)context; +@end + +@class KrollObject; +@interface KrollEvent : NSObject { + @private + KrollCallback *callback; + + NSString *type; + KrollObject *callbackObject; + + NSDictionary *eventObject; + id thisObject; +} +- (id)initWithType:(NSString *)newType ForKrollObject:(KrollObject *)newCallbackObject eventObject:(NSDictionary *)newEventObject thisObject:(id)newThisObject; +- (id)initWithCallback:(KrollCallback *)newCallback eventObject:(NSDictionary *)newEventObject thisObject:(id)newThisObject; +- (void)invoke:(KrollContext *)context; +@end + +@protocol KrollTargetable +@required +- (void)setExecutionContext:(id)delegate; +@end + +KrollContext *GetKrollContext(JSContextRef context); + +//TODO: After 1.7, move to individual file and convert KrollInvocation and Callbacks to ExpandedInvocationOperation. +@interface ExpandedInvocationOperation : NSOperation { + @private + id invocationTarget; + SEL invocationSelector; + id invocationArg1; + id invocationArg2; + id invocationArg3; + id invocationArg4; +} +- (id)initWithTarget:(id)target selector:(SEL)sel object:(id)arg1 object:(id)arg2; +- (id)initWithTarget:(id)target selector:(SEL)sel object:(id)arg1 object:(id)arg2 object:(id)arg3; +- (id)initWithTarget:(id)target selector:(SEL)sel object:(id)arg1 object:(id)arg2 object:(id)arg3 object:(id)arg4; + +@property (nonatomic, readwrite, retain) id invocationTarget; +@property (nonatomic, readwrite, assign) SEL invocationSelector; +@property (nonatomic, readwrite, retain) id invocationArg1; +@property (nonatomic, readwrite, retain) id invocationArg2; +@property (nonatomic, readwrite, retain) id invocationArg3; +@property (nonatomic, readwrite, retain) id invocationArg4; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollObject.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollObject.h new file mode 100644 index 0000000..f83a5a2 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollObject.h @@ -0,0 +1,112 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-Present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import +#import + +@class KrollContext, KrollCallback, TiProxy; +extern JSClassRef KrollObjectClassRef; +extern JSStringRef kTiStringExportsKey; + +void KrollFinalizer(JSObjectRef ref); +void KrollInitializer(JSContextRef ctx, JSObjectRef object); +JSValueRef KrollGetProperty(JSContextRef jsContext, JSObjectRef obj, JSStringRef prop, JSValueRef *exception); +bool KrollSetProperty(JSContextRef jsContext, JSObjectRef obj, JSStringRef prop, JSValueRef value, JSValueRef *exception); +bool KrollDeleteProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef *exception); + +// +// KrollObject is a generic native wrapper around a native object exposed as a JS object +// in JS land. +// + +@class KrollBridge; +@interface KrollObject : NSObject { + @private + NSMutableDictionary *properties; + NSMutableDictionary *statics; + JSObjectRef _jsobject; + BOOL targetable; + BOOL finalized; + BOOL protecting; + @protected + id target; + KrollContext *context; + JSContextRef jsContext; + KrollBridge *bridge; //Used only in finalizing for sake of safe lookup. +} +@property (nonatomic, assign) BOOL finalized; +@property (nonatomic, readonly) KrollBridge *bridge; +@property (nonatomic, readonly) KrollContext *context; +@property (nonatomic, readonly) JSContextRef jsContext; + +- (id)initWithTarget:(id)target_ context:(KrollContext *)context_; + ++ (JSValueRef)create:(id)object context:(KrollContext *)context_; ++ (id)toID:(KrollContext *)context value:(JSValueRef)ref; ++ (JSValueRef)toValue:(KrollContext *)context value:(id)obj; ++ (id)nonNull:(id)value; ++ (BOOL)isFinalizing; + +/** + Checks if a property with the given name exists on our target. + + Contains all the magic of valueForKey withouth trying to retrieve any actual + value. + + The checks for property existance are done in the following order: + * The Kroll object's own statics and properties cache + * Dynamic getter and setter in the form of getSomeProperty or setSomeProperty + * Property on the actual target + * "toString" and "valueOf" are always available on all objects + * "className" has a special handling with valueForUndefinedKey, return true + for the sake of simplicity + * Method with the same name on the target and single parameter + * Method with the same name on the target and no parameter + * Create factory method + + As soon as one of the above checks passes this method returns true, meaning + the property exists. If none of the checks passed the property does not exists + and the method returns false. + + @param propertyName The property name to check for. + */ +- (BOOL)hasProperty:(NSString *)propertyName; +- (id)valueForKey:(NSString *)key; +- (void)deleteKey:(NSString *)key; +- (void)setValue:(id)value forKey:(NSString *)key; +- (void)setStaticValue:(id)value forKey:(NSString *)key purgable:(BOOL)purgable; +- (id)target; + +//TODO: Lots of copypasted code in these methods could be refactored out. +@property (nonatomic, assign) JSObjectRef propsObject; +- (JSObjectRef)jsobject; +- (JSValueRef)jsvalueForUndefinedKey:(NSString *)key; + +- (void)noteKeylessKrollObject:(KrollObject *)value; +- (void)forgetKeylessKrollObject:(KrollObject *)value; +- (void)protectJsobject; +- (void)unprotectJsobject; + +- (void)noteKrollObject:(KrollObject *)value forKey:(NSString *)key; +- (void)forgetKrollObjectforKey:(NSString *)key; +- (void)noteObject:(JSObjectRef)storedJSObject forTiString:(JSStringRef)keyString context:(JSContextRef)jsxContext; +- (void)forgetObjectForTiString:(JSStringRef)keyString context:(JSContextRef)jsContext; +- (JSObjectRef)objectForTiString:(JSStringRef)keyString context:(JSContextRef)jsContext; + +- (void)noteCallback:(KrollCallback *)eventCallback forKey:(NSString *)key; +- (void)forgetCallbackForKey:(NSString *)key; +- (void)invokeCallbackForKey:(NSString *)key withObject:(NSDictionary *)eventData thisObject:(KrollObject *)thisObject; +- (void)invokeCallbackForKey:(NSString *)key withObject:(NSDictionary *)eventData thisObject:(KrollObject *)thisObject onDone:(void (^)(id result))block; + +- (JSObjectRef)callbacksForEvent:(JSStringRef)jsEventTypeString; +- (void)storeListener:(id)eventCallbackOrWrapper forEvent:(NSString *)eventName; +- (void)removeListener:(KrollCallback *)eventCallback forEvent:(NSString *)eventName; +- (void)triggerEvent:(NSString *)eventName withObject:(NSDictionary *)eventData thisObject:(KrollObject *)thisObject; + +- (void)applyGarbageCollectionSafeguard; +- (void)removeGarbageCollectionSafeguard; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollPromise.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollPromise.h new file mode 100644 index 0000000..9a01276 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollPromise.h @@ -0,0 +1,35 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2020-Present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. +*/ +#ifndef KrollPromise_h +#define KrollPromise_h + +#import + +@interface KrollPromise : NSObject { + @private + JSValue *resolveFunc; + JSValue *rejectFunc; + BOOL _fulfilled; + BOOL _flushMe; +} + +@property (readonly, nonatomic) JSValue *JSValue; + +- (void)resolve:(NSArray *)arguments; +- (void)reject:(NSArray *)arguments; +- (void)rejectWithErrorMessage:(NSString *)message; +- (void)flush; + +- (KrollPromise *)initInContext:(JSContext *)context; + ++ (KrollPromise *)resolved:(NSArray *)arguments inContext:(JSContext *)context; ++ (KrollPromise *)rejected:(NSArray *)arguments inContext:(JSContext *)context; ++ (KrollPromise *)rejectedWithErrorMessage:(NSString *)message inContext:(JSContext *)context; + +@end + +#endif /* KrollPromise_h */ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollWrapper.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollWrapper.h new file mode 100644 index 0000000..6c51885 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollWrapper.h @@ -0,0 +1,55 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2018 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "KrollContext.h" +#import + +@class KrollBridge; + +/* + * For functions and other objects that need to be held by proxies without + * conversion or possible retain cycles, KrollWrapper passively refers to a + * JS Object. In the future, this should become the base class, instead of a + * collection of Kroll wrappers all based off of NSObject despite common + * functionality. + * + * NOTE: This is an object that is never made explicitly by TiIdToValue; + * instead, all JS functions become KrollCallbacks, and both KrollCallbacks + * and KrollObjectProperties will be converted into functions. + * (or TiObjectRefs at any rate) + * Instead, KrollWrapper is used in two places currently: When a function is + * retained as a property by a proxy (to avoid the above retain loop), + * and for JS-based modules which do not need proxy properties but do need to + * be first-class JS object citizens. + * TODO: Consolidate various KrollObjects, KrollCallbacks, etc to be + * KrollWrappers. + */ +@interface KrollWrapper : NSObject { + JSObjectRef jsobject; + KrollBridge *bridge; + BOOL protecting; +} + +// Access the native JSCore object +@property (nonatomic, readwrite, assign) JSObjectRef jsobject; + +// Access the kroll bridge (e.g. for the kroll context) +@property (nonatomic, readwrite, assign) KrollBridge *bridge; + +// Protects a JSObject from being GC'd +- (void)protectJsobject; + +// Unprotects a JSObject from being GC'd +- (void)unprotectJsobject; + +// Replaces a value for a given key in it's underlaying JSContext +- (void)replaceValue:(id)value forKey:(NSString *)key notification:(BOOL)notify; + +// Executes an async JavaScript function and returns the resulting JSCore value if any +- (JSValueRef)executeWithArguments:(NSArray *)arguments; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/LayoutConstraint.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/LayoutConstraint.h new file mode 100644 index 0000000..944c712 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/LayoutConstraint.h @@ -0,0 +1,121 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "TiDimension.h" +#import "TiUtils.h" +#import + +/** + A protocol to handle layout auto-sizing based on given sizes and rects. + */ +@protocol LayoutAutosizing + +@optional + +- (CGFloat)minimumParentWidthForSize:(CGSize)size; +- (CGFloat)minimumParentHeightForSize:(CGSize)size; + +- (CGFloat)autoWidthForSize:(CGSize)size; +- (CGFloat)autoHeightForSize:(CGSize)size; + +- (CGFloat)contentWidthForWidth:(CGFloat)suggestedWidth; +- (CGFloat)contentHeightForWidth:(CGFloat)width; + +- (CGFloat)verifyWidth:(CGFloat)suggestedWidth; +- (CGFloat)verifyHeight:(CGFloat)suggestedHeight; + +- (UIViewAutoresizing)verifyAutoresizing:(UIViewAutoresizing)suggestedResizing; + +- (TiDimension)defaultAutoWidthBehavior:(id)unused; +- (TiDimension)defaultAutoHeightBehavior:(id)unused; + +@end +#ifndef TI_USE_AUTOLAYOUT + +/** + Layout options to determine absolute, vertical and horizontal layout. + */ +typedef enum { + TiLayoutRuleAbsolute, + TiLayoutRuleVertical, + TiLayoutRuleHorizontal, +} TiLayoutRule; + +TI_INLINE CGFloat TiFixedValueRuleFromObject(id object) +{ + return [TiUtils floatValue:object def:0]; +} + +TI_INLINE TiLayoutRule TiLayoutRuleFromObject(id object) +{ + if ([object isKindOfClass:[NSString class]]) { + if ([object caseInsensitiveCompare:@"vertical"] == NSOrderedSame) { + return TiLayoutRuleVertical; + } + if ([object caseInsensitiveCompare:@"horizontal"] == NSOrderedSame) { + return TiLayoutRuleHorizontal; + } + } + return TiLayoutRuleAbsolute; +} + +TI_INLINE BOOL TiLayoutRuleIsAbsolute(TiLayoutRule rule) +{ + return rule == TiLayoutRuleAbsolute; +} + +TI_INLINE BOOL TiLayoutRuleIsVertical(TiLayoutRule rule) +{ + return rule == TiLayoutRuleVertical; +} + +TI_INLINE BOOL TiLayoutRuleIsHorizontal(TiLayoutRule rule) +{ + return rule == TiLayoutRuleHorizontal; +} + +typedef struct LayoutConstraint { + + TiDimension centerX; + TiDimension left; + TiDimension right; + TiDimension width; + + TiDimension centerY; + TiDimension top; + TiDimension bottom; + TiDimension height; + + TiLayoutRule layoutStyle; + struct { + unsigned int horizontalWrap : 1; + } layoutFlags; + + CGFloat minimumHeight; + CGFloat minimumWidth; + +} LayoutConstraint; + +TI_INLINE BOOL TiLayoutFlagsHasHorizontalWrap(LayoutConstraint *constraint) +{ + return constraint->layoutFlags.horizontalWrap; +} + +@class TiUIView; +@class TiViewProxy; + +void ApplyConstraintToViewWithBounds(LayoutConstraint *constraint, TiUIView *subView, CGRect viewBounds); + +CGFloat WidthFromConstraintGivenWidth(LayoutConstraint *constraint, CGFloat viewWidth); + +CGSize SizeConstraintViewWithSizeAddingResizing(LayoutConstraint *constraint, NSObject *autoSizer, CGSize referenceSize, UIViewAutoresizing *resultResizing); + +CGPoint PositionConstraintGivenSizeBoundsAddingResizing(LayoutConstraint *constraint, TiViewProxy *viewProxy, CGSize viewSize, CGPoint anchorPoint, CGSize referenceSize, CGSize sandboxSize, UIViewAutoresizing *resultResizing); + +BOOL IsLayoutUndefined(LayoutConstraint *constraint); + +#endif diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ListenerEntry.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ListenerEntry.h new file mode 100644 index 0000000..4585458 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ListenerEntry.h @@ -0,0 +1,33 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "TiEvaluator.h" +#import "TiModule.h" + +/** + A wrapper class used to store event listeners related to a given proxy and kroll-context. + */ +@interface ListenerEntry : NSObject { + @private + id context; + id listener; + TiProxy *proxy; + NSString *type; +} + +/** + The type of listener entry to use. + @return The given type. + */ +@property (nonatomic, readwrite, retain) NSString *type; + +- (id)initWithListener:(id)listener_ context:(id)context_ proxy:(TiProxy *)proxy; + +- (id)context; + +- (id)listener; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Mimetypes.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Mimetypes.h new file mode 100644 index 0000000..ea5673f --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Mimetypes.h @@ -0,0 +1,33 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +extern const NSString *svgMimeType; + +/** + A static class to convert file extensions into mime-types and vice versa. + */ +@interface Mimetypes : NSObject + +/** + Converts a file extension into a mime type. + + @param ext The extension to convert. + @return The mime-type converted from the extension. + */ ++ (NSString *)mimeTypeForExtension:(NSString *)ext; + +/** + Converts a mime type into a file extension. + + @param mimetype The mime type to convert. + @return The file extension converted from the mime-type. + */ ++ (NSString *)extensionForMimeType:(NSString *)mimetype; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Module.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Module.h new file mode 100644 index 0000000..64640ab --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Module.h @@ -0,0 +1,22 @@ +#import "TiEvaluator.h" + +@class TiHost; + +@protocol Module + +/* + * Used to force a module name for native modules. This is used in the calculation of the expected proxy name for proxy factory method calls. + * i.e. TiMapModule w/ a call to Map.createAnnotation => TiMapAnnotationProxy + * w/ no name set, it will prepend "Ti" i.e. UIModule w/ a call to createWindow => TiUIWindowProxy + * This logic is currently only used in TiModule.m + */ +- (void)_setName:(NSString *)moduleClassName; +- (void)setExecutionContext:(id)context; +- (void)setHost:(TiHost *)host; +- (BOOL)isJSModule; +- (NSData *)moduleJS; +- (BOOL)destroyed; +- (void)release; +- (NSData *)loadModuleAsset:(NSString *)fromPath; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/NSData+Additions.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/NSData+Additions.h new file mode 100644 index 0000000..d635414 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/NSData+Additions.h @@ -0,0 +1,19 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +#if defined(__cplusplus) +extern "C" { +#endif + +NSData *dataWithHexString(NSString *hexString); +NSString *stringWithHexString(NSString *hexString); + +#if defined(__cplusplus) +} +#endif diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ObjcModule.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ObjcModule.h new file mode 100644 index 0000000..1b6f95b --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ObjcModule.h @@ -0,0 +1,12 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2020-Present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "Module.h" +#import "ObjcProxy.h" + +@interface ObjcModule : ObjcProxy + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ObjcProxy.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ObjcProxy.h new file mode 100644 index 0000000..3e47685 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ObjcProxy.h @@ -0,0 +1,172 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2018-Present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "TiEvaluator.h" +#import +#import + +// Macros to make life easier for defining properties with getters/setter accessor methods (which we'll remove in SDK 10.0.0 + +// Defines a setProp() accessor method in JS-world that points to setterProp:(TYPE)value in native code +#define SETTER(TYPE, NAME) JSExportAs(set##NAME, -(void)setter##NAME \ + : (TYPE)value); +// Implements the setterProp:(TYPEvalue method that forwards to typical setProp:value impl +#define SETTER_IMPL(TYPE, NAME) \ + -(void)setter##NAME : (TYPE)value \ + { \ + [self set##NAME:value]; \ + } + +// Defines a getProp() method in JS-land +#define GETTER(TYPE, NAME) \ + -(TYPE)get##NAME __attribute((deprecated("Use the property instead."))); +// Implements the special getter method that forwards to typical property name getter +#define GETTER_IMPL(TYPE, LOWER, UPPER) \ + -(TYPE)get##UPPER \ + { \ + return [self LOWER]; \ + } + +// Defines a Read/write pair of accessors +#define READWRITE(TYPE, NAME) \ + GETTER(TYPE, NAME); \ + SETTER(TYPE, NAME); + +#define READWRITE_IMPL(TYPE, LOWER, UPPER) \ + GETTER_IMPL(TYPE, LOWER, UPPER); \ + SETTER_IMPL(TYPE, UPPER); + +#define PROPERTY(TYPE, LOWER, UPPER) \ + @property TYPE LOWER; + +#define CONSTANT(TYPE, NAME) \ + @property (readonly) TYPE NAME; + +#define READONLY_PROPERTY(TYPE, LOWER, UPPER) \ + CONSTANT(TYPE, LOWER); + +// TODO: Log a warning/error if negative? +// We could also define as NSUInteger and do: if (arg - 1 == NSIntegerMax) as NaN check +#define OPTIONAL_UINT_ARGUMENT(ARG_NAME, NEW_NAME, DEFAULT) \ + NSUInteger NEW_NAME = DEFAULT; \ + if (ARG_NAME < 0 || !isnan([ARG_NAME doubleValue])) { \ + NEW_NAME = [ARG_NAME unsignedIntegerValue]; \ + } + +// Methods for grabbing properties from a JSValue object argument +#define ENSURE_PROPERTY_EXISTS(dict, name) \ + if (![dict hasProperty:name]) { \ + [self throwException:TiExceptionInvalidType subreason:[NSString stringWithFormat:@"required property \"%@\" is missing", name] location:CODELOCATION]; \ + return nil; \ + } + +#define ENSURE_UINT32_OR_DEFAULT(dict, name, fallback) \ + ([dict hasProperty:name]) ? [dict[name] toUInt32] : fallback; + +#define ENSURE_STRING_OR_DEFAULT(dict, name, fallback) \ + ([dict hasProperty:name]) ? [dict[name] toString] : fallback; + +@protocol ProxyExports + +// Properties (and accessors) +READONLY_PROPERTY(NSString *, apiName, ApiName); + +/** + Indicates that this proxy should honor bubbling of user events, if the proxy + is the type that has a parent to bubble to (This is primairly views, but may + have some exceptions). + */ +PROPERTY(BOOL, bubbleParent, BubbleParent); + +// Methods +JSExportAs(addEventListener, + -(void)addEventListener + : (NSString *)name withCallback + : (JSValue *)callback); +JSExportAs(removeEventListener, + -(void)removeEventListener + : (NSString *)name withCallback + : (JSValue *)callback); +JSExportAs(fireEvent, + -(void)fireEvent + : (NSString *)name withDict + : (NSDictionary *)dict); + +@end + +/** + The base class for Titanium proxies using new Obj-C API. + */ +@interface ObjcProxy : NSObject { + @private + NSMutableDictionary *_listeners; // new listener map for Obj-C JSC API + pthread_rwlock_t _listenerLock; + NSURL *baseURL; +} + +- (NSURL *)_baseURL; + +- (void)_destroy; +- (void)_configure; + +/** + @deprecated Only here for backwards compatibility with SDK < 8.1.0. Use `init` instead. + */ +- (id)_initWithPageContext:(id)context __attribute__((deprecated)); +- (id)_initWithPageContext:(id)context args:(NSArray *)args __attribute__((deprecated)); + +// hooks for when an event listener gets added/removed +- (void)_listenerAdded:(NSString *)type count:(int)count; +- (void)_listenerRemoved:(NSString *)type count:(int)count; + +/** + Whether or not the proxy has listeners for the specified event type. + @param type The event type. + @return _YES_ if the proxy has any listeners for the specified event type, _NO_ otherwise. + */ +- (BOOL)_hasListeners:(NSString *)type; + +- (void)fireEvent:(NSString *)name withDict:(NSDictionary *)dict; +/** + Tells the proxy to fire an event of the specified type to a listener. + @param type The event type. + @param obj The event properties. + @param listener The listener to fire event for. + */ +- (void)_fireEventToListener:(NSString *)type withObject:(id)obj listener:(JSValue *)listener; + +/** + The convenience method to raise an exception . + @param reason The exception reason. + @param subreason The exception subreason. + @param location The exception location. + */ ++ (void)throwException:(NSString *)reason subreason:(NSString *)subreason location:(NSString *)location; +- (void)throwException:(NSString *)reason subreason:(NSString *)subreason location:(NSString *)location; + ++ (JSValue *)createError:(NSString *)reason subreason:(NSString *)subreason location:(NSString *)location inContext:(JSContext *)context; +- (JSValue *)createError:(NSString *)reason subreason:(NSString *)subreason location:(NSString *)location inContext:(JSContext *)context; + +// FIXME: Should id be TiProxy* here? +- (id)JSValueToNative:(JSValue *)jsValue; +- (JSValue *)NativeToJSValue:(id)proxy; +- (JSValue *)JSValue; +- (JSValue *)JSValueInContext:(JSContext *)context; + +/** + * Convenience method to interface with "old-style" proxies, which typically need this passed in as + * the "page context" in their initializers. + **/ +- (id)executionContext; ++ (id)executionContext:(JSContext *)jsContext; + +/** + * Due to mix and match of new and old C API, JSContext.currentContext (and currentThis) may be null + * If we get called back through the old C API function callback, it will be, so we need to hack. + */ +- (JSContext *)currentContext; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/OperationQueue.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/OperationQueue.h new file mode 100644 index 0000000..181afe8 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/OperationQueue.h @@ -0,0 +1,40 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +/** + * Operation Queue is a utility class that provides a shared queue + * that can be used to handle background jobs and after the jobs complete + * can call a callback either on or off the main UI thread. + */ +@interface OperationQueue : NSObject { + NSOperationQueue *queue; +} + +/** + Returns shared instance. + @return The shared instance. + */ ++ (OperationQueue *)sharedQueue; + +/** + Queues an operation. + + Queues an operation that targets selector on target + invoke after (if not nil) on when completed + pass YES to ui to invoke after on UI main thread + @param selector The selector. + @param target The target. + @param arg The argument + @param after The after selector. + @param on The after target. + @param ui The flag to invoke after on UI thread. + */ +- (void)queue:(SEL)selector target:(id)target arg:(id)arg after:(SEL)after on:(id)on ui:(BOOL)ui; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/SBJSON.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/SBJSON.h new file mode 100644 index 0000000..9624798 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/SBJSON.h @@ -0,0 +1,144 @@ +/* +Copyright (C) 2008 Stig Brautaset. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + Neither the name of the author nor the names of its contributors may be used + to endorse or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#import + +// Have to rename this symbol to avoid conflicts; see below +extern NSString *SBJSONErrorDomain; + +enum { + EUNSUPPORTED = 1, + EPARSENUM, + EPARSE, + EFRAGMENT, + ECTRL, + EUNICODE, + EDEPTH, + EESCAPE, + ETRAILCOMMA, + ETRAILGARBAGE, + EEOF, + EINPUT +}; + +/** +@brief A strict JSON parser and generator + +This is the parser and generator underlying the categories added to +NSString and various other objects. + +Objective-C types are mapped to JSON types and back in the following way: + +@li NSNull -> Null -> NSNull +@li NSString -> String -> NSMutableString +@li NSArray -> Array -> NSMutableArray +@li NSDictionary -> Object -> NSMutableDictionary +@li NSNumber (-initWithBool:) -> Boolean -> NSNumber -initWithBool: +@li NSNumber -> Number -> NSDecimalNumber + +In JSON the keys of an object must be strings. NSDictionary keys need +not be, but attempting to convert an NSDictionary with non-string keys +into JSON will throw an exception. + +NSNumber instances created with the +numberWithBool: method are +converted into the JSON boolean "true" and "false" values, and vice +versa. Any other NSNumber instances are converted to a JSON number the +way you would expect. JSON numbers turn into NSDecimalNumber instances, +as we can thus avoid any loss of precision. + +Strictly speaking correctly formed JSON text must have exactly +one top-level container. (Either an Array or an Object.) Scalars, +i.e. nulls, numbers, booleans and strings, are not valid JSON on their own. +It can be quite convenient to pretend that such fragments are valid +JSON however, and this class lets you do so. + +This class does its best to be as strict as possible, both in what it +accepts and what it generates. (Other than the above mentioned support +for JSON fragments.) For example, it does not support trailing commas +in arrays or objects. Nor does it support embedded comments, or +anything else not in the JSON specification. + +*/ + +// In order to preserve our SBJSON modifications while allowing modules to use their own (and updated) +// SBJSON, we have to have an internal name for this class and alias it. +@interface SBJSON : NSObject { + BOOL humanReadable; + BOOL sortKeys; + NSUInteger maxDepth; + + @private + // Used temporarily during scanning/generation + NSUInteger depth; + const char *c; +} + +/// Whether we are generating human-readable (multiline) JSON +/** + Set whether or not to generate human-readable JSON. The default is NO, which produces + JSON without any whitespace. (Except inside strings.) If set to YES, generates human-readable + JSON with linebreaks after each array value and dictionary key/value pair, indented two + spaces per nesting level. + */ +@property BOOL humanReadable; + +/// Whether or not to sort the dictionary keys in the output +/** The default is to not sort the keys. */ +@property BOOL sortKeys; + +/// The maximum depth the parser will go to +/** Defaults to 512. */ +@property NSUInteger maxDepth; + ++ (id)decodeUrlQuery:(NSURL *)inputUrl; ++ (NSString *)stringify:(id)inputObject; + +/// Return JSON representation of an array or dictionary +- (NSString *)stringWithObject:(id)value error:(NSError **)error; + +/// Return JSON representation of any legal JSON value +- (NSString *)stringWithFragment:(id)value error:(NSError **)error; + +/// Return the object represented by the given string +- (id)objectWithString:(NSString *)jsonrep error:(NSError **)error; + +/// Return the fragment represented by the given string +- (id)fragmentWithString:(NSString *)jsonrep error:(NSError **)error; + +/// Return JSON representation (or fragment) for the given object +- (NSString *)stringWithObject:(id)value + allowScalar:(BOOL)x + error:(NSError **)error; + +/// Parse the string and return the represented object (or scalar) +- (id)objectWithString:(id)value + allowScalar:(BOOL)x + error:(NSError **)error; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Ti2DMatrix.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Ti2DMatrix.h new file mode 100644 index 0000000..18dea22 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Ti2DMatrix.h @@ -0,0 +1,49 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2018 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "TiProxy.h" + +/** + The proxy representing a 2D matrix for an affine transform. + */ +@interface Ti2DMatrix : TiProxy { + @protected + CGAffineTransform matrix; +} + +/** + Initializes the proxy with properties. + @param dict_ The properties dictionary. + */ +- (id)initWithProperties:(NSDictionary *)dict_; + +/** + Initializes the proxy with the specified transform matrix. + @param matrix_ The transform matrix. + */ +- (id)initWithMatrix:(CGAffineTransform)matrix_; + +/** + Returns transform matrix. + @return The transform matrix. + */ +@property (nonatomic, readonly) CGAffineTransform matrix; + +- (Ti2DMatrix *)translate:(id)args; +- (Ti2DMatrix *)scale:(id)args; +- (Ti2DMatrix *)rotate:(id)args; +- (Ti2DMatrix *)invert:(id)args; +- (Ti2DMatrix *)multiply:(id)args; + +@property (nonatomic, readwrite, retain) NSNumber *a; +@property (nonatomic, readwrite, retain) NSNumber *b; +@property (nonatomic, readwrite, retain) NSNumber *c; +@property (nonatomic, readwrite, retain) NSNumber *d; +@property (nonatomic, readwrite, retain) NSNumber *tx; +@property (nonatomic, readwrite, retain) NSNumber *ty; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Ti3DMatrix.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Ti3DMatrix.h new file mode 100644 index 0000000..536ca96 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Ti3DMatrix.h @@ -0,0 +1,44 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2018 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "TiProxy.h" + +#import + +@interface Ti3DMatrix : TiProxy { + @protected + CATransform3D matrix; +} + +- (id)initWithProperties:(NSDictionary *)dict_; +- (id)initWithMatrix:(CATransform3D)matrix_; + +- (CATransform3D)matrix; +- (Ti3DMatrix *)translate:(id)args; +- (Ti3DMatrix *)scale:(id)args; +- (Ti3DMatrix *)rotate:(id)args; +- (Ti3DMatrix *)invert:(id)args; +- (Ti3DMatrix *)multiply:(id)args; + +@property (nonatomic, readwrite, retain) NSNumber *m11; +@property (nonatomic, readwrite, retain) NSNumber *m12; +@property (nonatomic, readwrite, retain) NSNumber *m13; +@property (nonatomic, readwrite, retain) NSNumber *m14; +@property (nonatomic, readwrite, retain) NSNumber *m21; +@property (nonatomic, readwrite, retain) NSNumber *m22; +@property (nonatomic, readwrite, retain) NSNumber *m23; +@property (nonatomic, readwrite, retain) NSNumber *m24; +@property (nonatomic, readwrite, retain) NSNumber *m31; +@property (nonatomic, readwrite, retain) NSNumber *m32; +@property (nonatomic, readwrite, retain) NSNumber *m33; +@property (nonatomic, readwrite, retain) NSNumber *m34; +@property (nonatomic, readwrite, retain) NSNumber *m41; +@property (nonatomic, readwrite, retain) NSNumber *m42; +@property (nonatomic, readwrite, retain) NSNumber *m43; +@property (nonatomic, readwrite, retain) NSNumber *m44; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiAnimation.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiAnimation.h new file mode 100644 index 0000000..a666ee3 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiAnimation.h @@ -0,0 +1,160 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "LayoutConstraint.h" +#import "ListenerEntry.h" +#import "TiColor.h" +#import "TiPoint.h" +#import "TiProxy.h" +#import + +@class TiViewProxy; +@class TiAnimation; + +/** + Protocol for animation delegate. + */ +@protocol TiAnimationDelegate + +@optional + +/** + Whether or not the animation should transition. + + The method is only called if the animation is a transition animation type. + @param animation The animation this delegate is assigned to. + @return _YES_ if the animation should transition, _NO_ otherwise. + */ +- (BOOL)animationShouldTransition:(TiAnimation *)animation; + +/** + Tells the delegate that the animation will start. + @param animation The animation this delegate is assigned to. + */ +- (void)animationWillStart:(TiAnimation *)animation; + +/** + Tells the delegate that the animation did start. + @param animation The animation this delegate is assigned to. + */ +- (void)animationDidStart:(TiAnimation *)animation; + +/** + Tells the delegate that the animation will complete. + @param animation The animation this delegate is assigned to. + */ +- (void)animationWillComplete:(TiAnimation *)animation; + +/** + Tells the delegate that the animation did complete. + @param animation The animation this delegate is assigned to. + */ +- (void)animationDidComplete:(TiAnimation *)animation; + +@end + +/** + A type of proxy representing an animation to apply to a view. + */ +@interface TiAnimation : TiProxy { + @private + NSNumber *zIndex; + id left; + id right; + id top; + id bottom; + id width; + id height; + NSNumber *duration; + TiPoint *center; + TiColor *backgroundColor; + TiColor *color; + NSNumber *opacity; + NSNumber *opaque; + NSNumber *visible; + NSNumber *curve; + NSNumber *repeat; + NSNumber *autoreverse; + NSNumber *delay; + TiProxy *transform; + NSNumber *transition; + TiViewProxy *view; + TiViewProxy *animatedViewProxy; + NSNumber *dampingRatio; + NSNumber *springVelocity; + + NSDictionary *properties; + + // this is a temporary function passed in + ListenerEntry *callback; + + NSObject *delegate; + + // for animation delegate + UIView *animatedView; + + // for autoreverse + TiAnimation *reverseAnimation; + BOOL isReverse; + BOOL resetState; +} + +/** + Provides access to animation delegate object. + */ +@property (nonatomic, assign, readwrite) NSObject *delegate; + +@property (nonatomic, readwrite, assign) UIView *animatedView; +@property (nonatomic, readonly) ListenerEntry *callback; +@property (nonatomic, readwrite, assign) TiAnimation *reverseAnimation; +@property (nonatomic, readwrite, assign) BOOL isReverse; +@property (nonatomic, readwrite, assign) BOOL resetState; + +// animatable properties against what is being animated +@property (nonatomic, retain, readwrite) NSNumber *zIndex; +@property (nonatomic, retain, readwrite) id left; +@property (nonatomic, retain, readwrite) id right; +@property (nonatomic, retain, readwrite) id top; +@property (nonatomic, retain, readwrite) id bottom; +@property (nonatomic, retain, readwrite) id width; +@property (nonatomic, retain, readwrite) id height; +@property (nonatomic, retain, readwrite) NSNumber *duration; +@property (nonatomic, retain, readwrite) TiPoint *center; +@property (nonatomic, retain, readwrite) TiColor *color; +@property (nonatomic, retain, readwrite) TiColor *backgroundColor; +@property (nonatomic, retain, readwrite) NSNumber *opacity; +@property (nonatomic, retain, readwrite) NSNumber *opaque; +@property (nonatomic, retain, readwrite) NSNumber *visible; + +// properties that control the animation +@property (nonatomic, retain, readwrite) NSNumber *curve; +@property (nonatomic, retain, readwrite) NSNumber *repeat; +@property (nonatomic, retain, readwrite) NSNumber *autoreverse; +@property (nonatomic, retain, readwrite) NSNumber *delay; +@property (nonatomic, retain, readwrite) TiProxy *transform; +@property (nonatomic, retain, readwrite) NSNumber *transition; +@property (nonatomic, retain, readwrite) TiProxy *view; +@property (nonatomic, retain, readwrite) NSNumber *dampingRatio; +@property (nonatomic, retain, readwrite) NSNumber *springVelocity; + ++ (TiAnimation *)animationFromArg:(id)args context:(id)context create:(BOOL)yn; + +- (id)initWithDictionary:(NSDictionary *)properties context:(id)context; + +- (id)initWithDictionary:(NSDictionary *)properties context:(id)context callback:(KrollCallback *)callback; + +- (void)animate:(id)args; + +/** + Whether or not the animation is a transition animation type. + @return _YES_ if the animation is a transition animation type, _NO_ otherwise. + */ +- (BOOL)isTransitionAnimation; + +- (NSTimeInterval)animationDuration; +- (void)animationCompleted:(NSString *)animationID finished:(NSNumber *)finished context:(void *)context; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiApp.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiApp.h new file mode 100644 index 0000000..fbf3dc1 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiApp.h @@ -0,0 +1,299 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2015 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import +#import + +#import "KrollBridge.h" +#import "TiHost.h" +#import "TiRootViewController.h" +#import + +extern BOOL applicationInMemoryPanic; // TODO: Remove in SDK 9.0+ + +// TODO: Remove in SDK 9.0+ +TI_INLINE void waitForMemoryPanicCleared() //WARNING: This must never be run on main thread, or else there is a risk of deadlock! +{ +} + +/** + TiApp represents an instance of an application. There is always only one instance per application which could be accessed through class method. + */ +@interface TiApp : TiHost { + UIWindow *window; + UIImageView *loadView; + UIView *splashScreenView; + BOOL loaded; + + JSContextGroupRef contextGroup; + KrollBridge *kjsBridge; + + NSMutableDictionary *launchOptions; + NSTimeInterval started; + + int32_t networkActivityCount; + + TiRootViewController *controller; + NSString *userAgent; + NSString *remoteDeviceUUID; + + NSDictionary *remoteNotification; + + NSMutableDictionary *pendingCompletionHandlers; + NSMutableDictionary *pendingReplyHandlers; + NSMutableDictionary *backgroundTransferCompletionHandlers; + NSMutableDictionary *queuedBootEvents; + NSMutableDictionary *> *uploadTaskResponses; + + NSMutableDictionary *> *_queuedApplicationSelectors; + NSMutableSet *_applicationDelegates; + + BOOL appBooted; + + NSString *sessionId; + + UIBackgroundTaskIdentifier bgTask; + NSMutableArray *backgroundServices; + NSMutableArray *runningServices; + NSDictionary *localNotification; + UIApplicationShortcutItem *launchedShortcutItem; +} + +/** + Returns or set the user agent string to use for network requests. + */ +@property (nonatomic, retain) NSString *userAgent; + +/** + Determines if the application finished booting. + */ +@property (nonatomic, readonly) BOOL appBooted; + +/** + Prevents network activity indicator from showing. + Setting this property to YES disables appearance of network activity indicator when startNetwork is called. + In case network activity indicator is currently visible, it will be hidden. + + @see startNetwork + @see stopNetwork + */ +@property (nonatomic, assign) BOOL disableNetworkActivityIndicator; + +/** + TODO: Document this property! + */ +@property (nonatomic) BOOL forceSplashAsSnapshot; + +/** + Returns application's primary window. + + Convenience method to access the application's primary window + */ +@property (nonatomic, retain) IBOutlet UIWindow *window; + +/** + TODO: Document this property! + */ +@property (nonatomic, readonly) NSMutableDictionary *pendingCompletionHandlers; + +/** + TODO: Document this property! + */ +@property (nonatomic, readonly) NSMutableDictionary *backgroundTransferCompletionHandlers; + +/** + Returns details for the last remote notification. + + Dictionary containing details about remote notification, or _nil_. + */ +@property (nonatomic, readonly) NSDictionary *remoteNotification; + +/** + Returns local notification that has bees sent on the application. + + @return Dictionary containing details about local notification, or _nil_. + */ +@property (nonatomic, readonly) NSDictionary *localNotification; + +/** + Returns the application's root view controller. + */ +@property (nonatomic, retain) TiRootViewController *controller; + +/** + TODO: Document this property! + */ +@property (nonatomic, readonly) JSContextGroupRef contextGroup; + +/** + TODO: Document this property! + */ +@property (nonatomic, readonly) BOOL willTerminate; + +/** + Returns singleton instance of TiApp application object. + */ ++ (TiApp *)app NS_SWIFT_NAME(sharedApp()); + +/** + * Returns a read-only dictionary from tiapp.xml properties + */ ++ (NSDictionary *)tiAppProperties; + +/* + Convenience method to returns root view controller for TiApp instance. + @return The application's root view controller. + @see controller + */ ++ (TiRootViewController *)controller; + ++ (JSContextGroupRef)contextGroup; + +- (BOOL)windowIsKeyWindow; + +- (UIView *)topMostView; + +- (void)registerApplicationDelegate:(id)applicationDelegate; + +- (void)unregisterApplicationDelegate:(id)applicationDelegate; + +/** + Returns the queued boot events scheduled with `tryToPostNotification:withNotificationName:completionHandler:``. + + @return The dictionary of queued boot events. + */ +- (NSMutableDictionary *)queuedBootEvents; + +/** + Returns application launch options + + The method provides access to application launch options that became available when application just launched. + @return The launch options dictionary. + */ +- (NSDictionary *)launchOptions; + +/** + Returns remote UUID for the current running device. + + @return Current device UUID. + */ +- (NSString *)remoteDeviceUUID; + +/** + Tells application to show network activity indicator. + + Every call of startNetwork should be paired with . + @see stopNetwork + */ +- (void)startNetwork; + +/** + Tells application to hide network activity indicator. + + Every call of stopNetwork should have corresponding call. + @see startNetwork + */ +- (void)stopNetwork; + +/** + Generates a native notification from the given dictionary. + + @param dict The dictionary to use to generate the native notification. + */ +- (void)generateNotification:(NSDictionary *)dict; + +/** + Tells application to display modal error. + + @param message The message to show in the modal error screen. + */ +- (void)showModalError:(NSString *)message; + +/** + Tells application to display modal view controller. + + @param controller The view controller to display. + @param animated If _YES_, animates the view controller as it’s presented; otherwise, does not. + */ +- (void)showModalController:(UIViewController *)controller animated:(BOOL)animated; + +/** + Tells application to hide modal view controller. + + @param controller The view controller to hide. + @param animated If _YES_, animates the view controller as it’s hidden; otherwise, does not. + */ +- (void)hideModalController:(UIViewController *)controller animated:(BOOL)animated; + +/** + Returns unique identifier for the current application launch. + + @return Current session id. + */ +- (NSString *)sessionId; + +/** + Starts searching for background services. + */ +- (void)beginBackgrounding; + +/** + Ends background services operations. + */ +- (void)endBackgrounding; + +/** + Returns the user agent string to use for system network requests. + */ +- (NSString *)systemUserAgent; + +/** + Returns a dictionary containing the native notification information (iOS 10 and later). + */ ++ (NSDictionary *)dictionaryWithUserNotification:(UNNotification *)notification withIdentifier:(NSString *)identifier; + +/** + Returns a dictionary containing the native notification information. + */ ++ (NSDictionary *)dictionaryWithLocalNotification:(id)notification withIdentifier:(NSString *)identifier; + +/** + Tries to invoke a given selector with the given arguments. If the app did not finish launching so far, it will be queued + and processed once the JSCore bridge is ready. + + @param selector The selector to invoke. + @param arguments The arguments to pass to the selector. + */ +- (void)tryToInvokeSelector:(SEL)selector withArguments:(NSOrderedSet *)arguments; + +/** + Tries to post a given notification with the given name. If the app did not finish launching so far, it will be queued + and processed once the JSCore bridge is ready. + + @param _notification The dictionary of user-info to pass to the notification. + @param _notificationName The name of the notification to schedule. + @param completionHandler The optional completion handler to invoke if requried. + */ +- (void)tryToPostNotification:(NSDictionary *)_notification withNotificationName:(NSString *)_notificationName completionHandler:(void (^)(void))completionHandler; + +/** + Tries to post a given background-mode notification with the given name. If the app did not finish launching so far, it will be queued + and processed once the JSCore bridge is ready. + + @param userInfo The dictionary of user-info to pass to the notification. + @param notificationName The name of the notification to schedule. + */ +- (void)tryToPostBackgroundModeNotification:(NSMutableDictionary *)userInfo withNotificationName:(NSString *)notificationName; + +- (void)registerBackgroundService:(TiProxy *)proxy; +- (void)unregisterBackgroundService:(TiProxy *)proxy; +- (void)stopBackgroundService:(TiProxy *)proxy; +- (void)performCompletionHandlerWithKey:(NSString *)key andResult:(UIBackgroundFetchResult)result removeAfterExecution:(BOOL)removeAfterExecution; +- (void)performCompletionHandlerForBackgroundTransferWithKey:(NSString *)key; +- (void)watchKitExtensionRequestHandler:(id)key withUserInfo:(NSDictionary *)userInfo; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBase.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBase.h new file mode 100644 index 0000000..8f761d2 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBase.h @@ -0,0 +1,643 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2015 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "TiSharedConfig.h" +#import +#import + +#ifndef TI_BASE_H +#define TI_BASE_H + +#ifdef __cplusplus +extern "C" { +#endif + +#define MEMORY_DEBUG 0 +#define VIEW_DEBUG 0 + +#ifndef __IPHONE_4_1 +#define __IPHONE_4_1 40100 +#endif + +#ifndef __IPHONE_4_2 +#define __IPHONE_4_2 40200 +#endif + +#ifndef __IPHONE_4_3 +#define __IPHONE_4_3 40300 +#endif + +#ifndef __IPHONE_5_0 +#define __IPHONE_5_0 50000 +#endif + +#ifndef __IPHONE_5_1 +#define __IPHONE_5_1 50100 +#endif + +#ifndef __IPHONE_6_0 +#define __IPHONE_6_0 60000 +#endif + +#ifdef DEBUG +// Kroll memory debugging +#define KROLLBRIDGE_MEMORY_DEBUG MEMORY_DEBUG +#define KOBJECT_MEMORY_DEBUG MEMORY_DEBUG +#define CONTEXT_MEMORY_DEBUG MEMORY_DEBUG + +// Proxy memory debugging +#define PROXY_MEMORY_TRACK MEMORY_DEBUG +#define TABWINDOW_MEMORY_DEBUG MEMORY_DEBUG +#define CONTEXT_DEBUG MEMORY_DEBUG + +// Kroll debugging +#define KOBJECT_DEBUG MEMORY_DEBUG +#define KMETHOD_DEBUG MEMORY_DEBUG +#endif + +// in simulator we redefine to format for Titanium Developer console + +#define TI_INLINE static __inline__ + +#define TI_BACKGROUNDFETCH_MAX_INTERVAL 29 + +// We need to overload NSLog as a macro so that we capture system messages as well. +// It has to be a wrapper because other appc-libraries use TiBase's NSLog, and can't +// spoof TiApp without symbol conflicts and other issues + +#define NSLog(...) \ + { \ + TiLogMessage(__VA_ARGS__); \ + } + +// create a mutable array that doesn't retain internal references to objects +NSMutableArray *TiCreateNonRetainingArray(void); + +// create a mutable dictionary that doesn't retain internal references to objects +NSMutableDictionary *TiCreateNonRetainingDictionary(void); + +CGPoint midpointBetweenPoints(CGPoint a, CGPoint b); +void TiLogMessage(NSString *str, ...); + +/** + * Protocol for classes to provide their JavaScript details (class name, in particular). + */ +@protocol JavascriptClass +@required ++ (NSString *)javascriptClassName; +@end + +NSString *JavascriptNameForClass(Class c); + +#define CLASS2JS(x) JavascriptNameForClass(x) +#define OBJTYPE2JS(x) JavascriptNameForClass([x class]) + +#define degreesToRadians(x) (M_PI * x / 180.0) +#define radiansToDegrees(x) (x * (180.0 / M_PI)) + +// TODO: Need to update RELEASE_TO_NIL etc. to be friendly to rememberproxy/forgetproxy for concurrent +// memory mgt. +#define RELEASE_TO_NIL(x) \ + { \ + if (x != nil) { \ + [x release]; \ + x = nil; \ + } \ + } +#define RELEASE_TO_NIL_AUTORELEASE(x) \ + { \ + if (x != nil) { \ + [x autorelease]; \ + x = nil; \ + } \ + } +#define RELEASE_AND_REPLACE(x, y) \ + { \ + [x release]; \ + x = [y retain]; \ + } + +#ifdef DEBUG +#define CODELOCATION [NSString stringWithFormat:@"%s (%@:%d)", __FUNCTION__, [[NSString stringWithFormat:@"%s", __FILE__] lastPathComponent], __LINE__] +#else +#define CODELOCATION @"" +#endif + +#define NULL_IF_NIL(x) ({ id xx = (x); (xx==nil)?[NSNull null]:xx; }) + +#define IS_NULL_OR_NIL(x) ((x == nil) || ((id)x == [NSNull null])) + +#define ENSURE_CLASS_OR_NIL(x, t) \ + if (IS_NULL_OR_NIL(x)) { \ + x = nil; \ + } else if (![x isKindOfClass:t]) { \ + [self throwException:TiExceptionInvalidType subreason:[NSString stringWithFormat:@"expected: %@ or nil, was: %@", CLASS2JS(t), OBJTYPE2JS(x)] location:CODELOCATION]; \ + } + +#define ENSURE_TYPE_OR_NIL(x, t) ENSURE_CLASS_OR_NIL(x, [t class]) + +#define ENSURE_CLASS(x, t) \ + if (![x isKindOfClass:t]) { \ + [self throwException:TiExceptionInvalidType subreason:[NSString stringWithFormat:@"expected: %@, was: %@", CLASS2JS(t), OBJTYPE2JS(x)] location:CODELOCATION]; \ + } + +#define ENSURE_TYPE(x, t) ENSURE_CLASS(x, [t class]) + +//NOTE: these checks can be pulled out of production build type + +//Question: Given that some of these silently massage the data during development but not production, +//Should the data massage either be kept in production or removed in development? --Blain. + +#define ENSURE_STRING_OR_NIL(x) \ + if ([x respondsToSelector:@selector(stringValue)]) { \ + x = [(id)x stringValue]; \ + } else { \ + ENSURE_TYPE_OR_NIL(x, NSString); \ + } + +#define ENSURE_SINGLE_ARG(x, t) \ + if ([x isKindOfClass:[NSArray class]] && [(NSArray *)x count] > 0) { \ + x = (t *)[x objectAtIndex:0]; \ + } \ + ENSURE_TYPE(x, t); + +#define ENSURE_SINGLE_ARG_OR_NIL(x, t) \ + if (IS_NULL_OR_NIL(x)) { \ + x = nil; \ + } else { \ + ENSURE_SINGLE_ARG(x, t); \ + } + +#define ENSURE_ARG_AT_INDEX(out, args, index, type) \ + if ([args isKindOfClass:[NSArray class]] && [(NSArray *)args count] > index) { \ + out = (type *)[(NSArray *)args objectAtIndex:index]; \ + } \ + ENSURE_TYPE(out, type); + +#define ENSURE_ARG_OR_NIL_AT_INDEX(out, args, index, type) \ + if (IS_NULL_OR_NIL(args)) { \ + out = nil; \ + } else if ([args isKindOfClass:[NSArray class]]) { \ + if ([(NSArray *)args count] > index) { \ + out = [(NSArray *)args objectAtIndex:index]; \ + } else { \ + out = nil; \ + } \ + if (out && ![out isKindOfClass:[type class]]) { \ + [self throwException:TiExceptionInvalidType subreason:[NSString stringWithFormat:@"expected: %@, was: %@", CLASS2JS([type class]), OBJTYPE2JS(out)] location:CODELOCATION]; \ + } \ + } + +#define COERCE_TO_INT(out, in) \ + if (![in respondsToSelector:@selector(intValue)]) { \ + [self throwException:TiExceptionInvalidType subreason:[NSString stringWithFormat:@"cannot coerce type %@ to int", OBJTYPE2JS(in)] location:CODELOCATION]; \ + } \ + out = [in intValue]; + +#define ENSURE_INT_AT_INDEX(out, args, index) \ + { \ + id tmp = nil; \ + ENSURE_ARG_AT_INDEX(tmp, args, index, NSObject); \ + COERCE_TO_INT(out, tmp); \ + } + +#define ENSURE_INT_OR_NIL_AT_INDEX(out, args, index, hasValue) \ + { \ + id tmp = nil; \ + ENSURE_ARG_OR_NIL_AT_INDEX(tmp, args, index, NSObject); \ + if (tmp == nil) { \ + hasValue = NO; \ + } else { \ + hasValue = YES; \ + COERCE_TO_INT(out, tmp) \ + } \ + } + +#define ENSURE_ARG_FOR_KEY(out, args, key, type) \ + { \ + out = [args objectForKey:key]; \ + ENSURE_TYPE(out, type); \ + } + +#define ENSURE_ARG_OR_NIL_FOR_KEY(out, args, key, type) \ + { \ + out = [args objectForKey:key]; \ + ENSURE_TYPE_OR_NIL(out, type); \ + } + +#define ENSURE_INT_FOR_KEY(out, args, key) \ + { \ + id tmp = nil; \ + ENSURE_ARG_FOR_KEY(tmp, args, key, NSObject); \ + COERCE_TO_INT(out, tmp); \ + } + +#define ENSURE_INT_OR_NIL_FOR_KEY(out, args, key, hasValue) \ + { \ + id tmp = nil; \ + ENSURE_ARG_OR_NIL_FOR_KEY(tmp, args, key, NSObject); \ + if (tmp == nil) { \ + hasValue = NO; \ + } else { \ + hasValue = YES; \ + COERCE_TO_INT(out, tmp); \ + } \ + } + +//Because both NSString and NSNumber respond to intValue, etc, this is a wider net +#define ENSURE_METHOD(x, t) \ + if (![x respondsToSelector:@selector(t)]) { \ + [self throwException:TiExceptionInvalidType subreason:[NSString stringWithFormat:@"%@ doesn't respond to method: %@", OBJTYPE2JS(x), @ #t] location:CODELOCATION]; \ + } + +#define ENSURE_ARG_COUNT(x, c) \ + if ([x count] < c) { \ + [self throwException:TiExceptionNotEnoughArguments subreason:[NSString stringWithFormat:@"expected %d arguments, received: %lu", c, (unsigned long)[x count]] location:CODELOCATION]; \ + } + +#define VALUE_AT_INDEX_OR_NIL(x, i) \ + ({ NSArray * y = (x); ([y count]>i)?[y objectAtIndex:i]:nil; }) + +#define ENSURE_CONSISTENCY(x) \ + if (!(x)) { \ + [self throwException:TiExceptionInternalInconsistency subreason:nil location:CODELOCATION]; \ + } + +#define ENSURE_VALUE_CONSISTENCY(x, v) \ + { \ + __typeof__(x) __x = (x); \ + __typeof__(v) __v = (v); \ + if (__x != __v) { \ + [self throwException:TiExceptionInternalInconsistency subreason:[NSString stringWithFormat:@"(" #x ") was not (" #v ")"] location:CODELOCATION]; \ + } \ + } + +#define ENSURE_VALUE_RANGE(x, minX, maxX) \ + { \ + __typeof__(x) __x = (x); \ + __typeof__(minX) __minX = (minX); \ + __typeof__(maxX) __maxX = (maxX); \ + if ((__x < __minX) || (__x > __maxX)) { \ + [self throwException:TiExceptionRangeError subreason:[NSString stringWithFormat:@"%lld was not >= %lld and <= %lld", (long long)__x, (long long)__maxX, (long long)__minX] location:CODELOCATION]; \ + } \ + } + +#define ENSURE_DICT(x) ENSURE_TYPE(x, NSDictionary) +#define ENSURE_ARRAY(x) ENSURE_TYPE(x, NSArray) +#define ENSURE_STRING(x) ENSURE_TYPE(x, NSString) + +void TiExceptionThrowWithNameAndReason(NSString *exceptionName, NSString *reason, NSString *subreason, NSString *location); + +#define DEFINE_EXCEPTIONS \ + -(void)throwException : (NSString *)reason subreason : (NSString *)subreason location : (NSString *)location \ + { \ + NSString *exceptionName = [@"org.appcelerator." stringByAppendingString:NSStringFromClass([self class])]; \ + TiExceptionThrowWithNameAndReason(exceptionName, reason, subreason, location); \ + } \ + \ + +(void)throwException : (NSString *)reason subreason : (NSString *)subreason location : (NSString *)location \ + { \ + NSString *exceptionName = @"org.appcelerator"; \ + TiExceptionThrowWithNameAndReason(exceptionName, reason, subreason, location); \ + } + +#define THROW_INVALID_ARG(m) \ + [self throwException:TiExceptionInvalidType subreason:m location:CODELOCATION]; + +#define MAKE_SYSTEM_PROP_IPAD(name, map) \ + -(NSNumber *)name \ + { \ + if ([TiUtils isIPad]) { \ + return [NSNumber numberWithInt:map]; \ + } \ + } + +#define MAKE_SYSTEM_PROP(name, map) \ + -(NSNumber *)name \ + { \ + return [NSNumber numberWithInt:map]; \ + } + +#define MAKE_SYSTEM_PROP_UINTEGER(name, map) \ + -(NSNumber *)name \ + { \ + return [NSNumber numberWithUnsignedInteger:map]; \ + } + +#define MAKE_SYSTEM_PROP_DEPRECATED_REPLACED(name, map, api, in, newapi) \ + -(NSNumber *)name \ + { \ + DEPRECATED_REPLACED(api, in, newapi) \ + return [NSNumber numberWithInt:map]; \ + } + +#define MAKE_SYSTEM_PROP_DEPRECATED_REPLACED_REMOVED(name, map, api, in, removed, newapi) \ + -(NSNumber *)name \ + { \ + DEPRECATED_REPLACED_REMOVED(api, in, removed, newapi) \ + return [NSNumber numberWithInt:map]; \ + } + +#define MAKE_SYSTEM_PROP_DEPRECATED_REMOVED(name, map, api, in, removed) \ + -(NSNumber *)name \ + { \ + DEPRECATED_REMOVED(api, in, removed) \ + return [NSNumber numberWithInt:map]; \ + } + +#define MAKE_SYSTEM_PROP_DBL(name, map) \ + -(NSNumber *)name \ + { \ + return [NSNumber numberWithDouble:map]; \ + } + +#define MAKE_SYSTEM_STR(name, map) \ + -(NSString *)name \ + { \ + return (NSString *)map; \ + } + +#define MAKE_SYSTEM_UINT(name, map) \ + -(NSNumber *)name \ + { \ + return [NSNumber numberWithUnsignedInt:map]; \ + } + +#define MAKE_SYSTEM_NUMBER(name, map) \ + -(NSNumber *)name \ + { \ + return map; \ + } + +#define DEPRECATED_REMOVED(api, in, removed) \ + DebugLog(@"[WARN] Ti.%@ DEPRECATED in %@: REMOVED in %@", api, in, removed); + +#define DEPRECATED_REPLACED_REMOVED(api, in, removed, newapi) \ + DebugLog(@"[WARN] Ti.%@ DEPRECATED in %@, in favor of Ti.%@: REMOVED in %@", api, in, newapi, removed); + +#define DEPRECATED_REPLACED(api, in, newapi) \ + DebugLog(@"[WARN] Ti.%@ DEPRECATED in %@, in favor of Ti.%@", api, in, newapi); + +#define NUMBOOL(x) \ + [NSNumber numberWithBool:x] + +#define NUMLONG(x) \ + [NSNumber numberWithLong:x] + +#define NUMULONG(x) \ + [NSNumber numberWithUnsignedLong:x] + +#define NUMLONGLONG(x) \ + [NSNumber numberWithLongLong:x] + +#define NUMINT(x) \ + [NSNumber numberWithInt:x] + +#define NUMUINT(x) \ + [NSNumber numberWithUnsignedInt:x] + +#define NUMDOUBLE(x) \ + [NSNumber numberWithDouble:x] + +#define NUMFLOAT(x) \ + [NSNumber numberWithFloat:x] + +#define NUMINTEGER(x) \ + [NSNumber numberWithInteger:x] + +#define NUMUINTEGER(x) \ + [NSNumber numberWithUnsignedInteger:x] + +//MUST BE NEGATIVE, as it inhabits the same space as UIBarButtonSystemItem +enum { + UITitaniumNativeItemNone = -1, + UITitaniumNativeItemSpinner = -2, + UITitaniumNativeItemProgressBar = -3, + + UITitaniumNativeItemSlider = -4, + UITitaniumNativeItemSwitch = -5, + UITitaniumNativeItemMultiButton = -6, + UITitaniumNativeItemSegmented = -7, + + UITitaniumNativeItemTextView = -8, + UITitaniumNativeItemTextField = -9, + UITitaniumNativeItemSearchBar = -10, + + UITitaniumNativeItemPicker = -11, + UITitaniumNativeItemDatePicker = -12, + + UITitaniumNativeItemInfoLight = -13, + UITitaniumNativeItemInfoDark = -14, + + UITitaniumNativeItemDisclosure = -15, + + UITitaniumNativeItemContactAdd = -16 +}; + +// common sizes for iPhone (will these change for iPad?) + +#define TI_STATUSBAR_HEIGHT 20 + +#define TI_NAVBAR_HEIGHT 44 +#define TI_NAVBAR_HEIGHT_WITH_PROMPT 64 //? +#define TI_NAVBAR_BUTTON_WIDTH 20 +#define TI_NAVBAR_BUTTON_HEIGHT 20 + +#define TI_TABBAR_HEIGHT 49 + +#define TI_TEXTFIELD_HEIGHT 31 + +#define TI_KEYBOARD_PORTRAIT_HEIGHT 216 +#define TI_KEYBOARD_LANDSCAPE_HEIGHT 140 + +#define TI_SEARCHBAR_HEIGHT 56 + +#define TI_STATUSBAR_TAG 11101 + +#ifdef DEBUG +#define FRAME_DEBUG(f) \ + NSLog(@"FRAME -- size=%fx%f, origin=%f,%f", f.size.width, f.size.height, f.origin.x, f.origin.y); + +#else +#define FRAME_DEBUG(f) +#endif + +#define DEFINE_DEF_PROP(name, defval) \ + -(id)name \ + { \ + id value = [super valueForUndefinedKey:@ #name]; \ + if (value == nil || value == [NSNull null]) { \ + return defval; \ + } \ + return value; \ + } + +#define DEFINE_DEF_BOOL_PROP(name, defval) DEFINE_DEF_PROP(name, NUMBOOL(defval)) +#define DEFINE_DEF_NULL_PROP(name) DEFINE_DEF_PROP(name, [NSNull null]) +#define DEFINE_DEF_INT_PROP(name, val) DEFINE_DEF_PROP(name, NUMINT(val)) + +// TI_VERSION will be set via an external source if not set +// display a warning and set it to 0.0.0 + +#ifndef TI_VERSION +#define TI_VERSION 0.0.0 +#endif + +#define _QUOTEME(x) #x +#define STRING(x) _QUOTEME(x) + +#define TI_VERSION_STR STRING(TI_VERSION) + +//#define VERBOSE + +#ifdef VERBOSE +#define VerboseLog(...) \ + { \ + NSLog(__VA_ARGS__); \ + } +#else +#define VerboseLog(...) \ + { \ + } +#endif + +#ifdef DEVELOPER +#define DeveloperLog(...) \ + { \ + NSLog(__VA_ARGS__); \ + } +#else +#define DeveloperLog(...) \ + { \ + } +#endif + +#ifndef DebugLog +#define DebugLog(...) \ + { \ + if ([TiSharedConfig defaultConfig].debugEnabled) { \ + NSLog(__VA_ARGS__); \ + } \ + } +#endif + +#define VAL_OR_NSNULL(foo) (((foo) != nil) ? ((id)foo) : [NSNull null]) + +NSString *hexString(NSData *thedata); + +typedef enum { + TiNetworkConnectionStateNone = 0, + TiNetworkConnectionStateWifi = 1, + TiNetworkConnectionStateMobile = 2, + TiNetworkConnectionStateLan = 3, + TiNetworkConnectionStateUnknown = 4, +} TiNetworkConnectionState; + +typedef enum { + TI_BYTE = 1, + TI_SHORT, + TI_INT, + TI_LONG, + TI_FLOAT, + TI_DOUBLE +} TiDataType; + +typedef enum { + TI_READ = 1 << 0, + TI_WRITE = 1 << 1, + TI_APPEND = 1 << 2 +} TiStreamMode; + +extern NSString *const kTiASCIIEncoding; +extern NSString *const kTiISOLatin1Encoding; +extern NSString *const kTiUTF8Encoding; +extern NSString *const kTiUTF16Encoding; +extern NSString *const kTiUTF16LEEncoding; +extern NSString *const kTiUTF16BEEncoding; + +extern NSString *const kTiByteTypeName; +extern NSString *const kTiShortTypeName; +extern NSString *const kTiIntTypeName; +extern NSString *const kTiLongTypeName; +extern NSString *const kTiFloatTypeName; +extern NSString *const kTiDoubleTypeName; + +extern NSString *const kTiContextShutdownNotification; +extern NSString *const kTiWillShutdownNotification; +extern NSString *const kTiShutdownNotification; +extern NSString *const kTiSuspendNotification; +extern NSString *const kTiPausedNotification; +extern NSString *const kTiResumeNotification; +extern NSString *const kTiResumedNotification; +extern NSString *const kTiErrorNotification; +extern NSString *const kTiAnalyticsNotification; +extern NSString *const kTiRemoteDeviceUUIDNotification; +extern NSString *const kTiGestureShakeNotification; +extern NSString *const kTiRemoteControlNotification; +extern NSString *const kTiBackgroundFetchNotification; +extern NSString *const kTiSilentPushNotification; +extern NSString *const kTiBackgroundTransfer; +extern NSString *const kTiCurrentLocale; +extern NSString *const kTiUserInteraction; +extern NSString *const kTiFrameAdjustNotification; +extern NSString *const kTiLocalNotification; +extern NSString *const kTiLocalNotificationAction; +extern NSString *const kTiRemoteNotificationAction; +extern NSString *const kTiRemoteExtentionWillExpire; +extern NSString *const kTiUserNotificationSettingsNotification; +extern NSString *const kTiURLDownloadFinished; +extern NSString *const kTiURLSessionCompleted; +extern NSString *const kTiURLSessionEventsCompleted; +extern NSString *const kTiURLDowloadProgress; +extern NSString *const kTiURLUploadProgress; +extern NSString *const kTiWatchKitExtensionRequest; +extern NSString *const kTiContinueActivity; +extern NSString *const kTiApplicationShortcut; +extern NSString *const kTiApplicationLaunchedFromURL; +extern NSString *const kTiTraitCollectionChanged; + +#ifndef TI_USE_AUTOLAYOUT +extern NSString *const kTiBehaviorSize; +extern NSString *const kTiBehaviorFill; +extern NSString *const kTiBehaviorAuto; +extern NSString *const kTiUnitPixel; +extern NSString *const kTiUnitCm; +extern NSString *const kTiUnitMm; +extern NSString *const kTiUnitInch; +extern NSString *const kTiUnitDip; +extern NSString *const kTiUnitDipAlternate; +extern NSString *const kTiUnitSystem; +extern NSString *const kTiUnitPercent; +#endif +extern NSString *const kTiExceptionSubreason; +extern NSString *const kTiExceptionLocation; + +#ifndef ASI_AUTOUPDATE_NETWORK_INDICATOR +#define ASI_AUTOUPDATE_NETWORK_INDICATOR 0 +#endif + +#ifndef ASI_AUTOUPDATE_NETWORK_INDICATOR +#define REACHABILITY_20_API 1 +#endif + +#include "TiThreading.h" + +/** + * TiThreadPerformOnMainThread should replace all Titanium instances of + * performSelectorOnMainThread, ESPECIALLY if wait is to be yes. That way, + * exceptional-case main thread activities can process them outside of the + * standard event loop. + */ +void TiThreadPerformOnMainThread(void (^mainBlock)(void), BOOL waitForFinish); + +#include "TiPublicAPI.h" + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBindingRunLoop.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBindingRunLoop.h new file mode 100644 index 0000000..03ba088 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBindingRunLoop.h @@ -0,0 +1,40 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2012 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#if TARGET_OS_IPHONE + +#import "KrollContext.h" + +typedef KrollContext *TiBindingRunLoop; + +#else + +typedef void *TiBindingRunLoop; + +#endif + +typedef void (*TiBindingCallback)(TiBindingRunLoop runLoop, void *payload); + +/* TiBindingRunLoop's Enqueue will add a callback that will be run once + * during the run loop's idle. This is for things like events, callbacks, + * and other invocations from native into Javascript. + */ +void TiBindingRunLoopEnqueue(TiBindingRunLoop runLoop, TiBindingCallback callback, void *payload); + +/* TiBindingRunLoop's CallOnStart will add a callback that will be run + * every time a run loop is started, before the file is executed. Because + * the file the run loop uses is not parsed or run yet, there won't be a + * path, but this lets you enqeue methods to run immediately after the + * parsing, or set up changes to the runtime environment. The Titanium + * and other globals WILL be set during the callback's execution. + * + * These callbacks are invoked before: + * app.js is started + * A background service is started + * A window with an url property is being opened + */ +void TiBindingRunLoopCallOnStart(TiBindingCallback callback, void *payload); diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBlob.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBlob.h new file mode 100644 index 0000000..a2bf689 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBlob.h @@ -0,0 +1,225 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-Present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "ObjcProxy.h" +#import + +//@class TiFile; // forward declare +@class TiBlob; +@class UIImage; + +@protocol BlobExports + +// Properties (and accessors) +// FIXME: Change to TiFile* once it's been moved to a new obj-c proxy +/** + Returns the blob file. + @return The file. + */ +READONLY_PROPERTY(JSValue *, file, File); +/** + Returns height if the blob object is an image, _0_ otherwise. + */ +READONLY_PROPERTY(NSUInteger, height, Height); +/** + Returns height of image after factoring in EXIF orientation, _0_ otherwise. + */ +READONLY_PROPERTY(NSUInteger, uprightHeight, UprightHeight); +/** + Returns the data length. + */ +READONLY_PROPERTY(NSUInteger, length, Length); +/** + Returns the blob mime type. + @return The mime type string. + */ +READONLY_PROPERTY(NSString *, mimeType, MimeType); +/** + Returns the blob native path (Android compatibility). + @return The blob native path. + */ +READONLY_PROPERTY(NSString *, nativePath, NativePath); +/** + Return the data size. + + For file, data returns the size in bytes, for image, returns the width x height. + */ +READONLY_PROPERTY(NSUInteger, size, Size); +/** + Return a textual representation of the blob. + + The method converts data into a textual representation. Appropriate only for types TiBlobTypeFile and TiBlobTypeData. + */ +READONLY_PROPERTY(NSString *, text, Text); +/** + Returns width if the blob object is an image, _0_ otherwise. + */ +READONLY_PROPERTY(NSUInteger, width, Width); +/** + Returns width of image after factoring in EXIF orientation, _0_ otherwise. + */ +READONLY_PROPERTY(NSUInteger, uprightWidth, UprightWidth); + +// Methods +- (void)append:(TiBlob *)blob; +- (TiBlob *)imageAsCompressed:(float)compressionQuality; +- (TiBlob *)imageAsCropped:(NSDictionary *)options; +JSExportAs(imageAsResized, + -(TiBlob *)imageAsResized + : (NSUInteger)width withHeight + : (NSUInteger)height); +JSExportAs(imageAsThumbnail, + -(TiBlob *)imageAsThumbnail + : (NSUInteger)size withBorder + : (NSNumber *)optionalBorderSize withRadius + : (NSNumber *)optionalCornerRadius); +- (TiBlob *)imageWithAlpha; +JSExportAs(imageWithRoundedCorner, + -(TiBlob *)imageWithRoundedCorner + : (NSUInteger)cornerSize withBorder + : (NSNumber *)optionalBorderSize); +- (TiBlob *)imageWithTransparentBorder:(NSUInteger)size; +- (NSString *)toString; +- (JSValue *)toArrayBuffer; +- (JSValue *)arrayBuffer; + +@end + +typedef enum { + TiBlobTypeImage = 0, + TiBlobTypeFile = 1, + TiBlobTypeData = 2, + TiBlobTypeSystemImage = 3 +} TiBlobType; + +/** + Blob object class. + */ +@interface TiBlob : ObjcProxy { + @private + TiBlobType type; + NSString *mimetype; + NSData *data; + UIImage *image; + NSString *path; + BOOL imageLoadAttempted; + NSString *systemImageName; +} + +/** + Initialize the blob with an image. + @param image The image + @deprecated Only here for backwards compatibility with SDK < 8.1.0. Use `initWithImage:` instead. + */ +- (id)_initWithPageContext:(__unused id)pageContext andImage:(UIImage *)image __attribute__((deprecated)); + +/** + Initialize the blob with data. + @param data The raw data. + @param mimetype The data mime type. + @deprecated Only here for backwards compatibility with SDK < 8.1.0. Use `initWithData:mimeType:` instead. + */ +- (id)_initWithPageContext:(__unused id)pageContext andData:(NSData *)data mimetype:(NSString *)mimetype __attribute__((deprecated)); + +/** + Initialize the blob with contents of a file. + @param path The path to the file. + @deprecated Only here for backwards compatibility with SDK < 8.1.0. Use `initWithFile:` instead. + */ +- (id)_initWithPageContext:(__unused id)pageContext andFile:(NSString *)path __attribute__((deprecated)); + +/** + Initialize the blob with an image. + @param image The image + */ +- (id)initWithImage:(UIImage *)image; + +/** +Initialize the blob with a system image. +@param imageName The system image name +*/ +- (id)initWithSystemImage:(NSString *)imageName; + +/** + Returns the System Image Name . + @return The string or nil. + */ +- (NSString *)systemImageName; + +/** + Initialize the blob with data. + @param data_ The raw data. + @param mimetype_ The data mime type. + */ +- (id)initWithData:(NSData *)data_ mimetype:(NSString *)mimetype_; + +/** + Initialize the blob with data. Used for encrypted files/assets. + @param data_ The raw data. + @param path_ The path to the file. + */ +- (id)initWithData:(NSData *)data_ andPath:(NSString *)path_; + +/** + Initialize the blob with contents of a file. + @param path The path to the file. + */ +- (id)initWithFile:(NSString *)path; + +/** + Initialises blob with data. + @param data Th data to set. + */ +- (void)setData:(NSData *)data; + +/** + Initializes blob with image. + @param image The image to set. + */ +- (void)setImage:(UIImage *)image; + +/** + Sets the blob type. + @param mime The mime type string. + @param type The blob type. + */ +- (void)setMimeType:(NSString *)mime type:(TiBlobType)type; + +/** + Returns the blob type. + @return The blob type. + */ +- (TiBlobType)type; + +/** + Returns the blob raw data. + @return The raw data. + */ +- (NSData *)data; + +/** + Returns the blob image. + @return The image or _nil_ if the blob data cannot represent an image. + */ +- (UIImage *)image; + +/** + Returns the blob file path. + @return The file path. + */ +- (NSString *)path; + +/** + Tells the blob to write its data to a file. + @param path The file path. + @param error The error result if failed. + @return _YES_ if the write operation succeeded, _NO_ otherwise. + */ +- (BOOL)writeTo:(NSString *)path error:(NSError **)error; + +#pragma mark Image specific blob manipulations + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBuffer.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBuffer.h new file mode 100644 index 0000000..ed8c936 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBuffer.h @@ -0,0 +1,62 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-Present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "TiProxy.h" +#import + +@class TiBlob; // forward declare + +// TODO: Support array-style access of bytes +/** + The class represents a buffer of bytes. + */ +@interface TiBuffer : TiProxy { + NSMutableData *data; + NSNumber *byteOrder; +} +/** + Provides access to raw data. + */ +@property (nonatomic, retain) NSMutableData *data; + +// Public API +- (NSNumber *)append:(id)args; +- (NSNumber *)insert:(id)args; + +//This API is meant for the Javascript, and because of ARC conflating this with +//copy from NSObject(UIResponderStandardEditActions), we can't declare it here. +//Note that this does not affect calling from JS. +#if !__has_feature(objc_arc) +- (NSNumber *)copy:(id)args; +#endif + +- (TiBuffer *)clone:(id)args; +- (void)fill:(id)args; + +- (void)clear:(id)_void; +- (void)release:(id)_void; + +- (TiBlob *)toBlob:(id)_void; +- (NSString *)toString:(id)_void; + +/** + Provides access to the buffer length. + */ +@property (nonatomic, assign) NSNumber *length; + +/** + Provides access to the data byte order. + + The byte order values are: 1 - little-endian, 2 - big-endian. + */ +@property (nonatomic, retain) NSNumber *byteOrder; + +// SPECIAL NOTES: +// Ti.Buffer objects have an 'overloaded' Ti.Buffer[x] operation for x==int (making them behave like arrays). +// See the code for how this works. + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiColor.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiColor.h new file mode 100644 index 0000000..23679a1 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiColor.h @@ -0,0 +1,51 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "TiProxy.h" +#import + +/** + The UIColor proxy for cases where you need to return the color + that was set and you need to return the original value (like #fff) back + to the user - UIColor doesn't give you a way to get the RGB complements + so this proxy does it for you. + */ +@interface TiColor : TiProxy { + UIColor *color; + NSString *name; +} +/** + Returns color proxy by name. + @param name The color name. + @return The color proxy object. + */ ++ (id)colorNamed:(NSString *)name; + +/** + Initializes the color proxy with color and name. + @param color The color. + @param name The color name. + */ +- (id)initWithColor:(UIColor *)color name:(NSString *)name; + +/** + Returns the color. + @return The color. + */ +@property (nonatomic, readonly) UIColor *color; + +/** + Returns the color name. + @return The color name. + */ +@property (nonatomic, readonly) NSString *name; + +#pragma mark Deprecated + +- (UIColor *)_color; +- (NSString *)_name; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiComplexValue.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiComplexValue.h new file mode 100644 index 0000000..d135ef7 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiComplexValue.h @@ -0,0 +1,40 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +/** + The simple wrapper for properties which have "withObject" + argument semantics that need to be stored inside our proxy until the + view is available. currently the key/value store of the properties + makes it difficult to handle without marshalling them inside a wrapped + container like this. + */ + +#import + +@interface TiComplexValue : NSObject { + id value; + NSDictionary *properties; +} + +/** + Initializes the value. + @param value The value to set. + @param properties The additional properties. + */ +- (id)initWithValue:(id)value properties:(NSDictionary *)properties; + +/** + Returns the underlying value. + */ +@property (nonatomic, readonly) id value; + +/** + Returns the associated properties dictionary. + */ +@property (nonatomic, readonly) NSDictionary *properties; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiControllerProtocols.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiControllerProtocols.h new file mode 100644 index 0000000..714491d --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiControllerProtocols.h @@ -0,0 +1,106 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2013-Present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "TiViewProxy.h" +#import + +@class KrollPromise; + +/** + Protocol for orientation controller. + */ +@protocol TiOrientationController +@required +- (void)childOrientationControllerChangedFlags:(id)orientationController; +@property (nonatomic, readonly) TiOrientationFlags orientationFlags; +@property (nonatomic, readwrite, assign) id parentOrientationController; + +@end + +/** + Protocol for Window + */ +@protocol TiWindowProtocol + +- (KrollPromise *)open:(id)args; +- (KrollPromise *)close:(id)args; +- (BOOL)_handleOpen:(id)args; +- (BOOL)_handleClose:(id)args; +- (BOOL)opening; +- (BOOL)closing; +- (BOOL)isModal; +- (BOOL)hidesStatusBar; +- (BOOL)homeIndicatorAutoHide; +- (UIStatusBarStyle)preferredStatusBarStyle; + +// Containing controller will call these callbacks(appearance/rotation) on contained windows when it receives them. +- (void)viewWillAppear:(BOOL)animated; +- (void)viewWillDisappear:(BOOL)animated; +- (void)viewDidAppear:(BOOL)animated; +- (void)viewDidDisappear:(BOOL)animated; +- (void)presentationControllerDidDismiss:(UIPresentationController *)presentationController; +- (void)presentationControllerWillDismiss:(UIPresentationController *)presentationController; + +- (void)preferredContentSizeDidChangeForChildContentContainer:(id)container; +- (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id)coordinator; +- (void)systemLayoutFittingSizeDidChangeForChildContentContainer:(id)container; +- (void)willTransitionToTraitCollection:(UITraitCollection *)newCollection withTransitionCoordinator:(id)coordinator; + +// Focus callbacks from containing or hosting controller +- (void)gainFocus; +- (void)resignFocus; +- (BOOL)handleFocusEvents; + +// ViewController support. Always returns TiViewController (or subclass). +- (UIViewController *)hostingController; + +@property (nonatomic, readwrite, assign) BOOL isManaged; + +@end + +/** + Protocol for containment controller. Implemented by UIViewControllers that can host Titanium Windows + */ +@protocol TiControllerContainment +@required +- (BOOL)canHostWindows; +- (UIView *)hostingView; +//Called by light weight windows from their windowWillOpen, windowWillClose, windowDidOpen, windowDidClose methods +- (void)willOpenWindow:(id)theWindow; +- (void)willCloseWindow:(id)theWindow; +- (void)didOpenWindow:(id)theWindow; +- (void)didCloseWindow:(id)theWindow; +- (void)showControllerModal:(UIViewController *)theController animated:(BOOL)animated; +- (void)hideControllerModal:(UIViewController *)theController animated:(BOOL)animated; +@end + +@protocol TiRootControllerProtocol +/** + The protocol for root controller. + It is not intended to be implemented by clients. + @see TiRootViewController + */ + +@required + +//Background Control +- (void)setBackgroundImage:(UIImage *)arg; +- (void)setBackgroundColor:(UIColor *)arg; +- (void)dismissDefaultImage; + +//Keyboard stuff +- (BOOL)keyboardVisible; +- (void)dismissKeyboard; +- (void)didKeyboardFocusOnProxy:(TiViewProxy *)visibleProxy; +- (void)didKeyboardBlurOnProxy:(TiViewProxy *)blurredProxy; + +//ViewController stuff +- (TiOrientationFlags)getDefaultOrientations; +- (UIViewController *)topPresentedController; +- (UIViewController *)topContainerController; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiDefines.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiDefines.h new file mode 100644 index 0000000..6d3cdda --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiDefines.h @@ -0,0 +1,11 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2018-present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#ifndef TiDefines_h +#define TiDefines_h + +#endif /* TiDefines_h */ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiDimension.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiDimension.h new file mode 100644 index 0000000..e9ad591 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiDimension.h @@ -0,0 +1,159 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#ifdef TI_USE_AUTOLAYOUT +#import "LayoutConstraint.h" +#import "TiLayoutDimension.h" +#else + +#import "TiBase.h" +#include + +#define INCH_IN_CM 2.54 +#define INCH_IN_MM 25.4 + +//Not a class for speed reasons, like LayoutConstraint. + +typedef enum { + TiDimensionTypeUndefined, + TiDimensionTypeDip, + TiDimensionTypeAuto, + TiDimensionTypeAutoSize, + TiDimensionTypeAutoFill, + TiDimensionTypePercent, +} TiDimensionType; + +/** + The dimension struct. + */ +struct TiDimension { + TiDimensionType type; + CGFloat value; + //If type is TiDimensionTypeDip, value is a Dip constant, + //If type is TiDimensionTypePercent, value ranges from 0 (0%) to 1.0 (100%) +}; + +typedef struct TiDimension TiDimension; + +extern const TiDimension TiDimensionZero; +extern const TiDimension TiDimensionAuto; +extern const TiDimension TiDimensionAutoSize; +extern const TiDimension TiDimensionAutoFill; +extern const TiDimension TiDimensionUndefined; + +TiDimension TiDimensionMake(TiDimensionType type, CGFloat value); +TiDimension TiDimensionFromObject(id object); +CGFloat convertInchToPixels(CGFloat value); +CGFloat convertPixelsToDip(CGFloat value); +CGFloat convertDipToInch(CGFloat value); +CGFloat convertDipToDefaultUnit(CGFloat value); + +CGFloat convertDipToPixels(CGFloat value); + +TI_INLINE TiDimension TiDimensionDip(CGFloat value) +{ + return TiDimensionMake(TiDimensionTypeDip, value); +} + +TI_INLINE bool TiDimensionIsPercent(TiDimension dimension) +{ + return dimension.type == TiDimensionTypePercent; +} + +TI_INLINE bool TiDimensionIsAuto(TiDimension dimension) +{ + return dimension.type == TiDimensionTypeAuto; +} + +TI_INLINE bool TiDimensionIsAutoSize(TiDimension dimension) +{ + return dimension.type == TiDimensionTypeAutoSize; +} + +TI_INLINE bool TiDimensionIsAutoFill(TiDimension dimension) +{ + return dimension.type == TiDimensionTypeAutoFill; +} + +TI_INLINE bool TiDimensionIsDip(TiDimension dimension) +{ + return dimension.type == TiDimensionTypeDip; +} + +TI_INLINE bool TiDimensionIsUndefined(TiDimension dimension) +{ + return dimension.type == TiDimensionTypeUndefined; +} + +TI_INLINE bool TiDimensionEqual(TiDimension dimension1, TiDimension dimension2) +{ + if (dimension1.type != dimension2.type) { + return false; + } + if (TiDimensionIsDip(dimension1) || TiDimensionIsPercent(dimension1)) { + return dimension1.value == dimension2.value; + } + return true; +} + +TI_INLINE BOOL TiDimensionDidCalculateValue(TiDimension dimension, CGFloat boundingValue, CGFloat *result) +{ + switch (dimension.type) { + case TiDimensionTypeDip: + *result = dimension.value; + return YES; + case TiDimensionTypePercent: + *result = floorf(dimension.value * boundingValue); + return YES; + default: { + break; + } + } + return NO; +} + +TI_INLINE CGFloat TiDimensionCalculateValue(TiDimension dimension, CGFloat boundingValue) +{ + CGFloat result; + if (TiDimensionDidCalculateValue(dimension, boundingValue, &result)) { + return result; + } + return 0.0; +} + +TI_INLINE CGFloat TiDimensionCalculateRatio(TiDimension dimension, CGFloat boundingValue) +{ + switch (dimension.type) { + case TiDimensionTypePercent: + return dimension.value; + case TiDimensionTypeDip: + return dimension.value / boundingValue; + default: { + break; + } + } + return 0.0; +} + +TI_INLINE CGFloat TiDimensionCalculateMargins(TiDimension dimension1, TiDimension dimension2, CGFloat boundingValue) +{ + return boundingValue - (TiDimensionCalculateValue(dimension1, boundingValue) + TiDimensionCalculateValue(dimension2, boundingValue)); +} + +//TODO: Do these ALL have to be TI_INLINE? +TI_INLINE CGRect TiDimensionLayerContentCenter(TiDimension top, TiDimension left, TiDimension bottom, TiDimension right, CGSize imageSize) +{ + CGRect result; + result.origin.y = TiDimensionCalculateRatio(top, imageSize.height); + result.size.height = 1.0 - TiDimensionCalculateRatio(bottom, imageSize.height) - result.origin.y; + result.origin.x = TiDimensionCalculateRatio(left, imageSize.width); + result.size.width = 1.0 - TiDimensionCalculateRatio(right, imageSize.width) - result.origin.x; + + return result; +} + +#endif \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiEvaluator.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiEvaluator.h new file mode 100644 index 0000000..bf010a8 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiEvaluator.h @@ -0,0 +1,47 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "KrollContext.h" +#import + +@class TiHost; + +@protocol TiEvaluator + +- (TiHost *)host; + +- (NSString *)basename; + +@property (nonatomic, readwrite, retain) NSURL *currentURL; + +- (void)evalJSWithoutResult:(NSString *)code; + +- (void)evalFile:(NSString *)file; + +- (BOOL)evaluationError; + +// NOTE: this must only be called on a thread JS thread or an exception will occur +- (id)evalJSAndWait:(NSString *)code; + +- (void)fireEvent:(id)listener withObject:(id)obj remove:(BOOL)yn thisObject:(id)thisObject_; + +- (id)preloadForKey:(id)key name:(id)key; + +- (KrollContext *)krollContext; + +//Creates a kroll object to be used with the proxy. +- (id)registerProxy:(id)proxy; + +//Removes the kroll object and the proxy. +- (void)unregisterProxy:(id)proxy; + +//Returns YES if and only iff the proxy has been registered. +- (BOOL)usesProxy:(id)proxy; + +//Returns the kroll object created iff the proxy has been registered. Otherwise, returns nil. +- (id)krollObjectForProxy:(id)proxy; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiExceptionHandler.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiExceptionHandler.h new file mode 100644 index 0000000..2355baf --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiExceptionHandler.h @@ -0,0 +1,129 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2012 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import +#import + +@class KrollContext; +@class JSValue; +@class JSContext; + +#pragma mark - TiScriptError + +/** + * Script Error class + */ +@interface TiScriptError : NSObject + +/** + * Returns source URL where error happened. + */ +@property (nonatomic, readonly) NSString *sourceURL; + +/** + * Returns the actual source code line as a string where the error happened. + */ +@property (nonatomic, readonly) NSString *sourceLine; + +/** + * Returns line number where error happened. + */ +@property (nonatomic, readonly) NSInteger lineNo; + +/** + * Returns line column where error happened. + */ +@property (nonatomic, readonly) NSInteger column; + +/** + * Returns error related message + */ +@property (nonatomic, readonly) NSString *message; + +/** + * If created with a dictionary, returns the creating dictionary. Otherwise, may be nil. + */ +@property (nonatomic, readonly) NSDictionary *dictionaryValue; + +/** + * Returns the call stack as a static string. May or may not include the most recent function. + */ +@property (nonatomic, readonly) NSString *backtrace; + +/** + * Returns the native stack as a static string. + */ +@property (nonatomic, readonly) NSArray *nativeStack; + +/** + * Returns the pre-formated and cleaned native stack trace. + */ +@property (nonatomic, readonly) NSArray *formattedNativeStack; + +- (id)initWithMessage:(NSString *)message sourceURL:(NSString *)sourceURL lineNo:(NSInteger)lineNo; +- (id)initWithDictionary:(NSDictionary *)dictionary; + +/** + * Returns detailed description. + */ +- (NSString *)detailedDescription; + +@end + +#pragma mark - TiExceptionHandlerDelegate + +/** + * Exception handler delegate protocol. + */ +@protocol TiExceptionHandlerDelegate + +/** + * Called when a Objective-C exception is thrown. + * @param exception An original NSException object + */ +- (void)handleUncaughtException:(NSException *)exception; + +/** + * Called when a JavaScript script error occured. + * @param error An JavaScript script error + */ +- (void)handleScriptError:(TiScriptError *)error; + +@end + +#pragma mark - TiExceptionHandler + +/** + * The Exception Handler class. Singleton instance accessed via + */ +@interface TiExceptionHandler : NSObject + +/** + * Delegate for error/exception handling + * @see TiExceptionHandlerDelegate + */ +@property (nonatomic, assign) id delegate; + +/** + * Presents provided script error to user. Default behavior in development mode. + * @param error The script error object/ + */ +- (void)showScriptError:(TiScriptError *)error; + +/** + * Returns singleton instance of TiExceptionHandler. + * @return singleton instance + */ ++ (TiExceptionHandler *)defaultExceptionHandler; + +- (void)reportScriptError:(TiScriptError *)error; + +- (void)reportScriptError:(JSValueRef)errorRef inKrollContext:(KrollContext *)krollContext; + +- (void)reportScriptError:(JSValue *)error inJSContext:(JSContext *)context; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFile.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFile.h new file mode 100644 index 0000000..bff9473 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFile.h @@ -0,0 +1,63 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-Present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "TiProxy.h" + +@class TiBlob; // forward declare +/** + The main interface for File-based proxies -- this is in the API + since Filesystem implements it but we want to be able to have other + modules be able to cast to it transparently (such as database) + but without causing a compile-time dependency on Filesystem module. + */ +@interface TiFile : TiProxy { + @protected + NSString *path; + BOOL deleteOnExit; +} + +/** + Returns absolute path of the file on file system. + */ +@property (nonatomic, readonly) NSString *path; + +/** + Returns size of the file on file. + */ +@property (nonatomic, readonly) unsigned long long size; + +/** + Creates new instance of TiFile with specified path. + @param path The absolute path. + @return A created instance of TiFile. + */ +- (id)initWithPath:(NSString *)path; + +/** + Creates new instance of TiFile for a temporary file with specified path. + + The references file will be deleted on file system when the TiFile object is released. + @param path The absolute path. + @return A created instance of TiFile. + */ +- (id)initWithTempFilePath:(NSString *)path; + +/** + Creates a new instance of TiFile for a temporary file created with specified extension in the default temporary folder. + @param extension The temporary file extension. + @return A created instance of TiFile. + */ ++ (TiFile *)createTempFile:(NSString *)extension; + +/** + Returns the contents of the file as a TiBlob. + @return The TiBlob object. + */ +- (TiBlob *)blob; + +- (TiBlob *)toBlob:(id)args; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFilesystemFileProxy.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFilesystemFileProxy.h new file mode 100644 index 0000000..1482b2f --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFilesystemFileProxy.h @@ -0,0 +1,29 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2018 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "TiFile.h" + +@class TiFilesystemFileStreamProxy; + +@interface TiFilesystemFileProxy : TiFile { +} + +- (id)initWithFile:(NSString *)path; + +- (TiFilesystemFileStreamProxy *)open:(id)args; + ++ (TiFilesystemFileProxy *)makeTemp:(BOOL)isDirectory; + +@property (nonatomic, readonly) NSString *name; +@property (nonatomic, readonly) NSString *nativePath; +@property (nonatomic, readonly) NSNumber *readonly; +@property (nonatomic, readonly) NSNumber *writable; +@property (nonatomic, readonly) NSNumber *symbolicLink; +@property (nonatomic, readonly) NSNumber *executable; +@property (nonatomic, readonly) NSNumber *hidden; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFilesystemFileStreamProxy.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFilesystemFileStreamProxy.h new file mode 100644 index 0000000..a02570e --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFilesystemFileStreamProxy.h @@ -0,0 +1,17 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "TiStreamProxy.h" + +@interface TiFilesystemFileStreamProxy : TiStreamProxy { + + @private + NSFileHandle *fileHandle; + TiStreamMode mode; +} + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiGradient.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiGradient.h new file mode 100644 index 0000000..de6b8b6 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiGradient.h @@ -0,0 +1,54 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "TiProxy.h" + +#import "TiDimension.h" +#import "TiPoint.h" + +#import +#import + +typedef enum { + TiGradientTypeLinear, + TiGradientTypeRadial, +} TiGradientType; + +@interface TiGradient : TiProxy { + TiGradientType type; + + TiPoint *startPoint; + TiPoint *endPoint; + + TiDimension startRadius; + TiDimension endRadius; + + BOOL backfillStart; + BOOL backfillEnd; + + CGGradientRef cachedGradient; + + CFMutableArrayRef colorValues; + CGFloat *colorOffsets; //A -1 indicates a lack of entry. + NSUInteger arraySize; + int offsetsDefined; + @private +} + +@property (nonatomic, readwrite, assign) BOOL backfillStart; +@property (nonatomic, readwrite, assign) BOOL backfillEnd; + +- (void)paintContext:(CGContextRef)context bounds:(CGRect)bounds; + ++ (TiGradient *)gradientFromObject:(id)value proxy:(TiProxy *)proxy; + +@end + +@interface TiGradientLayer : CALayer { + TiGradient *gradient; +} +@property (nonatomic, readwrite, retain) TiGradient *gradient; +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiHost.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiHost.h new file mode 100644 index 0000000..406b26f --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiHost.h @@ -0,0 +1,51 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2020 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "Bridge.h" +#import "Module.h" +#import "TiEvaluator.h" +#import "TiProxy.h" +#import "TiStylesheet.h" + +@interface TiHost : NSObject { + NSMutableDictionary> *modules; + NSMutableDictionary> *contexts; + NSURL *startURL; + NSURL *baseURL; + TiStylesheet *stylesheet; + BOOL debugMode; +} +@property (nonatomic, assign) BOOL debugMode; +@property (nonatomic, assign) BOOL profileMode; + +- (NSString *)appID; +- (NSURL *)baseURL; +- (NSURL *)startURL; ++ (NSString *)resourcePath; +/** + * Get path relative to resources dir. + * @param url a file URL + */ ++ (NSString *)resourceRelativePath:(NSURL *)url; + +- (TiStylesheet *)stylesheet; + ++ (NSURL *)resourceBasedURL:(NSString *)fn baseURL:(NSString **)base; + +- (id)moduleNamed:(NSString *)name context:(id)context; + +- (void)fireEvent:(id)listener withObject:(id)obj remove:(BOOL)remove context:(id)context thisObject:(TiProxy *)thisObject_; +- (void)removeListener:(id)listener context:(id)context; +- (void)evaluateJS:(NSString *)js context:(id)context; + +- (void)registerContext:(id)context forToken:(NSString *)token; +- (void)unregisterContext:(id)context forToken:(NSString *)token; +- (id)contextForToken:(NSString *)token; + +- (KrollBridge *)krollBridge; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLayoutQueue.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLayoutQueue.h new file mode 100644 index 0000000..850b06d --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLayoutQueue.h @@ -0,0 +1,35 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#ifndef TI_USE_AUTOLAYOUT + +#import + +@class TiViewProxy; + +/** + Layout queue utility class. + */ +@interface TiLayoutQueue : NSObject { +} + +/** + Adds view proxy to the layout queue. + @param newViewProxy The view proxy to add. + */ ++ (void)addViewProxy:(TiViewProxy *)newViewProxy; + +/** + Forces view proxy refresh. + @param thisProxy The view proxy to layout. + */ ++ (void)layoutProxy:(TiViewProxy *)thisProxy; + ++ (void)resetQueue; +@end + +#endif \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLocale.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLocale.h new file mode 100644 index 0000000..5031738 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLocale.h @@ -0,0 +1,49 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +/** + The class represents locale. + */ +@interface TiLocale : NSObject { + NSString *currentLocale; + NSBundle *bundle; +} + +/** + Returns the current locate. + @see currentLocale + */ +@property (nonatomic, readwrite, retain) NSString *currentLocale; + +/** + Returns the bundle associated with the locale. + + Read-only property. + */ +@property (nonatomic, readwrite, retain) NSBundle *bundle; + +/** + Returns default locale. + */ ++ (NSString *)defaultLocale; + +/** + Sets current locale. + @param locale The locale to set. + */ ++ (void)setLocale:(NSString *)locale; + +/** + Return localized text for the key. + @param key The text key. + @param defaultValue The default value. + */ ++ (NSString *)getString:(NSString *)key comment:(NSString *)defaultValue; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLogServer.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLogServer.h new file mode 100644 index 0000000..1a9b867 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLogServer.h @@ -0,0 +1,76 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +@import Foundation; + +/** + * Important: Do NOT call NSLog() from this file. The app will go into an + * infinite loop of death. Use forcedNSLog() instead. + * + * iOS platform hackers: when you manually run this project from Xcode, it may + * be handy, but not necessary, to connect to the log server and here's some + * Node.js code to help: + * + * require('net').connect(10571) + * .on('data', data => process.stdout.write(data.toString())) + * .on('error', err => console.log('Error:', err)) + * .on('end', () => console.log('Disconnected from server')); + */ + +@interface TiLogServer : NSObject + +@property (nonatomic, assign) NSUInteger port; + +/** + * The default shared log server instance. + * + * @return id An initialized instance of this class + */ ++ (TiLogServer *)defaultLogServer; + +/** + * Writes the log message to all active connections. If there are no active + * connections, then the message is added to the log queue. + * @param message The message to log to the console + */ +- (void)log:(NSString *)message; + +/** + * Starts the log server. It only listens on the local loopback. This function + * is re-entrant. + */ +- (void)start; + +/** + * Stops the log server. This function is re-entrant. + */ +- (void)stop; + +@end + +/** + * Encapsulates connection state. + */ +@interface TiLogServerConnection : NSObject { + int socket; + dispatch_source_t readSource; +} + +/** + * Create a new socket by a given socket descriptor. + * + * @param _socket The non-negative file descriptor of the accepted socket + */ +- (id)initWithSocket:(int)_socket; + +/** + * Sends a raw data to the socket connection. + * + * @param buffer The socket buffer to send + */ +- (void)send:(dispatch_data_t *)buffer; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiModule.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiModule.h new file mode 100644 index 0000000..584c0cb --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiModule.h @@ -0,0 +1,86 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2020 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "Module.h" +#import "TiEvaluator.h" +#import "TiProxy.h" +#import "TiUtils.h" + +@class TiHost; + +/** + The base class for all Titanium modules + */ +@interface TiModule : TiProxy { + @protected + TiHost *host; + @private + CFMutableDictionaryRef classNameLookup; + NSString *moduleName; + id moduleAssets; +} + +// internal +- (void)_setName:(NSString *)name; +- (void)setPageContext:(id)evaluator; +- (void)setHost:(TiHost *)host; +- (id)createProxy:(NSArray *)args forName:(NSString *)name context:(id)evaluator; + +// module related utilities + +- (NSString *)moduleId; +- (BOOL)isJSModule; +- (NSData *)moduleJS; +- (NSData *)loadModuleAsset:(NSString *)fromPath; + +/* + Converts a resource name in to a URL. + @param name The name of the resource. + @return The URL of the resource + */ +- (NSURL *)moduleResourceURL:(NSString *)name; + +- (id)bindCommonJSModule:(NSString *)code; +- (id)bindCommonJSModuleForPath:(NSURL *)path; + +// lifecycle + +/** + Titanium Platform calls this method on startup. + */ +- (void)startup; + +/** + Titanium Platform calls this method on shutdown. + @param sender The sender of the event. + */ +- (void)shutdown:(id)sender; + +/** + Titanium Platform calls this method on suspend. + @param sender The sender of the event. + */ +- (void)suspend:(id)sender; + +/** + Titanium Platform calls this method on entering background. + @param sender The sender of the event. + */ +- (void)paused:(id)sender; + +/** + Titanium Platform calls this method on resume. + @param sender The sender of the event. + */ +- (void)resume:(id)sender; + +/** + Tells the module that it was resumed. + @param sender The sender of the event. + */ +- (void)resumed:(id)sender; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiPoint.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiPoint.h new file mode 100644 index 0000000..e512a5c --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiPoint.h @@ -0,0 +1,53 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "TiDimension.h" +#import "TiProxy.h" + +/** + The class for point proxy. + */ +@interface TiPoint : TiProxy { + TiDimension xDimension; + TiDimension yDimension; +} + +/** + Initializes the point object from point struct. + @param point_ The point struct. + */ +- (id)initWithPoint:(CGPoint)point_; + +- (id)initWithObject:(id)object; + +- (void)setValues:(id)object; + +/** + Provides access to point struct. + */ +@property (nonatomic, assign) CGPoint point; + +/** + Provides access to the point x coordinate. + */ +@property (nonatomic, retain) NSNumber *x; + +/** + Provides access to the point y coordiante. + */ +@property (nonatomic, retain) NSNumber *y; + +/** + Returns the point x coordinate as a dimension. + */ +@property (nonatomic, assign) TiDimension xDimension; + +/** + Returns the point y coordinate as a dimension. + */ +@property (nonatomic, assign) TiDimension yDimension; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiProxy.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiProxy.h new file mode 100644 index 0000000..484250e --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiProxy.h @@ -0,0 +1,346 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "KrollCallback.h" +#import "KrollObject.h" +#import "TiBindingRunLoop.h" +#import "TiEvaluator.h" +#import + +#ifndef TI_BASE_H +#import "TiBase.h" +#endif + +@class KrollBridge; +@class KrollObject; + +// Common exceptions to throw when the function call was improper +extern NSString *const TiExceptionInvalidType; +extern NSString *const TiExceptionNotEnoughArguments; +extern NSString *const TiExceptionRangeError; + +extern NSString *const TiExceptionOSError; + +// This is when a normally allowed command is not allowed (Say, adding a row to a table when it already is added elsewhere) +extern NSString *const TiExceptionInternalInconsistency; + +// Rare exceptions to indicate a bug in the titanium code (Eg, function that a subclass should have implemented) +extern NSString *const TiExceptionUnimplementedFunction; + +// Rare exception in the case of malloc failure +extern NSString *const TiExceptionMemoryFailure; + +@class TiHost; +@class TiProxy; + +typedef enum { + NativeBridge, + WebBridge +} TiProxyBridgeType; + +/** + The proxy delegate protocol + */ +@protocol TiProxyDelegate + +@required + +/** + Tells the delegate that the proxy property has changed. + @param key The property name. + @param oldValue An old value of the property. + @param newValue A new value of the property. + @param proxy The proxy where the property has changed. + */ +- (void)propertyChanged:(NSString *)key oldValue:(id)oldValue newValue:(id)newValue proxy:(TiProxy *)proxy; + +@optional + +/** + Tells the delegate to read proxy values. + @param keys The enumeration of keys to read. + */ +- (void)readProxyValuesWithKeys:(id)keys; + +/** + Tells the delegate that a listener has been added to the proxy. + @param type The listener type. + @param count The current number of active listeners + */ +- (void)listenerAdded:(NSString *)type count:(int)count; + +/** + Tells the delegate that a listener has been removed to the proxy. + @param type The listener type. + @param count The current number of active listeners after the remove + */ +- (void)listenerRemoved:(NSString *)type count:(int)count; + +/** + Tells the delegate to detach from proxy. + */ +- (void)detachProxy; + +@end + +SEL SetterForKrollProperty(NSString *key); +SEL SetterWithObjectForKrollProperty(NSString *key); + +void DoProxyDelegateChangedValuesWithProxy(UIView *target, NSString *key, id oldValue, id newValue, TiProxy *proxy); +void DoProxyDelegateReadValuesWithKeysFromProxy(UIView *target, id keys, TiProxy *proxy); +//Why are these here? Because they can be commonly used between TiUIView and TiUITableViewCell. + +/** + The base class for Titanium proxies. + */ +@interface TiProxy : NSObject { + @public + BOOL _bubbleParent; + + @private + NSMutableDictionary *listeners; + BOOL destroyed; + id modelDelegate; + NSURL *baseURL; + NSString *krollDescription; + pthread_rwlock_t listenerLock; + BOOL reproxying; + @protected + NSMutableDictionary *dynprops; + NSMutableArray *dynpropnames; + pthread_rwlock_t dynpropsLock; // NOTE: You must respect the dynprops lock when accessing dynprops elsewhere! + + int bridgeCount; + KrollObject *pageKrollObject; + id pageContext; + id executionContext; +} + +/* Convenience method, especially for autoloading modules. The selector + * is a class method taking one argument, which is the TiBindingRunLoop + * started. + */ ++ (void)performSelectorDuringRunLoopStart:(SEL)selector; + +- (void)boundBridge:(id)newBridge withKrollObject:(KrollObject *)newKrollObject; +- (void)unboundBridge:(id)oldBridge; + +@property (readonly, nonatomic) id pageContext; +@property (readonly, nonatomic) id executionContext; + +@property (readonly, nonatomic) int bindingRunLoopCount; +@property (readonly, nonatomic) TiBindingRunLoop primaryBindingRunLoop; +@property (readonly, nonatomic) NSArray *bindingRunLoopArray; + +/** + Provides access to proxy delegate. + */ +@property (nonatomic, retain, readwrite) id modelDelegate; + ++ (BOOL)shouldRegisterOnInit; + +#pragma mark Private + +- (id)_initWithPageContext:(id)context; +- (id)_initWithPageContext:(id)context args:(NSArray *)args; +- (void)_initWithProperties:(NSDictionary *)properties; + +/** + Whether or not the proxy has listeners for the specified event type. + @param type The event type. + @return _YES_ if the proxy has any listeners for the specified event type, _NO_ otherwise. + */ +- (BOOL)_hasListeners:(NSString *)type; + +/** + Tells the proxy to fire an event of the specified type to a listener. + @param type The event type. + @param obj The event properties. + @param listener The listener to fire event for. + @param thisObject The object representing 'this' in the context of the event handler. + */ +- (void)_fireEventToListener:(NSString *)type withObject:(id)obj listener:(KrollCallback *)listener thisObject:(TiProxy *)thisObject; + +- (id)_proxy:(TiProxyBridgeType)type; +- (void)contextWasShutdown:(id)context; +- (TiHost *)_host; +- (NSURL *)_baseURL; +- (void)_setBaseURL:(NSURL *)url; +- (void)_destroy; + +/** + Called to perform the proxy initial configuration. + */ +- (void)_configure; + +- (void)_dispatchWithObjectOnUIThread:(NSArray *)args; +- (void)didReceiveMemoryWarning:(NSNotification *)notification; +- (void)contextShutdown:(id)sender; +- (id)toString:(id)args; + +/** + Whether or not the proxy was destroyed. + @return _YES_ if destroyed, _NO_ otherwise. + */ +- (BOOL)destroyed; + +/** + Tells the proxy that it is in reproxying stage. + @param yn _YES_ if the proxy is in reproxying stage, _NO_ otherwise. + */ +- (void)setReproxying:(BOOL)yn; + +/** + Whether or not the proxy is in reproxying stage. + @return _YES_ if the proxy is in reproxying stage, _NO_ otherwise. + */ +- (BOOL)inReproxy; + +#pragma Subclassable + +/** + Returns proxy that should receive the event next in a case of bubbling. + Return nil if the class does not bubble or there is no parent. Optionally + return nil if bubbleParent is false -- i.e., bubbleParent must be checked + as well. + + Override this method for views that do not follow the standard children/parent + model (e.g., table rows). Note that this is NOT for use by JS, because this is + intentionally an iOS-only solution. + */ +- (TiProxy *)parentForBubbling; + +/** + Returns an array of properties that must be set on the proxy object in a specific order, ordered from first to last. + Any properties which are not in this list are set after the listed properties, and are set in undefined order. + + Override this method if the order in which properties are set is significant. + @return The array of property keys. + */ +- (NSArray *)keySequence; + +#pragma JS - facing +/** + Indicates that this proxy should honor bubbling of user events, if the proxy + is the type that has a parent to bubble to (This is primairly views, but may + have some exceptions). + */ +- (NSNumber *)bubbleParent; +- (void)setBubbleParent:(id)arg; + +#pragma mark Utility +- (KrollObject *)krollObjectForContext:(KrollContext *)context; + +- (BOOL)retainsJsObjectForKey:(NSString *)key; + +//TODO: Find everywhere were we retain a proxy in a non-assignment way, and do remember/forget properly. + +/** + Tells the proxy to associate another proxy with it. + + The associated proxy will be retained. + Note: rememberProxy/forgetProxy are not reference counted - multiple calls to are all undone by a single call to + @param rememberedProxy The proxy to remember. + @see forgetProxy: + */ +- (void)rememberProxy:(TiProxy *)rememberedProxy; + +/** + Tells the proxy to disassociate another proxy from it. + + The deassociated proxy will be released. + Note: rememberProxy/forgetProxy are not reference counted - multiple calls to are all undone by a single call to + @param forgottenProxy The proxy to forget. + @see rememberProxy: + */ +- (void)forgetProxy:(TiProxy *)forgottenProxy; + +//These are when, say, a window is opened, so you want to do JSValueProtect to make SURE it doesn't go away. + +/** + Tells the proxy to retain associated JS object. + */ +- (void)rememberSelf; + +/** + Tells the proxy to release associated JS object. + */ +- (void)forgetSelf; + +//SetCallback is done internally by setValue:forUndefinedKey: +- (void)fireCallback:(NSString *)type withArg:(NSDictionary *)argDict withSource:(id)source; +- (void)fireCallback:(NSString *)type withArg:(NSDictionary *)argDict withSource:(id)source withHandler:(void (^)(id result))handler; + +#pragma mark Public + +/** + Returns an enumeration of keys of all properties set on the proxy object. + @return The enumeration of property keys. + */ +- (id)allKeys; + ++ (void)throwException:(NSString *)reason subreason:(NSString *)subreason location:(NSString *)location; +- (void)throwException:(NSString *)reason subreason:(NSString *)subreason location:(NSString *)location; +- (void)addEventListener:(NSArray *)args; +- (void)removeEventListener:(NSArray *)args; + +- (void)fireEvent:(id)args; +- (void)fireEvent:(NSString *)type withObject:(id)obj; + +//For UI events: +- (void)fireEvent:(NSString *)type withObject:(id)obj propagate:(BOOL)yn; + +//For events that report an error or success +- (void)fireEvent:(NSString *)type withObject:(id)obj errorCode:(NSInteger)code message:(NSString *)message; + +//What classes should actually override: +- (void)fireEvent:(NSString *)type withObject:(id)obj propagate:(BOOL)propagate reportSuccess:(BOOL)report errorCode:(NSInteger)code message:(NSString *)message; + +//Temporary override point during the transition. Both the one below AND the one above should be overridden if needed. +- (void)fireEvent:(NSString *)type withObject:(id)obj withSource:(id)source propagate:(BOOL)propagate reportSuccess:(BOOL)report errorCode:(int)code message:(NSString *)message; + +//** Deprecated: bubbling is done at a lower point so source is always 'self' at this point. +- (void)fireEvent:(NSString *)type withObject:(id)obj withSource:(id)source; +- (void)fireEvent:(NSString *)type withObject:(id)obj withSource:(id)source propagate:(BOOL)yn; + +/** + Returns a dictionary of all properties set on the proxy object. + @return The dictionary containing all properties. + */ +- (NSDictionary *)allProperties; + +/** + Initializes a new property on the proxy object. + @param name The property name. + @param value The initial value to set on the property. + */ +- (void)initializeProperty:(NSString *)name defaultValue:(id)value; + +/** + Sets or replaces the property on the proxy object. + @param value The new value. + @param key The property key. + @param notify The flag to send value change notification to model delegate. + */ +- (void)replaceValue:(id)value forKey:(NSString *)key notification:(BOOL)notify; + +/** + Removes the property on the proxy object. + @param key The property key. + */ +- (void)deleteKey:(NSString *)key; + +- (id)sanitizeURL:(id)value; + +- (void)setExecutionContext:(id)context; + ++ (id)createProxy:(NSString *)qualifiedName withProperties:(NSDictionary *)properties inContext:(id)context; + +- (NSString *)apiName; + +- (JSContext *)currentContext; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiPublicAPI.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiPublicAPI.h new file mode 100644 index 0000000..5cea2ad --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiPublicAPI.h @@ -0,0 +1,72 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +/* You would expect these macros to be used in the header files, but because they can generate checking code, they should be in the .m files instead.*/ + +/* This declares that the class is publically viewable, and that should be considered a subclass of the closest superclass that also marked with a TI_PUBLIC_CLASS */ +/* To speed lookup, this will produce a method on the module to generate an instance.*/ +#define TI_PUBLIC_CLASS(moduleName, className) \ + @class moduleName##Module; \ + @interface moduleName \ + ##Module(className##_generation) \ + - (id)create##className : (id)args; \ + @end \ + @implementation moduleName \ + ##Module(className##_generation) \ + - (TiProxy *)create##className : (id)args \ + { \ + TiProxy *result = [[Ti##moduleName##className##Proxy alloc] _initWithPageContext:[self executionContext] args:args]; \ + return [result autorelease]; \ + } \ + @end + +#ifdef DEBUG + +#define TI_PUBLIC_METHOD(methodName, returnType) \ + -(returnType)methodName : (id)args \ + { \ + int argCount = [args count]; + +#define TI_PUBLIC_METHOD_ARG_OBJECT(argPosition, argName, argType, argOptional, argCheck) \ + argType *argName = nil; \ + if (argCount < argPosition) { \ + argType *argName = [(NSArray *)args objectAtIndex:argPosition]; \ + if (![argName isKindOfClass:[argType class]]) { \ + [self throwException:TiExceptionInvalidType \ + subreason: \ + [NSString stringWithFormat:@"argument #%d (%s) needs to be of type %s, but was %@ instead.", \ + argPosition, #argName, #argType, [argName class]] \ + location:CODELOCATION]; \ + } \ + argCheck; \ + } else if (!argOptional) { \ + [self throwException:TiExceptionNotEnoughArguments \ + subreason:[NSString stringWithFormat:@"argument #%d (%s) was missing and is not optional", argPosition, #argName] \ + location:CODELOCATION]; \ + } + +#define TI_PUBLIC_METHOD_END_ARGS(methodName, returnType) \ + if (![@"void" isEqualToString:@"" #returnType]) { \ + return [self methodName##_CONTINUE:args]; \ + } \ + } \ + -(returnType)methodName##_CONTINUE : (id)args + +#else + +#define TI_PUBLIC_METHOD(methodName, returnType) \ + //No-op + +#define TI_PUBLIC_METHOD_ARG_OBJECT(argPosition, argName, argType, argOptional, argCheck) \ + //No-op + +#define TI_PUBLIC_METHOD_END_ARGS(methodName, returnType) \ + -(returnType)methodName : (id)args + +#endif //Debug diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiRect.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiRect.h new file mode 100644 index 0000000..067a520 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiRect.h @@ -0,0 +1,54 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "TiProxy.h" + +/** + The class for rectangle object proxy. + */ +@interface TiRect : TiProxy { + CGRect rect; +} + +/** + Initializes the rect proxy from rect struct. + @param rect_ The rect struct. + */ +- (void)setRect:(CGRect)rect_; + +/** + Returns rect struct. + @return The rect struct. + */ +- (CGRect)rect; + +/** + Provides access to rectangle x coordinate. + */ +@property (nonatomic, retain) NSNumber *x; + +/** + Provides access to rectangle y coordinate. + */ +@property (nonatomic, retain) NSNumber *y; + +/** + Provides access to rectangle width. + */ +@property (nonatomic, retain) NSNumber *width; + +/** + Provides access to rectangle height. + */ +@property (nonatomic, retain) NSNumber *height; + +/** + Converts a rect to the specified unit. Assumes that the current rect size is in dip. + @param unit The unit type (as a string) to convert the rect to. + */ +- (void)convertToUnit:(NSString *)unit; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiRootViewController.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiRootViewController.h new file mode 100644 index 0000000..a0e05d6 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiRootViewController.h @@ -0,0 +1,72 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "TiControllerProtocols.h" +#import + +@interface TiRootViewController : UIViewController { + //Default background properties + UIColor *bgColor; + UIImage *bgImage; + UIView *hostView; + NSInteger curTransformAngle; + BOOL forceLayout; + UIView *defaultImageView; + + //Keyboard stuff + BOOL updatingAccessoryView; + UIView *enteringAccessoryView; //View that will enter. + UIView *accessoryView; //View that is onscreen. + UIView *leavingAccessoryView; //View that is leaving the screen. + TiViewProxy *keyboardFocusedProxy; //View whose becoming key affects things. + + CGRect startFrame; //Where the keyboard was before the handling + CGRect targetedFrame; //The keyboard place relative to where the accessoryView is moving; + CGRect endFrame; //Where the keyboard will be after the handling + BOOL keyboardVisible; //If false, use enterCurve. If true, use leaveCurve. + UIViewAnimationCurve enterCurve; + CGFloat enterDuration; + UIViewAnimationCurve leaveCurve; + CGFloat leaveDuration; + + //Orientation Stuff + UIInterfaceOrientation orientationHistory[4]; + BOOL forcingStatusBarOrientation; + BOOL isCurrentlyVisible; + TiOrientationFlags defaultOrientations; + NSMutableArray *containedWindows; + NSMutableArray *modalWindows; + BOOL forcingRotation; + BOOL statusBarInitiallyHidden; + BOOL viewControllerControlsStatusBar; + UIStatusBarStyle defaultStatusBarStyle; + + UIInterfaceOrientation deviceOrientation; + + BOOL statusBarIsHidden; + BOOL statusBarVisibilityChanged; + NSInteger activeAlertControllerCount; +} + +//Titanium Support +- (CGRect)resizeView; +- (void)repositionSubviews; +- (UIView *)topWindowProxyView; +- (NSUInteger)supportedOrientationsForAppDelegate; +- (void)incrementActiveAlertControllerCount; +- (void)decrementActiveAlertControllerCount; +- (UIViewController *)topPresentedController; +- (UIInterfaceOrientation)lastValidOrientation:(TiOrientationFlags)orientationFlags; +- (void)updateStatusBar; +@property (nonatomic, readonly) BOOL statusBarInitiallyHidden; +@property (nonatomic, readonly) UIStatusBarStyle defaultStatusBarStyle; +@property (nonatomic, readonly) BOOL statusBarVisibilityChanged; +@property (nonatomic, readonly) TiViewProxy *keyboardFocusedProxy; +- (void)shutdownUi:(id)arg; +- (UIImage *)defaultImageForOrientation:(UIDeviceOrientation)orientation resultingOrientation:(UIDeviceOrientation *)imageOrientation idiom:(UIUserInterfaceIdiom *)imageIdiom; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiSharedConfig.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiSharedConfig.h new file mode 100644 index 0000000..c2ab512 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiSharedConfig.h @@ -0,0 +1,127 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2018-present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import +#import + +/** + Contains information about the app and build-related meta data. + */ +@interface TiSharedConfig : NSObject + +NS_ASSUME_NONNULL_BEGIN + +/** + Name of the application, e.g. "MyApp". + */ +@property (nonatomic, strong) NSString *applicationName; + +/** + Application ID, e.g. "com.example.appid". + */ +@property (nonatomic, strong) NSString *applicationID; + +/** + Version of the application, e.g. "1.0.0". + */ +@property (nonatomic, strong) NSString *applicationVersion; + +/** + Publisher of the application, if set. + */ +@property (nonatomic, strong, nullable) NSString *applicationPublisher; + +/** + URL of the application, if set. + */ +@property (nonatomic, strong, nullable) NSURL *applicationURL; + +/** + Copyright of the application, if set. + */ +@property (nonatomic, strong, nullable) NSString *applicationCopyright; + +/** + Description of the application. + */ +@property (nonatomic, strong, nullable) NSString *applicationDescription; + +/** + Deploy type of the application, e.g. "development", currently **unused**. + */ +@property (nonatomic, strong, nullable) NSString *applicationDeployType; + +/** + GUID of the application, e.g. "11111111-1111-1111-1111-111111111111". + */ +@property (nonatomic, strong) NSString *applicationGUID; + +/** + Path to the resources directory, if custom set, e.g. "Resources". Currently + set to an empty string to indicate the default behavior, can change in the future. + */ +@property (nonatomic, strong, nullable) NSString *applicationResourcesDirectory; + +/** + Build type of the application, currently **unused. + */ +@property (nonatomic, strong, nullable) NSString *applicationBuildType; + +/** + Build hash, only used internally. + */ +@property (nonatomic, strong, nullable) NSString *buildHash; + +/** + Build date, only used internally. + */ +@property (nonatomic, strong, nullable) NSString *buildDate; + +/** + SDK version, only used internally. + */ +@property (nonatomic, strong, nullable) NSString *sdkVersion; + +/** + Indicates whether or not APSAnalytics is currently enabled. + Defaults to `true` for new application, can be disabled via `false` + in the tiapp.xml. + */ +@property (nonatomic, assign, getter=isAnalyticsEnabled) BOOL analyticsEnabled; + +/** + Indicates whether or not the error screen should be shown if an + error occurs. Defaults to `true` for `production` and `test` deploy types, + `false` for deploy type `development`. Can be overriden by the `hide-error-controller` + CLI parameter. + */ +@property (nonatomic, assign) BOOL showErrorController; + +/** + Default background color from tiapp.xml + + #ff0000 + + */ +@property (nonatomic, strong, nullable) UIColor *defaultBackgroundColor; + +/** + Indicates whether or not TiLogServer is currently enabled. + */ +@property (nonatomic, assign) BOOL logServerEnabled; + +/** + Indicates whether debug is enabled or not. + */ + +@property (nonatomic, assign) BOOL debugEnabled; + ++ (TiSharedConfig *)defaultConfig; + +NS_ASSUME_NONNULL_END + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiStreamProxy.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiStreamProxy.h new file mode 100644 index 0000000..95c2aa7 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiStreamProxy.h @@ -0,0 +1,43 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2011 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "KrollCallback.h" +#import "TiBase.h" +#import "TiBuffer.h" +#import "TiProxy.h" +#import + +// This is meant to be a largely "virtual" class which defines the following behaviors: +// 1. Interprets read()/write() calls to the appropriate interal function +// 2. Provide protocol defining necessary internal functions; read/write, asynch read/write, readAll, +@protocol TiStreamInternal +@required +// DEFINED BEHAVIOR: callback != nil indicates an asynch operation. length==0 indicates to read all available data into +// the buffer (and grow it if necessary). These methods MAY be called by classes other than the TiStreamProxy ducktype (i.e. Ti.Stream module methods) +- (NSInteger)readToBuffer:(TiBuffer *)buffer offset:(NSInteger)offset length:(NSInteger)length callback:(KrollCallback *)callback; +- (NSInteger)writeFromBuffer:(TiBuffer *)buffer offset:(NSInteger)offset length:(NSInteger)length callback:(KrollCallback *)callback; + +// Used for writeStream/pumping +- (NSInteger)writeToStream:(id)output chunkSize:(NSInteger)size callback:(KrollCallback *)callback; +- (void)pumpToCallback:(KrollCallback *)callback chunkSize:(NSInteger)size asynch:(BOOL)asynch; + +// Public API : No defined behavior +- (NSNumber *)isReadable:(id)_void; // PUBLIC API FUNCTION +- (NSNumber *)isWritable:(id)_void; // PUBLIC API FUNCTION + +- (void)close:(id)_void; // PUBLIC API FUNCTION +@end + +// TODO: We absolutely MUST discuss public/private API separation and how it interacts with ducktypes. +@interface TiStreamProxy : TiProxy { +} + +// Public API +- (NSNumber *)read:(id)args; +- (NSNumber *)write:(id)write; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiStylesheet.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiStylesheet.h new file mode 100644 index 0000000..8ad8188 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiStylesheet.h @@ -0,0 +1,22 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +@interface TiStylesheet : NSObject { + NSDictionary *tagsDict; + NSDictionary *tagsDictByDensity; + NSDictionary *classesDict; + NSDictionary *classesDictByDensity; + NSDictionary *idsDict; + NSDictionary *idsDictByDensity; +} + +- (BOOL)basename:(NSString *)basename density:(NSString *)density hasTag:(NSString *)tagName; +- (id)stylesheet:(NSString *)objectId density:(NSString *)density basename:(NSString *)basename classes:(NSArray *)classes tags:(NSArray *)tags; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiTab.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiTab.h new file mode 100644 index 0000000..d7f5199 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiTab.h @@ -0,0 +1,42 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2021 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "TiTabGroup.h" + +@class TiProxy; +@class TiWindowProxy; +@class KrollPromise; + +/** + The protocol for tabs. + */ +@protocol TiTab + +@required + +/** + Returns the tag group associated with the tab. + @return A tab group. + */ +- (TiProxy *)tabGroup; + +/** + Returns the navigation controller associated with the tab. + @return A navigation controller. + */ +- (UINavigationController *)controller; + +- (KrollPromise *)openWindow:(NSArray *)args; +- (KrollPromise *)closeWindow:(NSArray *)args; + +/** + Tells the tab that its associated window is closing. + @param window The window being closed. + @param animated _YES_ if window close is animated, _NO_ otherwise. + */ +- (void)windowClosing:(TiWindowProxy *)window animated:(BOOL)animated; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiTabGroup.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiTabGroup.h new file mode 100644 index 0000000..849619b --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiTabGroup.h @@ -0,0 +1,21 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +/** + The tab group protocol + */ +@protocol TiTabGroup + +/** + Returns the tab bar for the tag group. + @return The tag bar. + */ +- (UITabBar *)tabbar; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiThreading.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiThreading.h new file mode 100644 index 0000000..9e68b81 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiThreading.h @@ -0,0 +1,103 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2017 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +#define ENSURE_UI_THREAD_1_ARG(x) \ + if (![NSThread isMainThread]) { \ + SEL callback = _cmd; \ + TiThreadPerformOnMainThread( \ + ^{ \ + [self performSelector:callback withObject:x]; \ + }, \ + NO); \ + return; \ + } + +#define ENSURE_UI_THREAD_0_ARGS ENSURE_UI_THREAD_1_ARG(nil) + +//TODO: Is there any time where @selector(x:) is not _sel (IE, the called method for 1 arg? +//Similarly, if we already have x:withObject: as a selector in _sel, could we +//We may want phase out asking the method explicitly when the compiler can do it for us +//For now, leaving it unchanged and using _X_ARG(S) to denote no method name used. + +#define ENSURE_UI_THREAD(x, y) \ + if (![NSThread isMainThread]) { \ + TiThreadPerformOnMainThread( \ + ^{ \ + [self x:y]; \ + }, \ + NO); \ + return; \ + } + +#define ENSURE_IOS_API(version, message) \ + if ([[[UIDevice currentDevice] systemVersion] compare:version options:NSNumericSearch] != NSOrderedAscending) { \ + NSLog(@"[WARN] %@ is only available on iOS %@ and later.", message, version); \ + return; \ + } + +//TODO: Now that we have TiThreadPerform, we should optimize this out. +#define ENSURE_UI_THREAD_WITH_OBJ(x, y, z) \ + if (![NSThread isMainThread]) { \ + id o = [NSArray arrayWithObjects:@"" #x, NULL_IF_NIL(y), NULL_IF_NIL(z), nil]; \ + TiThreadPerformOnMainThread( \ + ^{ \ + [self _dispatchWithObjectOnUIThread:o]; \ + }, \ + NO); \ + return; \ + } + +#define BEGIN_UI_THREAD_PROTECTED_VALUE(method, type) \ + -(id)_sync_##method : (NSMutableArray *)array_ \ + { \ + \ + type *result = nil; + +#define END_UI_THREAD_PROTECTED_VALUE(method) \ + if (array_ != nil) \ + [array_ addObject:result]; \ + return result; \ + } \ + -(id)method \ + { \ + if (![NSThread isMainThread]) { \ + __block id result = nil; \ + __block id bself = self; \ + TiThreadPerformOnMainThread( \ + ^{ \ + result = [[bself _sync_##method:nil] retain]; \ + }, \ + YES); \ + return [result autorelease]; \ + } \ + return [self _sync_##method:nil]; \ + } + +#ifdef VERBOSE + +#define WARN_IF_BACKGROUND_THREAD \ + if (![NSThread isMainThread]) { \ + DeveloperLog(@"[WARN] %@ not running on the main thread.", CODELOCATION); \ + } + +#define WARN_IF_BACKGROUND_THREAD_OBJ \ + if (![NSThread isMainThread]) { \ + DeveloperLog(@"[WARN] %@%@ was not running on the main thread.", NSStringFromClass([self class]), CODELOCATION); \ + } + +#else + +#define WARN_IF_BACKGROUND_THREAD \ + { \ + } +#define WARN_IF_BACKGROUND_THREAD_OBJ \ + { \ + } + +#endif //VERBOSE diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiToolbar.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiToolbar.h new file mode 100644 index 0000000..6f3b8bf --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiToolbar.h @@ -0,0 +1,23 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "TiViewProxy.h" + +// marker interface for toolbars + +/** + Protocol for toolbar classes. + */ +@protocol TiToolbar +@required + +/** + Returns the underlying toolbar. + @return The toolbar. + */ +- (UIToolbar *)toolbar; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIView.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIView.h new file mode 100644 index 0000000..75b222f --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIView.h @@ -0,0 +1,298 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "LayoutConstraint.h" +#import "TiAnimation.h" +#import "TiGradient.h" +#import "TiProxy.h" +#ifdef TI_USE_AUTOLAYOUT +#import "TiLayoutView.h" +#endif +//By declaring a scrollView protocol, TiUITextWidget can access +@class TiUIView; + +/** + The protocol for scrolling. + */ +@protocol TiScrolling + +/** + Tells the scroll view that keyboard did show. + @param keyboardTop The keyboard height. + */ +- (void)keyboardDidShowAtHeight:(CGFloat)keyboardTop; + +/** + Tells the scroll view to scroll to make the specified view visible. + @param firstResponderView The view to make visible. + @param keyboardTop The keyboard height. + */ +- (void)scrollToShowView:(TiUIView *)firstResponderView withKeyboardHeight:(CGFloat)keyboardTop; + +@end + +void InsetScrollViewForKeyboard(UIScrollView *scrollView, CGFloat keyboardTop, CGFloat minimumContentHeight); +void OffsetScrollViewForRect(UIScrollView *scrollView, CGFloat keyboardTop, CGFloat minimumContentHeight, CGRect responderRect); + +void ModifyScrollViewForKeyboardHeightAndContentHeightWithResponderRect(UIScrollView *scrollView, CGFloat keyboardTop, CGFloat minimumContentHeight, CGRect responderRect); + +@class TiViewProxy; + +/** + Base class for all Titanium views. + @see TiViewProxy + */ +#ifdef TI_USE_AUTOLAYOUT +@interface TiUIView : TiLayoutView +#else +@interface TiUIView : UIView +#endif +{ + @protected + BOOL configurationSet; + + @private + TiProxy *proxy; + TiAnimation *animation; + + CAShapeLayer *_shadowLayer; + CALayer *gradientLayer; + CALayer *bgdImageLayer; + CAShapeLayer *_borderLayer; + int clipMode; + + CGAffineTransform virtualParentTransform; + id transformMatrix; + BOOL childrenInitialized; + BOOL touchEnabled; + + unsigned int animationDelayGuard; + unsigned int animationDelayGuardForLayout; + + // Touch detection + BOOL changedInteraction; + BOOL handlesTouches; + UIView *touchDelegate; // used for touch delegate forwarding + BOOL animating; + + UITapGestureRecognizer *singleTapRecognizer; + UITapGestureRecognizer *doubleTapRecognizer; + UITapGestureRecognizer *twoFingerTapRecognizer; + UIPinchGestureRecognizer *pinchRecognizer; + UISwipeGestureRecognizer *leftSwipeRecognizer; + UISwipeGestureRecognizer *rightSwipeRecognizer; + UISwipeGestureRecognizer *upSwipeRecognizer; + UISwipeGestureRecognizer *downSwipeRecognizer; + UILongPressGestureRecognizer *longPressRecognizer; + + //Resizing handling + CGSize oldSize; + + // Image capping/backgrounds + id backgroundImage; + BOOL backgroundRepeat; + TiDimension leftCap; + TiDimension topCap; +} + +/** + Returns current status of the view animation. + @return _YES_ if view is being animated, _NO_ otherwise. + */ +- (BOOL)animating; + +/** + Provides access to a proxy object of the view. + */ +@property (nonatomic, readwrite, assign) TiProxy *proxy; + +/** + Provides access to touch delegate of the view. + + Touch delegate is the control that receives all touch events. + */ +@property (nonatomic, readwrite, assign) UIView *touchDelegate; + +/** + Returns view's transformation matrix. + */ +@property (nonatomic, readonly) id transformMatrix; + +/** + Provides access to background image of the view. + */ +@property (nonatomic, readwrite, retain) id backgroundImage; + +/** + Returns enablement of touch events. + @see updateTouchHandling + */ +@property (nonatomic, readonly) BOOL touchEnabled; +@property (nonatomic, readonly) CGSize oldSize; + +@property (nonatomic, readonly) UITapGestureRecognizer *singleTapRecognizer; +@property (nonatomic, readonly) UITapGestureRecognizer *doubleTapRecognizer; +@property (nonatomic, readonly) UITapGestureRecognizer *twoFingerTapRecognizer; +@property (nonatomic, readonly) UIPinchGestureRecognizer *pinchRecognizer; +@property (nonatomic, readonly) UISwipeGestureRecognizer *leftSwipeRecognizer; +@property (nonatomic, readonly) UISwipeGestureRecognizer *rightSwipeRecognizer; +@property (nonatomic, readonly) UILongPressGestureRecognizer *longPressRecognizer; + +- (void)configureGestureRecognizer:(UIGestureRecognizer *)gestureRecognizer; +- (UIGestureRecognizer *)gestureRecognizerForEvent:(NSString *)event; +- (void)handleListenerRemovedWithEvent:(NSString *)event; +- (void)handleListenerAddedWithEvent:(NSString *)event; +- (BOOL)proxyHasGestureListeners; +- (void)ensureGestureListeners; +- (void)updateClipping; +- (UIBezierPath *)bezierPathOfView; +/** + Returns CA layer for the background image of the view. + */ +- (CALayer *)backgroundImageLayer; +/** + Returns CA layer for the background gradient of the view. + */ +- (CALayer *)gradientLayer; +/** + Returns CA layer for shadow component of the view. + */ +- (CAShapeLayer *)shadowLayer; +/** + Tells the view to start specified animation. + @param newAnimation The animation to start. + */ +- (void)animate:(TiAnimation *)newAnimation; + +#pragma mark Framework + +/** + Performs view's initialization procedure. + */ +- (void)initializeState; + +/** + Performs view's configuration procedure. + */ +- (void)configurationSet; + +/** + Sets virtual parent transformation for the view. + @param newTransform The transformation to set. + */ +- (void)setVirtualParentTransform:(CGAffineTransform)newTransform; +- (void)setTransform_:(id)matrix; + +/* + Tells the view to load an image. + @param image The string referring the image. + @return The loaded image. + */ +- (UIImage *)loadImage:(id)image; + +- (id)proxyValueForKey:(NSString *)key; +- (void)readProxyValuesWithKeys:(id)keys; + +/* + Tells the view to change its proxy to the new one provided. + @param newProxy The new proxy to set on the view. + @param deep true for deep transfer + */ +- (void)transferProxy:(TiViewProxy *)newProxy deep:(BOOL)deep; + +/* + Returns whether the view tree matches proxy tree for later transfer. + @param proxy The proxy to validate view tree with. + @param deep true for deep validation + */ +- (BOOL)validateTransferToProxy:(TiViewProxy *)proxy deep:(BOOL)deep; + +/** + Tells the view to update its touch handling state. + @see touchEnabled + */ +- (void)updateTouchHandling; + +/** + Tells the view that its frame and/or bounds has chnaged. + @param frame The frame rect + @param bounds The bounds rect + */ +- (void)frameSizeChanged:(CGRect)frame bounds:(CGRect)bounds; + +/** + Tells the view to make its root view a first responder. + */ +- (void)makeRootViewFirstResponder; +- (void)animationStarted; +- (void)animationCompleted; + +/** + The convenience method to raise an exception for the view. + @param reason The exception reason. + @param subreason The exception subreason. + @param location The exception location. + */ ++ (void)throwException:(NSString *)reason subreason:(NSString *)subreason location:(NSString *)location; + +- (void)throwException:(NSString *)reason subreason:(NSString *)subreason location:(NSString *)location; + +/** + Returns default enablement for interactions. + + Subclasses may override. + @return _YES_ if the control has interactions enabled by default, _NO_ otherwise. + */ +- (BOOL)interactionDefault; + +- (BOOL)interactionEnabled; + +/** + Whether or not the view has any touchable listeners attached. + @return _YES_ if the control has any touchable listener attached, _NO_ otherwise. + */ +- (BOOL)hasTouchableListener; + +- (void)handleControlEvents:(UIControlEvents)events; + +- (void)setVisible_:(id)visible; + +- (void)setBackgroundImage_:(id)value; + +- (UIView *)gradientWrapperView; +- (void)checkBounds; + +@property (nonatomic, readonly) id accessibilityElement; + +- (void)setAccessibilityLabel_:(id)accessibilityLabel; +- (void)setAccessibilityValue_:(id)accessibilityValue; +- (void)setAccessibilityHint_:(id)accessibilityHint; +- (void)setAccessibilityHidden_:(id)accessibilityHidden; + +/** + Whether or not a view not normally picked up by the Titanium view hierarchy (such as wrapped iOS UIViews) was touched. + @return _YES_ if the view contains specialized content (such as a system view) which should register as a touch for this view, _NO_ otherwise. + */ +- (BOOL)touchedContentViewWithEvent:(UIEvent *)event; + +- (void)processTouchesBegan:(NSSet *)touches withEvent:(UIEvent *)event; +- (void)processTouchesMoved:(NSSet *)touches withEvent:(UIEvent *)event; +- (void)processTouchesEnded:(NSSet *)touches withEvent:(UIEvent *)event; +- (void)processTouchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event; +- (void)processKeyPressed:(NSString *)key; + +@end + +#pragma mark TO REMOVE, used only during transition. + +#define USE_PROXY_FOR_METHOD(resultType, methodname, inputType) \ + -(resultType)methodname : (inputType)value \ + { \ + DeveloperLog(@"[DEBUG] Using view proxy via redirection instead of directly for %@.", self); \ + return [(TiViewProxy *)[self proxy] methodname:value]; \ + } + +#define USE_PROXY_FOR_VERIFY_AUTORESIZING USE_PROXY_FOR_METHOD(UIViewAutoresizing, verifyAutoresizing, UIViewAutoresizing) diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIViewProxy.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIViewProxy.h new file mode 100644 index 0000000..9f5b70d --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIViewProxy.h @@ -0,0 +1,12 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "TiViewProxy.h" + +@interface TiUIViewProxy : TiViewProxy { +} +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIWindow.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIWindow.h new file mode 100644 index 0000000..b11149c --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIWindow.h @@ -0,0 +1,12 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "TiUIView.h" + +@interface TiUIWindow : TiUIView { +} + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIWindowProxy.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIWindowProxy.h new file mode 100644 index 0000000..3bbd258 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIWindowProxy.h @@ -0,0 +1,34 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "KrollBridge.h" +#import "TiUIView.h" +#import "TiViewProxy.h" +#import "TiWindowProxy.h" + +//TODO: we probably should split this ViewProxy into a a separate TiUIView like normal + +@interface TiUIWindowProxy : TiWindowProxy { + @private + KrollBridge *context; + BOOL hasToolbar; + BOOL contextReady; + BOOL shouldUpdateNavBar; + UIImageView *barImageView; + NSURL *oldBaseURL; + id latch; + UIEdgeInsets oldSafeAreaInsets; +} + +- (void)refreshBackButton; +- (void)updateNavBar; +- (void)boot:(BOOL)timeout args:(id)args; + +@property (nonatomic, assign) TiViewProxy *safeAreaViewProxy; +@property (nonatomic) BOOL shouldExtendSafeArea; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIiOSTransitionAnimationProxy.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIiOSTransitionAnimationProxy.h new file mode 100644 index 0000000..a282d93 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIiOSTransitionAnimationProxy.h @@ -0,0 +1,20 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2013 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "TiAnimation.h" +#import "TiProxy.h" + +@interface TiUIiOSTransitionAnimationProxy : TiProxy { + id _transitionContext; + TiAnimation *_transitionTo; + TiAnimation *_transitionFrom; + BOOL _endedTo; + BOOL _endedFrom; + NSNumber *_duration; +} + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUtils.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUtils.h new file mode 100644 index 0000000..3fc9cd3 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUtils.h @@ -0,0 +1,871 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2014 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "TiDimension.h" + +@class TiProxy; +@class TiColor; +@class TiFile; +@class TiBuffer; +@class WebFont; +@class TiScriptError; +@class TiUIView; +@class TiViewProxy; + +/* NOTE TO MODULE DEVELOPERS: + * The following 4 imports will be going away as it's better to simply + * forward-declare the classes in headers. If you've been relying on TiUtils + * to do the including of TiProxy for you, please fix this. However, to + * avoid breaking modules + */ +#import "TiBuffer.h" +#import "TiColor.h" +#import "TiFile.h" +#import "WebFont.h" + +typedef enum { + BAD_DEST_OFFSET = -1, + BAD_SRC_OFFSET = -2, + BAD_ENCODING = -4, + BAD_TYPE = -8, + BAD_ENDIAN = -16, + TOO_SMALL = -32, +} EncodingError; + +/** + Titanium orientation flags. + */ +typedef enum { + TiOrientationNone = 0, + TiOrientationAny = 0xFFFF, + + /** + Portrait orientation flag. + */ + TiOrientationPortrait = 1 << UIInterfaceOrientationPortrait, + + /** + Upside-down portrait orientation flag. + */ + TiOrientationPortraitUpsideDown = 1 << UIInterfaceOrientationPortraitUpsideDown, + + /** + Landscape left orientation flag. + */ + TiOrientationLandscapeLeft = 1 << UIInterfaceOrientationLandscapeLeft, + + /** + Landscape right orientation flag. + */ + TiOrientationLandscapeRight = 1 << UIInterfaceOrientationLandscapeRight, + + /** + Landscape (left or right) orientation flag. + */ + TiOrientationLandscapeOnly = TiOrientationLandscapeLeft | TiOrientationLandscapeRight, + + /** + Portrait (normal or upside-down) orientation flag. + */ + TiOrientationPortraitOnly = TiOrientationPortrait | TiOrientationPortraitUpsideDown, + +} TiOrientationFlags; + +#define TI_ORIENTATION_ALLOWED(flag, bit) (flag & (1 << bit)) +#define TI_ORIENTATION_SET(flag, bit) (flag |= (1 << bit)) + +@protocol VolumeSupport +@required +- (void)setVolume:(float)volume; +- (float)volume; +@end + +/** + Utilities class. + */ +@interface TiUtils : NSObject + ++ (TiOrientationFlags)TiOrientationFlagsFromObject:(id)args; + +/** + Converts date to UTC format. + + @param date The input date. + @return The date string in UTC format. + */ ++ (NSString *)UTCDateForDate:(NSDate *)date; + +/** + Converts string in UTC format into a date. + + @param date The date string in UTC format. + @return The converted date. + */ ++ (NSDate *)dateForUTCDate:(NSString *)date; + +/** + Returns current date in UTC format. + + @return The date string in UTC format. + */ ++ (NSString *)UTCDate; + +/** + Generates a new UUID. + + @return The generate UUID. + */ ++ (NSString *)createUUID; + +/** + Creates a temporary file with name extension. + + @param extension The filename extension. + @return The created temporary file object. + */ ++ (TiFile *)createTempFile:(NSString *)extension; + +/** + Loads application bundle resource by URL. + + @param url The resource URL + @return The resource data. + */ ++ (NSData *)loadAppResource:(NSURL *)url; + +/** + Encodes the input string according by escaping illegal characters. + + @param unencodedString The input string. + @return The encoded string. + */ ++ (NSString *)encodeQueryPart:(NSString *)unencodedString; + +/** + Encodes the URL query string by escaping illegal characters. + + @param unencodedString The input string. + @return The encoded string. + */ ++ (NSString *)encodeURIParameters:(NSString *)unencodedString; + ++ (UIImage *)toImage:(id)object proxy:(TiProxy *)proxy size:(CGSize)imageSize; ++ (UIImage *)toImage:(id)object proxy:(TiProxy *)proxy; + +/** + Changes to image rotation, so the image is facing up. + + @param image The image to be rotated. + @return The rotated image. + */ ++ (UIImage *)adjustRotation:(UIImage *)image; + +/** + Tint image to specified color. + + @param image The image to be tinted. + @param tintColor The color to tint the image. + @return The tinted image. + */ ++ (UIImage *)imageWithTint:(UIImage *)image tintColor:(UIColor *)tintColor; + +/** + Constructs URL from string using provided base URL. + + @param relativeString The relative URL + @param rootPath The base URL. + @return The absolute URL. + */ ++ (NSURL *)toURL:(NSString *)relativeString relativeToURL:(NSURL *)rootPath; + +/** + Constructs URL from string using proxy's base URL. + + @param relativeString The relative URL + @param proxy The proxy to use as base URL. + @return The absolute URL. + */ ++ (NSURL *)toURL:(NSString *)relativeString proxy:(TiProxy *)proxy; + +/** + Loads and returns image for the provided object. + + If the _object_ parameter type is , it will be converted to image and returned. + Otherwise if the _object_ type is NSString, it will be first converted to URL using _proxy_ as a base, then the image will be loaded from the URL. + + @param object The input object. It could be either or NSString. + @param proxy The proxy to use as base URL for image loading if _object_ type is NSString. + @return The loaded image. + @see toURL:proxy: + */ ++ (UIImage *)image:(id)object proxy:(TiProxy *)proxy; + ++ (UIImage *)stretchableImage:(id)object proxy:(TiProxy *)proxy; + +/** + Converts input value into a string. + + @param value The input value. + @return The textual representation of the value. + */ ++ (NSString *)stringValue:(id)value; + ++ (NSString *)replaceString:(NSString *)string characters:(NSCharacterSet *)characterSet withString:(NSString *)replacementString; + ++ (NSNumber *)numberFromObject:(id)obj; + +/** + Converts input value into a boolean. + + @param value The input value. + @return The boolean representation of the value. + @see boolValue:def: + */ ++ (BOOL)boolValue:(id)value; + +/** + Converts input value into a boolean with default fallback. + + @param value The input value. + @param def The default value if the input value cannot be converted. + @return The boolean representation of the value or default value otherwise. + @see boolValue: + */ ++ (BOOL)boolValue:(id)value def:(BOOL)def; + +/** + Converts input value into a point type. + + @param value The input value of either type or NSDictionary with {x,y} keys. + @return The point representation of the value or {0,0} if the input value cannot be converted. + @see pointValue:valid: + */ ++ (CGPoint)pointValue:(id)value; + +/** + Converts input value into the point type. + + @param value The input value of either type or NSDictionary with {x,y} keys. + @param isValid The optional output parameter indicating the status of the convertion. If not _NULL_, its value is set to _YES_ if the value was converted successfully and _NO_ otherwise. + @return The point representation of the value or {0,0} if the input value cannot be converted. + @see pointValue: + */ ++ (CGPoint)pointValue:(id)value valid:(BOOL *)isValid; + ++ (CGPoint)pointValue:(id)value bounds:(CGRect)bounds defaultOffset:(CGPoint)defaultOffset; + ++ (CGRect)rectValue:(id)value; + +/** + Converts input value into a float. + + @param value The input value. + @return The float representation of the value. + @see floatValue:def: + */ ++ (CGFloat)floatValue:(id)value; + +/** + Converts input value into a float with default fallback. + + @param value The input value. + @param def The default value if the input value cannot be converted. + @return The float representation of the value. + @see floatValue: + */ ++ (CGFloat)floatValue:(id)value def:(CGFloat)def; + +/** + Converts input value into a float with default fallback. + + @param value The input value. + @param def The default value if the input value cannot be converted. + @param isValid The optional output parameter indicating the status of the convertion. If not _NULL_, its value is set to _YES_ if the value was converted successfully and _NO_ otherwise. + @return The float representation of the value. + @see floatValue: + */ ++ (CGFloat)floatValue:(id)value def:(CGFloat)def valid:(BOOL *)isValid; + +/** + Converts input value into a double. + + @param value The input value. + @return The double representation of the value. + @see doubleValue:def: + */ ++ (double)doubleValue:(id)value; + +/** + Converts input value into a double with default fallback. + + @param value The input value. + @param def The default value if the input value cannot be converted. + @return The double representation of the value. + @see doubleValue: + */ ++ (double)doubleValue:(id)value def:(double)def; + +/** + Converts input value into a double with default fallback. + + @param value The input value. + @param def The default value if the input value cannot be converted. + @param isValid The optional output parameter indicating the status of the convertion. If not _NULL_, its value is set to _YES_ if the value was converted successfully and _NO_ otherwise. + @return The double representation of the value. + @see doubleValue: + */ ++ (double)doubleValue:(id)value def:(double)def valid:(BOOL *)isValid; + +/** + Converts input value into an int. + + @param value The input value. + @return The int representation of the value. + @see intValue:def: + */ ++ (int)intValue:(id)value; + +/** + Converts input value into an int with default fallback. + + @param value The input value. + @param def The default value if the input value cannot be converted. + @return The int representation of the value. + @see intValue: + */ ++ (int)intValue:(id)value def:(int)def; + +/** + Converts input value into an int with default fallback. + + @param value The input value. + @param def The default value if the input value cannot be converted. + @param isValid The optional output parameter indicating the status of the convertion. If not _NULL_, its value is set to _YES_ if the value was converted successfully and _NO_ otherwise. + @return The int representation of the value. + @see intValue: + */ ++ (int)intValue:(id)value def:(int)def valid:(BOOL *)isValid; + +/** + Converts input value into the color type. + + @param value The input value of either TiColor type or class with string representation that could be converted to a color. + @return The color representation of the value or _nil_ if the input value cannot be converted. + */ ++ (TiColor *)colorValue:(id)value; + +/** + Converts a native color value into the string-color. + + @param color The input value of a UIColor type. + @return The string-representation of the value. + */ ++ (NSString *)hexColorValue:(UIColor *)color; + +/** + Converts input value into the dimention type. + + @param value The input value that could be converted to a color. + @return The dimension representation of the value or TiDimensionUndefined if the input value cannot be converted. + */ ++ (TiDimension)dimensionValue:(id)value; + ++ (id)valueFromDimension:(TiDimension)dimension; + +/** + Looks up a value for the key in the provided dictionary and returns it as an int. + + @param name The lookup key. + @param properties The dictionary. + @param def The default value if the key doesn't exist in the dictionary. + @param exists The optional output parameter indicating the status of dictionary lookup. If not _NULL_, its value is set to _YES_ if the key was founda and _NO_ otherwise. + @return The resulting value as an int + */ ++ (int)intValue:(NSString *)name properties:(NSDictionary *)properties def:(int)def exists:(BOOL *)exists; + +/** + Looks up a value for the key in the provided dictionary and returns it as a double. + + @param name The lookup key. + @param properties The dictionary. + @param def The default value if the key doesn't exist in the dictionary. + @param exists The optional output parameter indicating the status of dictionary lookup. If not _NULL_, its value is set to _YES_ if the key was founda and _NO_ otherwise. + @return The resulting value as a double + */ ++ (double)doubleValue:(NSString *)name properties:(NSDictionary *)properties def:(double)def exists:(BOOL *)exists; + +/** + Looks up a value for the key in the provided dictionary and returns it as a float. + + @param name The lookup key. + @param properties The dictionary. + @param def The default value if the key doesn't exist in the dictionary. + @param exists The optional output parameter indicating the status of dictionary lookup. If not _NULL_, its value is set to _YES_ if the key was founda and _NO_ otherwise. + @return The resulting value as a float + */ ++ (float)floatValue:(NSString *)name properties:(NSDictionary *)properties def:(float)def exists:(BOOL *)exists; + +/** + Looks up a value for the key in the provided dictionary and returns it as a boolean. + + @param name The lookup key. + @param properties The dictionary. + @param def The default value if the key doesn't exist in the dictionary. + @param exists The optional output parameter indicating the status of dictionary lookup. If not _NULL_, its value is set to _YES_ if the key was founda and _NO_ otherwise. + @return The resulting value as a boolean + */ ++ (BOOL)boolValue:(NSString *)name properties:(NSDictionary *)properties def:(BOOL)def exists:(BOOL *)exists; + +/** + Looks up a value for the key in the provided dictionary and returns it as a string. + + @param name The lookup key. + @param properties The dictionary. + @param def The default value if the key doesn't exist in the dictionary. + @param exists The optional output parameter indicating the status of dictionary lookup. If not _NULL_, its value is set to _YES_ if the key was founda and _NO_ otherwise. + @return The resulting value as a string + */ ++ (NSString *)stringValue:(NSString *)name properties:(NSDictionary *)properties def:(NSString *)def exists:(BOOL *)exists; + +/** + Looks up a value for the key in the provided dictionary and returns it as a point. + + @param name The lookup key. + @param properties The dictionary. + @param def The default value if the key doesn't exist in the dictionary. + @param exists The optional output parameter indicating the status of dictionary lookup. If not _NULL_, its value is set to _YES_ if the key was founda and _NO_ otherwise. + @return The resulting value as a point + */ ++ (CGPoint)pointValue:(NSString *)name properties:(NSDictionary *)properties def:(CGPoint)def exists:(BOOL *)exists; + +/** + Looks up a value for the key in the provided dictionary and returns it as a color. + + @param name The lookup key. + @param properties The dictionary. + @param def The default value if the key doesn't exist in the dictionary. + @param exists The optional output parameter indicating the status of dictionary lookup. If not _NULL_, its value is set to _YES_ if the key was founda and _NO_ otherwise. + @return The resulting value as a color + */ ++ (TiColor *)colorValue:(NSString *)name properties:(NSDictionary *)properties def:(TiColor *)def exists:(BOOL *)exists; + +#ifndef TI_USE_AUTOLAYOUT +/** + Looks up a value for the key in the provided dictionary and returns it as a dimension. + + @param name The lookup key. + @param properties The dictionary. + @param def The default value if the key doesn't exist in the dictionary. + @param exists The optional output parameter indicating the status of dictionary lookup. If not _NULL_, its value is set to _YES_ if the key was founda and _NO_ otherwise. + @return The resulting value as a dimension + */ ++ (TiDimension)dimensionValue:(NSString *)name properties:(NSDictionary *)properties def:(TiDimension)def exists:(BOOL *)exists; +#endif + ++ (NSShadow *)shadowValue:(id)value; + ++ (int)intValue:(NSString *)name properties:(NSDictionary *)props def:(int)def; + ++ (double)doubleValue:(NSString *)name properties:(NSDictionary *)props def:(double)def; + ++ (float)floatValue:(NSString *)name properties:(NSDictionary *)props def:(float)def; + ++ (BOOL)boolValue:(NSString *)name properties:(NSDictionary *)props def:(BOOL)def; + ++ (NSString *)stringValue:(NSString *)name properties:(NSDictionary *)properties def:(NSString *)def; + ++ (CGPoint)pointValue:(NSString *)name properties:(NSDictionary *)properties def:(CGPoint)def; + ++ (TiColor *)colorValue:(NSString *)name properties:(NSDictionary *)properties def:(TiColor *)def; + +#ifndef TI_USE_AUTOLAYOUT ++ (TiDimension)dimensionValue:(NSString *)name properties:(NSDictionary *)properties def:(TiDimension)def; +#endif + ++ (WebFont *)fontValue:(NSDictionary *)properties def:(WebFont *)def; + ++ (UIDeviceOrientation)orientationValue:(id)value def:(UIDeviceOrientation)def; + ++ (int)intValue:(NSString *)name properties:(NSDictionary *)props; + ++ (double)doubleValue:(NSString *)name properties:(NSDictionary *)props; + ++ (float)floatValue:(NSString *)name properties:(NSDictionary *)props; + ++ (BOOL)boolValue:(NSString *)name properties:(NSDictionary *)props; + ++ (NSString *)stringValue:(NSString *)name properties:(NSDictionary *)properties; + ++ (CGPoint)pointValue:(NSString *)name properties:(NSDictionary *)properties; + ++ (TiColor *)colorValue:(NSString *)name properties:(NSDictionary *)properties; + +#ifndef TI_USE_AUTOLAYOUT ++ (TiDimension)dimensionValue:(NSString *)name properties:(NSDictionary *)properties; +#endif ++ (NSDictionary *)pointToDictionary:(CGPoint)point; + ++ (NSDictionary *)rectToDictionary:(CGRect)rect; + ++ (NSDictionary *)sizeToDictionary:(CGSize)size; + +/** + Converts input values in to a NSDictionary. + + @param touch The UITouch object. Containing all the UITouch attributes. + @param view The view, in which the touch is being used. + @return NSDictionary containing the point coordinates and UITouch properties. + */ ++ (NSDictionary *)touchPropertiesToDictionary:(UITouch *)touch andView:(UIView *)view; + ++ (UIEdgeInsets)contentInsets:(id)value; + ++ (CGRect)contentFrame:(BOOL)window; + ++ (CGFloat)sizeValue:(id)value; + ++ (WebFont *)fontValue:(id)value; + ++ (TiScriptError *)scriptErrorValue:(id)value; + ++ (TiScriptError *)scriptErrorFromValueRef:(JSValueRef)valueRef inContext:(JSGlobalContextRef)contextRef; + ++ (NSTextAlignment)textAlignmentValue:(id)alignment; + ++ (NSString *)jsonStringify:(id)value; ++ (id)jsonParse:(NSString *)value; + ++ (NSString *)currentArchitecture; + ++ (NSString *)jsonStringify:(id)value error:(NSError **)error; ++ (id)jsonParse:(NSString *)value error:(NSError **)error; +; + +/** + Whether or not the current device orientation is portrait. + + @return _YES_ is the current device orientation is portrait, _NO_ otherwise. + */ ++ (BOOL)isOrientationPortait; + +/** + Whether or not the current device orientation is landscape. + + @return _YES_ is the current device orientation is landscape, _NO_ otherwise. + */ ++ (BOOL)isOrientationLandscape; + +/** + Detects and returns the current device orientation. + + @return The current device orientation. + */ ++ (UIInterfaceOrientation)orientation; + ++ (CGRect)navBarRect; + ++ (CGSize)navBarTitleViewSize; + ++ (CGRect)navBarTitleViewRect; + ++ (CGRect)screenRect; + ++ (CGPoint)centerSize:(CGSize)smallerSize inRect:(CGRect)largerRect; + ++ (CGRect)centerRect:(CGRect)smallerRect inRect:(CGRect)largerRect; + +/** + Sets the view's bounds and center coordinates. + + @param view The view to make changes on. + @param frameRect The rectangle containing bounds to apply to the view. + */ ++ (void)setView:(UIView *)view positionRect:(CGRect)frameRect; + ++ (void)applyConstraintToView:(TiUIView *)view forProxy:(TiViewProxy *)proxy withBounds:(CGRect)bounds; + ++ (NSString *)composeAccessibilityIdentifier:(id)object; + ++ (CGRect)viewPositionRect:(UIView *)view; + ++ (BOOL)barTranslucencyForColor:(TiColor *)color; ++ (UIColor *)barColorForColor:(TiColor *)color; ++ (UIBarStyle)barStyleForColor:(TiColor *)color; + ++ (void)applyColor:(TiColor *)color toNavigationController:(UINavigationController *)navController; + +/** + Whether or not the current device interface idiom is iPad. + + @return _YES_ if the current device interface idiom is iPad, _NO_ otherwise. + */ ++ (BOOL)isIPad; + +/** + Whether or not the current OS version is equal to or greater than 7.0. + + @return _YES_ if the current OS version is equal to or greater than 7.0, _NO_ otherwise. + */ ++ (BOOL)isIOS7OrGreater __deprecated_msg("Use isIOSVersionOrGreater insted"); + +/** + Whether or not the current OS version is equal to or greater than 8.0. + + @return _YES_ if the current OS version is equal to or greater than 8.0, _NO_ otherwise. + */ ++ (BOOL)isIOS8OrGreater __deprecated_msg("Use isIOSVersionOrGreater insted"); + +/** + Whether or not the current OS version is equal to or greater than 8.2. + + @return _YES_ if the current OS version is equal to or greater thann 8.2, _NO_ otherwise. + */ ++ (BOOL)isIOS82rGreater __deprecated_msg("Use isIOSVersionOrGreater insted"); + +/** + Whether or not the current OS version is equal to or greater than 9.0. + @return _YES_ if the current OS version is equal to or greater than 9.0, _NO_ otherwise. + */ ++ (BOOL)isIOS9OrGreater __deprecated_msg("Use isIOSVersionOrGreater insted"); + +/** + Whether or not the current OS version is equal to or greater than 9.1. + + @return _YES_ if the current OS version is equal to or greater than 9.1, _NO_ otherwise. + */ ++ (BOOL)isIOS9_1OrGreater __deprecated_msg("Use isIOSVersionOrGreater insted"); + +/** + Whether or not the current OS version is equal to or greater than 9.3. + + @return _YES_ if the current OS version is equal to or greater than 9.3, _NO_ otherwise. + */ ++ (BOOL)isIOS9_3OrGreater __deprecated_msg("Use isIOSVersionOrGreater insted"); + +/** + Whether or not the current OS version is equal to or greater than 10.0. + + @return _YES_ if the current OS version is equal to or greater than 10.0, _NO_ otherwise. + */ ++ (BOOL)isIOS10OrGreater __deprecated_msg("Use isIOSVersionOrGreater insted"); + +/** + Whether or not the current OS version is equal to or greater than 11.0. + + @return _YES_ if the current OS version is equal to or greater than 11.0, _NO_ otherwise. + */ ++ (BOOL)isIOS11OrGreater __deprecated_msg("Use isIOSVersionOrGreater insted"); + +/** + Whether or not the current OS version is equal to or greater than the specified version. + + @param version The version to compare. + @return _YES_ if the current OS version is equal to or greater than the specified version, _NO_ otherwise. + */ ++ (BOOL)isIOSVersionOrGreater:(NSString *)version; + +/** + Whether or not the current OS version is lower than the specified version. + @param version The version to compare. + @return _YES_ if the current OS version is lower than the specified version, _NO_ otherwise. + */ ++ (BOOL)isIOSVersionLower:(NSString *)version; + +/** + Whether or not the current device is an iPhone 4. + + @return _YES_ if the current device is an iPhone 4, _NO_ otherwise. + */ ++ (BOOL)isIPhone4; + +/** + Whether or not the current device has HD retina display (@3x). + @return _YES_ if the current device has HD retina display, _NO_ otherwise. + @deprecated Use `[TiUtils is3xRetina]` instead. + */ ++ (BOOL)isRetinaHDDisplay __deprecated_msg("Use `[TiUtils is3xRetina]` instead."); + +/** + Whether or not the current device has retina display. + + @return _YES_ if the current device has retina display, _NO_ otherwise. + @deprecated Use `[TiUtils is2xRetina]` instead. + */ ++ (BOOL)isRetinaDisplay __deprecated_msg("Use `[TiUtils is2xRetina]` instead."); + +/** + Whether or not the current device has HD retina display (@3x). + @return _YES_ if the current device has HD retina display, _NO_ otherwise. + */ ++ (BOOL)is3xRetina; + +/** + Whether or not the current device has retina display (@2x). + @return _YES_ if the current device has retina display, _NO_ otherwise. + */ ++ (BOOL)is2xRetina; + +/** + Whether or not the current device has a 4 inch retina display (iPhone5). + + @return _YES_ if the current device has a 4 inch retina display, _NO_ otherwise. + */ ++ (BOOL)isRetinaFourInch; + +/** + Whether or not the current device has a 4.7 inch retina display (iPhone 6). + + @return _YES_ if the current device has a 4.7 inch retina display, _NO_ otherwise. + @deprecated Use `[TiUtils isRetina4_7Inch]` instead. + */ ++ (BOOL)isRetinaiPhone6 __deprecated_msg("Use `[TiUtils isRetina4_7Inch]` instead."); + +/** + Whether or not the current device has a 5.5 inch retina display (iPhone 6). + @return _YES_ if the current device has a 5.5 inch retina display, _NO_ otherwise. + @deprecated Use `[TiUtils isRetina5_5Inch]` instead. + */ ++ (BOOL)isRetinaiPhone6Plus __deprecated_msg("Use `[TiUtils isRetina5_5Inch]` instead."); + +/** + Whether or not the current device has a 5.8 inch super retina display (iPhone X). + @return _YES_ if the current device has a 5.8 inch super retina display, _NO_ otherwise. + @deprecated Use `[TiUtils isSuperRetina5_8Inch]` instead. + */ ++ (BOOL)isRetinaiPhoneX __deprecated_msg("Use `[TiUtils isSuperRetina5_8Inch]` instead."); + +/** + Whether or not the current device has a 4.7 inch retina display (iPhone 6). + @return _YES_ if the current device has a 4.7 inch retina display, _NO_ otherwise. + */ ++ (BOOL)isRetina4_7Inch; + +/** + Whether or not the current device has a 5.5 inch retina display (iPhone 6). + @return _YES_ if the current device has a 5.5 inch retina display, _NO_ otherwise. + */ ++ (BOOL)isRetina5_5Inch; + +/** + Whether or not the current device has a 5.8 inch super retina display (iPhone X). + @return _YES_ if the current device has a 5.8 inch super retina display, _NO_ otherwise. + */ ++ (BOOL)isSuperRetina5_8Inch; +/** + Whether or not the current device has a 6.1 inch retina display (iPhone X Max). + @return _YES_ if the current device has a 6.1 inch retina display, _NO_ otherwise. + */ ++ (BOOL)isRetina6_1Inch; + +/** + Whether or not the current device has a 6.5 inch super retina display (iPhone X Max). + @return _YES_ if the current device has a 6.5 inch super retina display, _NO_ otherwise. + */ ++ (BOOL)isSuperRetina6_5Inch; + ++ (void)setVolume:(float)volume onObject:(id)object; + ++ (float)volumeFromObject:(id)theObject default:(float)def; + ++ (void)configureController:(UIViewController *)controller withObject:(id)object; + ++ (CGRect)frameForController:(UIViewController *)theController; + ++ (int)dpi; + ++ (NSStringEncoding)charsetToEncoding:(NSString *)charset; + ++ (TiDataType)constantToType:(NSString *)typeStr; + ++ (int)dataSize:(TiDataType)type; + ++ (int)encodeString:(NSString *)string toBuffer:(TiBuffer *)dest charset:(NSString *)charset offset:(NSUInteger)destPosition sourceOffset:(NSUInteger)srcPosition length:(NSUInteger)srcLength; + ++ (int)encodeNumber:(NSNumber *)data toBuffer:(TiBuffer *)dest offset:(int)position type:(NSString *)type endianness:(CFByteOrder)byteOrder; + +/** + Generates MD5 hash for the provided data. + + @param data The input data. + @return MD5 hash string. + */ ++ (NSString *)md5:(NSData *)data; + +/** + Converts array of byte into a hex string. + + @param input The array of bytes. + @param length The length of the input array. + @return Hex representation of the input array. + */ ++ (NSString *)convertToHex:(unsigned char *)input length:(size_t)length; + ++ (NSString *)convertToHexFromData:(NSData *)data; + ++ (NSString *)getResponseHeader:(NSString *)header fromHeaders:(NSDictionary *)responseHeaders; + ++ (UIImage *)loadBackgroundImage:(id)image forProxy:(TiProxy *)proxy; + ++ (UIImage *)loadCappedBackgroundImage:(id)image forProxy:(TiProxy *)proxy withLeftCap:(TiDimension)leftCap topCap:(TiDimension)topCap; + +/** + Convenience method to extract a useful error message from NSError, or nil if none exist. + + @param error The NSError + @return error's localizedDescription and userDescription concatenated + */ ++ (NSString *)messageFromError:(NSError *)error; + +/** + Convenience method to create a mutable dictionary prepopulated with success, code, and error values. + This is for use with callbacks that are not events. While it is possible to use this in events, + the built-in event error reporting functionality is faster. + + @param code The integer representing an error. Use 0 for a success, and -1 for an unknown error. + @param message The optional string describing the error. + */ ++ (NSMutableDictionary *)dictionaryWithCode:(NSInteger)code message:(NSString *)message; + +/** + Checks the force touch capability of the current device. + + @return _YES_ if the device supported force touch. + */ ++ (BOOL)forceTouchSupported; + +/** + Checks the live photo capability of the current device. + + @return _YES_ if the device supported force touch. + */ ++ (BOOL)livePhotoSupported; + +/** + Converts a color into an image. + + @return The generated image. + */ ++ (UIImage *)imageWithColor:(UIColor *)color; + +/** + Checks if this app is using launch-screen storyboards. We may want to deprecate the + old image-based launch-screens in the future, but prefer to align with Apples plans. + + @return _YES_ if launch-screen storyboard are used. + */ ++ (BOOL)isUsingLaunchScreenStoryboard; + +/** + Checks if Hyperloop is available in this app. + + @return _YES_ if Hyperloop is available, _NO_ otherwise. + */ ++ (BOOL)isHyperloopAvailable; + ++ (BOOL)isMacOS; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewController.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewController.h new file mode 100644 index 0000000..a74e1e0 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewController.h @@ -0,0 +1,22 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "TiControllerProtocols.h" +#import + +@interface TiViewController : UIViewController { + + TiViewProxy *_proxy; + TiOrientationFlags _supportedOrientations; +} + +@property (nonatomic, retain) NSArray *previewActions; + +- (id)initWithViewProxy:(TiViewProxy *)window; +- (TiViewProxy *)proxy; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewProxy.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewProxy.h new file mode 100644 index 0000000..32f9ea3 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewProxy.h @@ -0,0 +1,621 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "TiProxy.h" +#import "TiRect.h" +#import "TiUIView.h" +#import "TiViewTemplate.h" +#import + +/** + Protocol for views that can receive keyboard focus. + */ +@protocol TiKeyboardFocusableView + +#pragma mark Public Titanium APIs. + +/** + Tells the view to focus. + @param args Unused. + */ +- (void)focus:(id)args; + +/** + Tells the view to stop generating focus/blur events. This should not be + JS-accessable, and is meant to handle tableview and layout issues. + */ +@property (nonatomic, readwrite, assign) BOOL suppressFocusEvents; + +/** + Tells the view to blur. + @param args Unused. + */ +- (void)blur:(id)args; +/** + Tells if this proxy is currently focused + */ +- (BOOL)focused:(id)unused; + +#pragma mark Private internal APIs. + +/** + Returns keyboard accessory view. + */ +@property (nonatomic, readonly) UIView *keyboardAccessoryView; + +/** + Returns keyboard accessory height. + */ +@property (nonatomic, readonly) CGFloat keyboardAccessoryHeight; + +@end + +/* + This Protocol will be implemented by objects that want to + monitor views not in the normal view hierarchy. +*/ +@protocol TiProxyObserver +@optional +- (void)proxyDidRelayout:(id)sender; + +@end + +@protocol TiViewEventOverrideDelegate +@required +- (NSDictionary *)overrideEventObject:(NSDictionary *)eventObject forEvent:(NSString *)eventType fromViewProxy:(TiViewProxy *)viewProxy; + +@end + +#pragma mark dirtyflags used by TiViewProxy +#define NEEDS_LAYOUT_CHILDREN 1 +//Set this flag to true to disable instant updates +static const BOOL ENFORCE_BATCH_UPDATE = NO; + +enum { + TiRefreshViewPosition = 2, + TiRefreshViewChildrenPosition, + TiRefreshViewZIndex, + TiRefreshViewSize, + + TiRefreshViewEnqueued, +}; + +@class TiAction, TiBlob; +//For TableRows, we need to have minimumParentHeightForWidth: + +/** + The class represents a proxy that is attached to a view. + The class is not intended to be overriden. + */ +@interface TiViewProxy : TiProxy { + @protected + //TODO: Actually have a rhyme and reason on keeping things @protected vs @private. + //For now, for sake of proper value grouping, we're all under one roof. + +#ifndef TI_USE_AUTOLAYOUT +#pragma mark Layout properties + LayoutConstraint layoutProperties; +#endif + int vzIndex; + BOOL hidden; // This is the boolean version of ![TiUtils boolValue:visible def:YES] + BOOL safeAreaProxyAdded; + +#pragma mark Parent/Children relationships + TiViewProxy *parent; + pthread_rwlock_t childrenLock; + NSMutableArray *children; + // NSMutableArray *pendingAdds; + +#pragma mark Visual components + TiUIView *view; + UIBarButtonItem *barButtonItem; + +#pragma mark Layout caches that can be recomputed + CGFloat verticalLayoutBoundary; + CGFloat horizontalLayoutBoundary; + CGFloat horizontalLayoutRowHeight; //Note, this has nothing to do with table views. + int lastChildArranged; + + CGRect sandboxBounds; + CGPoint positionCache; //Recomputed and stored when position changes. + CGRect sizeCache; //Recomputed and stored when size changes. + UIViewAutoresizing autoresizeCache; //Changed by repositioning or resizing. + + BOOL parentVisible; + //In most cases, this is the same as [parent parentVisible] && ![parent hidden] + //However, in the case of windows attached to the root view, the parent is ALWAYS visible. + //That is, will be true if and only if all parents are visible or are the root controller. + //Use parentWillShow and parentWillHide to set this. + +#pragma mark Housecleaning that is set and used + NSRecursiveLock *destroyLock; + + BOOL windowOpened; + BOOL windowOpening; + + int dirtyflags; //For atomic actions, best to be explicit about the 32 bitness. + BOOL viewInitialized; + BOOL repositioning; + BOOL isUsingBarButtonItem; + //This flag is set to true on beginning of _initWithProperties() call and false near the end of the method + BOOL updateStarted; + BOOL allowLayoutUpdate; + + NSMutableDictionary *layoutPropDictionary; + + id observer; + id eventOverrideDelegate; +} + +#pragma mark public API + +@property (nonatomic, readonly) TiRect *size; +@property (nonatomic, readonly) TiRect *rect; +/* + Provides access to z-index value. + */ +@property (nonatomic, readwrite, assign) int vzIndex; +/** + Provides access to visibility of parent view proxy. + */ +@property (nonatomic, readwrite, assign) BOOL parentVisible; // For tableview magic ONLY + +/** + Returns children view proxies for the proxy. + */ +@property (nonatomic, readonly) NSArray *children; + +- (void)setTempProperty:(id)propVal forKey:(id)propName; +- (void)processTempProperties:(NSDictionary *)arg; +- (BOOL)_hasListeners:(NSString *)type checkParent:(BOOL)check; +- (void)setProxyObserver:(id)arg; + +/** + Tells the view proxy to add a child proxy. + @param arg A single proxy to add or NSArray of proxies. + */ +- (void)add:(id)arg; + +/** + Tells the view proxy to remove a child proxy. + @param arg A single proxy to remove. + */ +- (void)remove:(id)arg; + +/** + Tells the view proxy to remove all child proxies. + @param arg Ignored. + */ +- (void)removeAllChildren:(id)arg; + +/** + Tells the view proxy to set visibility on a child proxy to _YES_. + @param arg A single proxy to show. + */ +- (void)show:(id)arg; + +/** + Tells the view proxy to set visibility on a child proxy to _NO_. + @param arg A single proxy to hide. + */ +- (void)hide:(id)arg; + +/** + Clears all previously created motion effects (if set). + @param unused An unused parameter for proxy swizzling. + */ +- (void)clearMotionEffects:(id)unused; + +/** + Returns the view by the given ID. + @param arg The ID of the view to receive. + */ +- (id)getViewById:(id)arg; + +/** + Tells the view proxy to run animation on its view. + @param arg An animation object. + */ +- (void)animate:(id)arg; + +#ifndef TI_USE_AUTOLAYOUT +- (void)setTop:(id)value; +- (void)setBottom:(id)value; +- (void)setLeft:(id)value; +- (void)setRight:(id)value; +- (void)setWidth:(id)value; +- (void)setHeight:(id)value; +#endif +- (void)setZIndex:(id)value; +- (id)zIndex; + +// See the code for setValue:forUndefinedKey: for why we can't have this +#ifndef TI_USE_AUTOLAYOUT +- (void)setMinWidth:(id)value; +- (void)setMinHeight:(id)value; +- (void)setCenter:(id)value; +#endif +- (NSMutableDictionary *)center; +- (id)animatedCenter; + +- (void)setBackgroundGradient:(id)arg; +- (TiBlob *)toImage:(id)args; + +#pragma mark nonpublic accessors not related to Housecleaning + +/** + Provides access to parent proxy of the view proxy. + @see add: + @see remove: + @see children + */ +@property (nonatomic, assign) TiViewProxy *parent; +//TODO: make this a proper readwrite property declaration. + +#ifndef TI_USE_AUTOLAYOUT +/** + Provides access to layout properties of the underlying view. + */ +@property (nonatomic, readonly, assign) LayoutConstraint *layoutProperties; +#endif + +/** + Provides access to sandbox bounds of the underlying view. + */ +@property (nonatomic, readwrite, assign) CGRect sandboxBounds; +//This is unaffected by parentVisible. So if something is truely visible, it'd be [self visible] && parentVisible. +- (void)setHidden:(BOOL)newHidden withArgs:(id)args; + +@property (nonatomic, retain) UIBarButtonItem *barButtonItem; +- (TiUIView *)barButtonViewForSize:(CGSize)bounds; + +//NOTE: DO NOT SET VIEW UNLESS IN A TABLE VIEW, AND EVEN THEN. +@property (nonatomic, readwrite, retain) TiUIView *view; + +@property (nonatomic, readwrite, assign) id eventOverrideDelegate; + +/** + Returns language conversion table. + + Subclasses may override. + @return The dictionary + */ +- (NSMutableDictionary *)langConversionTable; + +#pragma mark Methods subclasses should override for behavior changes + +/** + Whether or not the view proxy can have non Ti-Views which have to be pushed to the bottom when adding children. + **This method is only meant for legacy classes. New classes must implement the proper wrapperView code** + Subclasses may override. + @return _NO_ if the view proxy can have non Ti-Views in its view hierarchy + */ +- (BOOL)optimizeSubviewInsertion; + +/** + Whether or not the view proxy needs to suppress relayout. + + Subclasses may override. + @return _YES_ if relayout should be suppressed, _NO_ otherwise. + */ +- (BOOL)suppressesRelayout; + +/** + Whether or not the view proxy supports navigation bar positioning. + + Subclasses may override. + @return _YES_ if navigation bar positioning is supported, _NO_ otherwise. + */ +- (BOOL)supportsNavBarPositioning; + +/** + Whether or not the view proxy can have a UIController object in its parent view. + + Subclasses may override. + @return _YES_ if the view proxy can have a UIController object in its parent view + */ +- (BOOL)canHaveControllerParent; + +/** + Whether or not the view proxy should detach its view on unload. + + Subclasses may override. + @return _YES_ if the view should be detached, _NO_ otherwise. + */ +- (BOOL)shouldDetachViewOnUnload; + +/** + Returns parent view for child proxy. + + The method is used in cases when proxies hierarchy is different from views hierarchy. + Subclasses may override. + @param child The child view proxy for which return the parent view. + @return The parent view + */ +- (UIView *)parentViewForChild:(TiViewProxy *)child; + +#pragma mark Event trigger methods + +/** + Tells the view proxy that the attached window will open. + @see windowDidOpen + */ +- (void)windowWillOpen; + +/** + Tells the view proxy that the attached window did open. + @see windowWillOpen + */ +- (void)windowDidOpen; + +/** + Tells the view proxy that the attached window will close. + @see windowDidClose + */ +- (void)windowWillClose; + +/** + Tells the view proxy that the attached window did close. + @see windowWillClose + */ +- (void)windowDidClose; + +/** + Tells the view proxy that its properties are about to change. + @see didFirePropertyChanges + */ +- (void)willFirePropertyChanges; + +/** + Tells the view proxy that its properties are changed. + @see willFirePropertyChanges + */ +- (void)didFirePropertyChanges; + +/** + Tells the view proxy that a view will be attached to it. + @see viewDidAttach + */ +- (void)viewWillAttach; // Need this for video player & possibly other classes which override newView + +/** + Tells the view proxy that a view was attached to it. + @see viewWillAttach + */ +- (void)viewDidAttach; + +/** + Tells the view proxy that a view will be detached from it. + @see viewDidDetach + */ +- (void)viewWillDetach; + +/** + Tells the view proxy that a view was detached from it. + @see viewWillDetach + */ +- (void)viewDidDetach; + +#pragma mark Housecleaning state accessors +//TODO: Sounds like the redundancy department of redundancy was here. +/** + Whether or not a view is attached to the view proxy. + @return _YES_ if the view proxy has a view attached to it, _NO_ otherwise. + */ +- (BOOL)viewAttached; + +/** + Whether or not the view proxy has been initialized. + @return _YES_ if the view proxy has been initialized, _NO_ otherwise. + */ +- (BOOL)viewInitialized; + +/** + Whether or not the view proxy has been completely set up. + @return _YES_ if the view proxy has been initialized and its view has a superview and non-empty bounds, _NO_ otherwise. + */ +- (BOOL)viewReady; + +/** + Whether or not a window attached to the view proxy has been opened. + @return _YES_ if the view proxy's window has been opened, _NO_ otherwise. + */ +- (BOOL)windowHasOpened; + +/** + Whether or not a window attached to the view proxy is currently being opened. + @return _YES_ if the view proxy's window is being opened, _NO_ otherwise. + */ +- (BOOL)windowIsOpening; + +/** + Whether or not the view proxy is using a bar button item. + @return _YES_ if a bar button item is used, _NO_ otherwise. + */ +- (BOOL)isUsingBarButtonItem; + +- (CGRect)appFrame; //TODO: Why is this here? It doesn't have anything to do with a specific instance. + +#pragma mark Building up and tearing down +- (void)firePropertyChanges; + +/** + Returns a ne view corresponding to the view proxy. + @return The created view. + */ +- (TiUIView *)newView; + +/** + Tells the view proxy to detach its view. + */ +- (void)detachView; + +- (void)destroy; + +/** + Tells the view proxy to remove its bar button item. + */ +- (void)removeBarButtonView; + +#pragma mark Callbacks + +/** + Tells the view proxy that its view animation did complete. + @param animation The completed animation + */ +- (void)animationCompleted:(TiAnimation *)animation; +/** + Tells the view attached to the view proxy to perform a selector with given arguments. + @param selector The selector to perform. + @param object The argument for the method performed. + @param create The flag to create the view if the one is not attached. + @param wait The flag to wait till the operation completes. + */ +- (void)makeViewPerformSelector:(SEL)selector withObject:(id)object createIfNeeded:(BOOL)create waitUntilDone:(BOOL)wait; + +#pragma mark Layout events, internal and external + +/** + Tells the view proxy that the attached view size will change. + */ +- (void)willChangeSize; + +/** + Tells the view proxy that the attached view position will change. + */ +- (void)willChangePosition; + +/** + Tells the view proxy that the attached view z-index will change. + */ +- (void)willChangeZIndex; + +/** + Tells the view proxy that the attached view layout will change. + */ +- (void)willChangeLayout; + +/** + Tells the view proxy that the attached view will show. + */ +- (void)willShow; + +/** + Tells the view proxy that the attached view will hide. + */ +- (void)willHide; + +/** + Tells the view proxy that the attached view contents will change. + */ +- (void)contentsWillChange; + +/** + Tells the view proxy that the attached view's parent size will change. + */ +- (void)parentSizeWillChange; + +/** + Tells the view proxy that the attached view's parent will change position and size. + */ +- (void)parentWillRelay; + +/** + Tells the view proxy that the attached view's parent will show. + */ +- (void)parentWillShow; + +/** + Tells the view proxy that the attached view's parent will hide. + */ +- (void)parentWillHide; + +#pragma mark Layout actions + +- (void)refreshView:(TiUIView *)transferView; + +/** + Tells the view proxy to force size refresh of the attached view. + */ +- (void)refreshSize; + +/** + Tells the view proxy to force position refresh of the attached view. + */ +- (void)refreshPosition; + +/** + Puts the view in the layout queue for rendering. + */ +- (void)willEnqueue; + +//Unlike the other layout actions, this one is done by the parent of the one called by refreshView. +//This is the effect of refreshing the Z index via careful view placement. +- (void)insertSubview:(UIView *)childView forProxy:(TiViewProxy *)childProxy; + +#pragma mark Layout commands that need refactoring out + +- (void)determineSandboxBounds; + +/** + Tells the view to layout its children. + @param optimize Internal use only. Always specify _NO_. + */ +- (void)layoutChildren:(BOOL)optimize; + +/** + Tells the view to layout its children only if there were any layout changes. + */ +- (void)layoutChildrenIfNeeded; + +- (void)layoutChild:(TiViewProxy *)child optimize:(BOOL)optimize withMeasuredBounds:(CGRect)bounds; +- (NSArray *)measureChildren:(NSArray *)childArray; +- (CGRect)computeChildSandbox:(TiViewProxy *)child withBounds:(CGRect)bounds; + +/** + Tells the view to adjust its size and position according to the current layout constraints. + */ +- (void)relayout; + +- (void)reposition; //Todo: Replace +/** + Tells if the view is enqueued in the LayoutQueue + */ +- (BOOL)willBeRelaying; + +- (BOOL)widthIsAutoFill; +- (BOOL)widthIsAutoSize; +- (BOOL)heightIsAutoFill; +- (BOOL)heightIsAutoSize; +- (BOOL)belongsToContext:(id)context; + +/** + Tells the view that its child view size will change. + @param child The child view + */ +- (void)childWillResize:(TiViewProxy *)child; //Todo: Replace + +- (void)unarchiveFromTemplate:(id)viewTemplate; ++ (TiViewProxy *)unarchiveFromTemplate:(id)viewTemplate inContext:(id)context; + +@end + +#define USE_VIEW_FOR_METHOD(resultType, methodname, inputType) \ + -(resultType)methodname : (inputType)value \ + { \ + return [[self view] methodname:value]; \ + } + +#define USE_VIEW_FOR_VERIFY_WIDTH USE_VIEW_FOR_METHOD(CGFloat, verifyWidth, CGFloat) +#define USE_VIEW_FOR_VERIFY_HEIGHT USE_VIEW_FOR_METHOD(CGFloat, verifyHeight, CGFloat) +#define USE_VIEW_FOR_CONTENT_WIDTH USE_VIEW_FOR_METHOD(CGFloat, contentWidthForWidth, CGFloat) +#define USE_VIEW_FOR_CONTENT_HEIGHT USE_VIEW_FOR_METHOD(CGFloat, contentHeightForWidth, CGFloat) + +#define DECLARE_VIEW_CLASS_FOR_NEWVIEW(viewClass) \ + -(TiUIView *)newView \ + { \ + return [[viewClass alloc] init]; \ + } diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewTemplate.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewTemplate.h new file mode 100644 index 0000000..3b154b7 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewTemplate.h @@ -0,0 +1,21 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2013 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "TiProxy.h" + +@interface TiViewTemplate : TiProxy + +@property (nonatomic, readonly) NSString *type; +@property (nonatomic, readonly) NSDictionary *properties; +@property (nonatomic, readonly) NSDictionary *events; +@property (nonatomic, readonly) NSArray *childTemplates; + +- (id)initWithViewTemplate:(NSDictionary *)viewTemplate; +- (BOOL)isEmpty; + ++ (TiViewTemplate *)templateFromViewTemplate:(id)viewTemplate; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiWindowProxy.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiWindowProxy.h new file mode 100644 index 0000000..47b1d53 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiWindowProxy.h @@ -0,0 +1,47 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2021 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "TiTab.h" +#import "TiViewController.h" +#import "TiViewProxy.h" + +#import "TiUIiOSTransitionAnimationProxy.h" + +@class KrollPromise; + +@interface TiWindowProxy : TiViewProxy { + @protected + TiViewController *controller; + id parentController; + TiOrientationFlags _supportedOrientations; + BOOL opening; + BOOL opened; + BOOL closing; + BOOL focussed; + BOOL isModal; + BOOL hidesStatusBar; + BOOL forceModal; + UIStatusBarStyle barStyle; + TiViewProxy *tab; + TiAnimation *openAnimation; + TiAnimation *closeAnimation; + UIView *animatedOver; + TiUIiOSTransitionAnimationProxy *transitionProxy; + KrollPromise *openPromise; + KrollPromise *closePromise; +} + +@property (nonatomic, readwrite, assign) TiViewProxy *tab; +@property (nonatomic, readonly) TiProxy *tabGroup; +@property (nonatomic) BOOL isMasterWindow; +@property (nonatomic) BOOL isDetailWindow; +@property (nonatomic) BOOL safeAreaInsetsUpdated; + +- (void)processForSafeArea; +- (UIViewController *)windowHoldingController; +- (TiUIiOSTransitionAnimationProxy *)transitionAnimation; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TitaniumKit.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TitaniumKit.h new file mode 100644 index 0000000..6e1ed6e --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TitaniumKit.h @@ -0,0 +1,63 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2018-present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +//! Project version number for TitaniumKit. +FOUNDATION_EXPORT double TitaniumKitVersionNumber; + +//! Project version string for TitaniumKit. +FOUNDATION_EXPORT const unsigned char TitaniumKitVersionString[]; + +// TiBase.h needs to come first because of all the macro definitions +#import + +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import + +#define TISDK_VERSION_STRING @"8.0.0" diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+Alpha.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+Alpha.h new file mode 100644 index 0000000..f9ebab6 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+Alpha.h @@ -0,0 +1,23 @@ +// UIImage+Alpha.h +// Created by Trevor Harmon on 9/20/09. +// Free for personal or commercial use, with or without modification. +// No warranty is expressed or implied. + +// NOTE: Appcelerator modified to convert from Category to +// new Class name since iPhone seems to have some issues with Categories +// of built in Classes + +// Helper methods for adding an alpha layer to an image + +#import +#import + +@interface UIImageAlpha : NSObject + ++ (BOOL)hasAlpha:(UIImage *)image; ++ (UIImage *)normalize:(UIImage *)image; ++ (UIImage *)imageWithAlpha:(UIImage *)image; ++ (UIImage *)transparentBorderImage:(NSUInteger)borderSize image:(UIImage *)image; ++ (CGImageRef)newBorderMask:(NSUInteger)borderSize size:(CGSize)size; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+Resize.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+Resize.h new file mode 100644 index 0000000..6b84f94 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+Resize.h @@ -0,0 +1,33 @@ +// UIImage+Resize.h +// Created by Trevor Harmon on 8/5/09. +// Free for personal or commercial use, with or without modification. +// No warranty is expressed or implied. + +// NOTE: Appcelerator modified to convert from Category to +// new Class name since iPhone seems to have some issues with Categories +// of built in Classes +#import "TiDimension.h" + +@interface UIImageResize : NSObject { +} ++ (UIImage *)croppedImage:(CGRect)bounds image:(UIImage *)image; + ++ (UIImage *)thumbnailImage:(NSInteger)thumbnailSize + transparentBorder:(NSUInteger)borderSize + cornerRadius:(NSUInteger)cornerRadius + interpolationQuality:(CGInterpolationQuality)quality + image:(UIImage *)image; + ++ (UIImage *)resizedImage:(CGSize)newSize + interpolationQuality:(CGInterpolationQuality)quality + image:(UIImage *)image + hires:(BOOL)hires; + ++ (UIImage *)resizedImageWithContentMode:(UIViewContentMode)contentMode + bounds:(CGSize)bounds + interpolationQuality:(CGInterpolationQuality)quality + image:(UIImage *)image; ++ (UIImage *)resizedImageWithLeftCap:(TiDimension)leftCap + topCap:(TiDimension)topCap + image:(UIImage *)image; +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+RoundedCorner.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+RoundedCorner.h new file mode 100644 index 0000000..97d1d18 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+RoundedCorner.h @@ -0,0 +1,13 @@ +// UIImage+RoundedCorner.h +// Created by Trevor Harmon on 9/20/09. +// Free for personal or commercial use, with or without modification. +// No warranty is expressed or implied. + +// NOTE: Appcelerator modified to convert from Category to +// new Class name since iPhone seems to have some issues with Categories +// of built in Classes + +@interface UIImageRoundedCorner : NSObject { +} ++ (UIImage *)roundedCornerImage:(NSInteger)cornerSize borderSize:(NSInteger)borderSize image:(UIImage *)image; +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/WebFont.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/WebFont.h new file mode 100644 index 0000000..0003262 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/WebFont.h @@ -0,0 +1,125 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +/** + The class representing a font. + */ +@interface WebFont : NSObject { + NSString *family; + CGFloat size; + BOOL isSemiboldWeight; + BOOL isBoldWeight; + BOOL isThinWeight; + BOOL isLightWeight; + BOOL isUltraLightWeight; + BOOL isNormalWeight; + BOOL isItalicStyle; + BOOL isNormalStyle; + + UIFont *font; + + NSString *textStyle; +} + +/** + Provides access to the font family which is the official font name. + @see http://developer.appcelerator.com/apidoc/mobile/latest/Font-object.html + */ +@property (nonatomic, retain) NSString *family; + +/** + Provides access to the font size. + */ +@property (nonatomic) CGFloat size; + +/** + Whether or not the font size is not set. + @return _YES_ if the font size is not set, _NO_ otherwise. + */ +@property (nonatomic, readonly) BOOL isSizeNotSet; + +/** + Whether or not the font weight is bold. + */ +@property (nonatomic) BOOL isBoldWeight; + +/** + Whether or not the font weight is normal. + */ +@property (nonatomic) BOOL isNormalWeight; + +/** + Whether or not the font weight is thin. + */ +@property (nonatomic) BOOL isThinWeight; + +/** + Whether or not the font weight is light. + */ +@property (nonatomic) BOOL isLightWeight; + +/** + Whether or not the font weight is ultra light. + */ +@property (nonatomic) BOOL isUltraLightWeight; + +/** + Whether or not the font style is italic. + */ +@property (nonatomic) BOOL isItalicStyle; + +/** + Whether or not the font style is normal. + */ +@property (nonatomic) BOOL isNormalStyle; + +/** + Whether or not the font weight is semibold. + */ +@property (nonatomic) BOOL isSemiboldWeight; + +/** + Provides access to the Text Style. + */ +@property (nonatomic, readonly) NSString *textStyle; + +/** + Returns underlying font object. + @return The font + */ +- (UIFont *)font; + +/** + Tells the font to update its parameters from dictionary. + @param fontDict The dictionary to update from. + @param inheritedFont The font to inherit parameters from. + @return _YES_ if the update operation succeeded, _NO_ otherwise. + */ +- (BOOL)updateWithDict:(NSDictionary *)fontDict inherits:(WebFont *)inheritedFont; + +/** + Returns the default text font. + @return The default font. + */ ++ (WebFont *)defaultFont; + +/** + Returns the default bold font. + @return The default bold font. + */ ++ (WebFont *)defaultBoldFont; + +/** + Returns the font by name. + @param name The web font name. + @return The web font. + */ ++ (WebFont *)fontWithName:(NSString *)name; + +@end diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Webcolor.h b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Webcolor.h new file mode 100644 index 0000000..f13f444 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Webcolor.h @@ -0,0 +1,52 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2014 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +/** + The utility class for web colors. + */ +@interface Webcolor : NSObject { +} + ++ (UIColor *)checkmarkColor; + +/** + Returns web color by name. + @param colorName The color name. + @return The color object. + */ ++ (UIColor *)webColorNamed:(NSString *)colorName; + +/** + Returns the color for RGB function. + @param functionString The RGB function string. + @return The color object. + */ ++ (UIColor *)colorForRGBFunction:(NSString *)functionString; + +/** + Returns the color for hex string. + @param hexCode The hex string. + @return The color object. + */ ++ (UIColor *)colorForHex:(NSString *)hexCode; + ++ (void)flushCache; ++ (BOOL)isDarkColor:(UIColor *)color; + +//constants for iOS background texture colors. + +extern NSString *const IOS_COLOR_SCROLLVIEW_TEXTURED_BACKGROUND; +extern NSString *const IOS_COLOR_VIEW_FLIPSIDE_BACKGROUND; +extern NSString *const IOS_COLOR_GROUP_TABLEVIEW_BACKGROUND; +extern NSString *const IOS_COLOR_UNDER_PAGE_BACKGROUND; + +@end + +#define RGBCOLOR(r, g, b) [UIColor colorWithRed:r / 255.0 green:g / 255.0 blue:b / 255.0 alpha:1] +#define RGBACOLOR(r, g, b, a) [UIColor colorWithRed:r / 255.0 green:g / 255.0 blue:b / 255.0 alpha:a] diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Modules/module.modulemap b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Modules/module.modulemap new file mode 100644 index 0000000..28477de --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Modules/module.modulemap @@ -0,0 +1,6 @@ +framework module TitaniumKit { + umbrella header "TitaniumKit.h" + + export * + module * { export * } +} diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Resources/Info.plist b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Resources/Info.plist new file mode 100644 index 0000000..a6f4c13 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Resources/Info.plist @@ -0,0 +1,50 @@ + + + + + BuildMachineOSBuild + 19F101 + CFBundleDevelopmentRegion + en + CFBundleExecutable + TitaniumKit + CFBundleIdentifier + com.appcelerator.TitaniumKit + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + TitaniumKit + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSupportedPlatforms + + MacOSX + + CFBundleVersion + 1 + DTCompiler + com.apple.compilers.llvm.clang.1_0 + DTPlatformBuild + 12D4e + DTPlatformName + macosx + DTPlatformVersion + 11.1 + DTSDKBuild + 20C63 + DTSDKName + macosx11.1 + DTXcode + 1240 + DTXcodeBuild + 12D4e + LSMinimumSystemVersion + 10.15 + UIDeviceFamily + + 2 + + + diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/TitaniumKit b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/TitaniumKit new file mode 100755 index 0000000..bc162b2 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/TitaniumKit differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/_CodeSignature/CodeResources b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/_CodeSignature/CodeResources new file mode 100644 index 0000000..5443f0c --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/_CodeSignature/CodeResources @@ -0,0 +1,674 @@ + + + + + files + + Resources/Info.plist + + 0oJl90Olm0eQ4l+6SUCdzNsYDto= + + + files2 + + Headers/APIModule.h + + hash2 + + rRHuR2Nvy24GxVJ9pytuxKCqLEZfiESz4rIfu2CCe1M= + + + Headers/APSAnalytics.h + + hash2 + + KkOf9dkxxSUzNHITJ3W02rG+xeySewKDnztC8aOsxxo= + + + Headers/APSHTTPClient.h + + hash2 + + 7dSGOMbpVuhO8qXNjEMF1PJsBVxz+9RyzwDY5y31pBU= + + + Headers/APSHTTPHelper.h + + hash2 + + LvkAIOoZmPUwdEYTJN2wdkAf9N2OLvh1a9Eh6A/tkZo= + + + Headers/APSHTTPPostForm.h + + hash2 + + ihl406yA/HeqGJ651HgzxSI7hGiN35A5D10CXJFenXI= + + + Headers/APSHTTPRequest.h + + hash2 + + 5Yj7uzcNkjL0ovYPqRy+Cbq3st2oog2MJtbYWt4yPds= + + + Headers/APSHTTPResponse.h + + hash2 + + UN0l9dW7E64n693LERGKkjx2oKC+Av41D1oH2lyLonQ= + + + Headers/Bridge.h + + hash2 + + X1LmeOjOjMXTf7VrL4L0waEYA0F1QllygtsQQPJ3TX0= + + + Headers/ImageLoader.h + + hash2 + + RQeJXhi6Da3WSYr9lE9dF91G4TAAeZ5AkfrltGU2dAY= + + + Headers/JSValue+Addons.h + + hash2 + + 8RrpbEaI0b58YXlTPbk1I+mx8E7LYnCjthDhGymTzA4= + + + Headers/KrollBridge.h + + hash2 + + NdA3sCKdUg/RW5OIyBdQLXDRxW/Zzbr0zAEuknuMhuk= + + + Headers/KrollCallback.h + + hash2 + + yLmuSztluzutVrOccGQlYhuk7bk0w4FlegbJi8iHjAA= + + + Headers/KrollContext.h + + hash2 + + nLD8fTN4s95cLOHo1TrZ5jiKP69jcNMR9UDRCpbKkoA= + + + Headers/KrollObject.h + + hash2 + + G856iL3aQdqdOYx0yzIu8IGDi3wAo0L0+lXCWH424KE= + + + Headers/KrollPromise.h + + hash2 + + KytjK7p8jPTgdNoBKwALEjWi1mow9bbb+iK1JnpEfdE= + + + Headers/KrollWrapper.h + + hash2 + + kmMbUsEm9Elbs21xijSOOYP2OeCzyMI37UYbndadq2I= + + + Headers/LayoutConstraint.h + + hash2 + + VwhEl+6Tfupbotyd9EyMq8miZSITyiUNWwNcJCYkWtk= + + + Headers/ListenerEntry.h + + hash2 + + qEJOLIHq3IgAqqWB7oqxA+SJBu2BO2xiSwYc6/s86eY= + + + Headers/Mimetypes.h + + hash2 + + NWA70zM4hyjSu0GL3Lx8Co97auXWcQpiU5FFuFsnUpQ= + + + Headers/Module.h + + hash2 + + ZgtyUUJ8smAIiiDosvUr3m2vSu4UwiTDNqhMIz93gqs= + + + Headers/NSData+Additions.h + + hash2 + + OznvD561eJoatvYC4H8iiv06Dng3Q59v0hokS5YvHrI= + + + Headers/ObjcModule.h + + hash2 + + PhNZ0g6Usx1f+0zCENSsls+0Ysn64pHqEAv1DWnQWsU= + + + Headers/ObjcProxy.h + + hash2 + + 8ailOqbQQ9W9+yEnInXWqG9DHqMtG1fvnQcbbqXnzvU= + + + Headers/OperationQueue.h + + hash2 + + cDggg3Z9TwwxNRCTnER0SD/gj22AUTsC30ck0atUMqA= + + + Headers/SBJSON.h + + hash2 + + WOeHFXul7b8R8yBZnpXmd9BHs/jbAPg51akgWgfsDFk= + + + Headers/Ti2DMatrix.h + + hash2 + + kjAPJZv9NGztSlpHQ5ITZ/ai7H/B/cl2qukThBVg+vI= + + + Headers/Ti3DMatrix.h + + hash2 + + IiCW25WDQmg9Wo5UoTpaR9eOslUN3q8qY5/HzK/0IbE= + + + Headers/TiAnimation.h + + hash2 + + B6WBzSE3+6Rn7SESgT8fwyV3TbV3TiY5Jtoj1QgbDWw= + + + Headers/TiApp.h + + hash2 + + ecajwafTNLX+YNYU3AzmXRb010GAjiIRhzO2kIppeRk= + + + Headers/TiBase.h + + hash2 + + uVAN0MxLArHMqdaZksU8DYm1eFAptACKrezhnrvpGtU= + + + Headers/TiBindingRunLoop.h + + hash2 + + KINwimDSCQkmUgGHeVZ2Zc2VsIylEqO9hyuwM1OwkWs= + + + Headers/TiBlob.h + + hash2 + + EQMYYqqVLFrNabQkh8kKIDA4TQhgiKAXKWXOUuyMX1I= + + + Headers/TiBuffer.h + + hash2 + + qPOZ0xYornc0AtxsV28EjwZ4F/7G91O9FxXaVX62GDs= + + + Headers/TiColor.h + + hash2 + + ukujuzH7uSuTIxOv99+zSSGGY0pLQ2NvURP7v5E87NA= + + + Headers/TiComplexValue.h + + hash2 + + aTUCZE+7tcG393xFuGRE7gZVMqZjlIKIu1MUua6oMSw= + + + Headers/TiControllerProtocols.h + + hash2 + + Ayo65CR1zPeC14IRwKgIRfwVXBKeTSL8DmuX5Ogg2WU= + + + Headers/TiDefines.h + + hash2 + + B9pQ557rYFDNpIkGbAFkuGm8Hyx0PttvBu6tNLAhbwk= + + + Headers/TiDimension.h + + hash2 + + geq4/o67AR8naa7QiBf7ztwiuslrxRZXPzMVVTRakbA= + + + Headers/TiEvaluator.h + + hash2 + + Vf9lqV2vCDBDAJvGZZzBi4dkD7K2kM7+jz/tfn6aXK0= + + + Headers/TiExceptionHandler.h + + hash2 + + uKLdojDkeROHRHO11DzN1S8s0FPttSV9PS5AAgvmpY8= + + + Headers/TiFile.h + + hash2 + + GqZw6T2u5tLh6u+ugTlmwpQMv7kk8RRK6CSPBujqrSU= + + + Headers/TiFilesystemFileProxy.h + + hash2 + + EvJ4X+R7T5TFP8pPgVLvi/5zZLm0e921xSLlJB4I0QQ= + + + Headers/TiFilesystemFileStreamProxy.h + + hash2 + + iSy+X/9HOLxjnUgdaIoARaArILkASADVtT51/BH1WSA= + + + Headers/TiGradient.h + + hash2 + + t6cbpn/VBZA2G811Om1bP8gyshSM33l166L4jU/Ebr0= + + + Headers/TiHost.h + + hash2 + + ymIk4a4JAif8bRhSFpLQhHj6cJrvOPDLnfPR2VHtDKQ= + + + Headers/TiLayoutQueue.h + + hash2 + + q19ADKpRA9BRZupjvEdq4zKMLJaK4H+YJw764+r4jaM= + + + Headers/TiLocale.h + + hash2 + + IKm6cDS6Hw/DK9d+tFQ1KHALrWmM23Zh+0nwYI/KB9Y= + + + Headers/TiLogServer.h + + hash2 + + UPzmbA/gKGwZUiikzxQjrFHt372D2EZ6eo73tSMHMKw= + + + Headers/TiModule.h + + hash2 + + qNjKAWCw+Zdu2LLUDxlfQyfljVU1xuVDu9D/xCzeWIs= + + + Headers/TiPoint.h + + hash2 + + 04dN7bDy7qZbibRNzlwhjaIUSh0ZhajWb2ogntp7q7M= + + + Headers/TiProxy.h + + hash2 + + EcTsxor6yF5NauRH2Cm6RWNndDFMH0LlxodT1nYBvp4= + + + Headers/TiPublicAPI.h + + hash2 + + 3ZC6YUz0J1wwnRtTrnXfDz5p4FGPVm50VCblPilfni4= + + + Headers/TiRect.h + + hash2 + + 4Y+LkyBKEOb38Pg1wND2zwGKVY1LIe2iMXv4P/r3NMU= + + + Headers/TiRootViewController.h + + hash2 + + oIT6yD0vMPxHrR23xOWkrpiXgpr8F392sZ09Ph38g+Y= + + + Headers/TiSharedConfig.h + + hash2 + + AGbkMNHjeHgwlBqwx2GIdTsviMyYTobB4zO9SPZpv/8= + + + Headers/TiStreamProxy.h + + hash2 + + c7YN41CeYWpTUbGgCJac3804f2qJqB77hsiHscWSsZ0= + + + Headers/TiStylesheet.h + + hash2 + + FgBD4vnh3Obq2Y4mz427a/Ao+ZeIU++C2jniBzP5SI4= + + + Headers/TiTab.h + + hash2 + + c9YFNCLI3AlS0PPpFkDQAT9RNDU8ibyIz+sAx5jGx6U= + + + Headers/TiTabGroup.h + + hash2 + + JiQrnItZXqGIqdZUNlvXeCRnGk45GOH65IsHLIILfJ4= + + + Headers/TiThreading.h + + hash2 + + r84QFsh4330w6vjkP0tLsvp43GkASuWYs1jmWvAn7qs= + + + Headers/TiToolbar.h + + hash2 + + iCheSgJg5KK+2+2Uq0NTakSFy/e9a06wD5L6XZQxOzc= + + + Headers/TiUIView.h + + hash2 + + PlE2vAF1AHjkpCJgrfdQlF1qKvs4i6z9dYs71ec8IIY= + + + Headers/TiUIViewProxy.h + + hash2 + + d9BZi+xctshmpvB8JuhqG1LJ/9HQJk8Q+qZF77WtPuQ= + + + Headers/TiUIWindow.h + + hash2 + + p3KiLavWtIxjmwquDxI7yTLOy5m5q+8RQkDrFdNHNYs= + + + Headers/TiUIWindowProxy.h + + hash2 + + 9IgDrccJbCCcJzpCtT6w72+xPWsga3CzacjLSHjRTtc= + + + Headers/TiUIiOSTransitionAnimationProxy.h + + hash2 + + 4x/qnhOoy6Ng1lAUd3frT2frdXOFDvBM+fkvRlAjK/k= + + + Headers/TiUtils.h + + hash2 + + zytRIuuUGCjU4l2y5eOEp8YLLGpqx9MVMsr7OSnm3DM= + + + Headers/TiViewController.h + + hash2 + + 0PiFgDZFMyBlc1GIpGEb555qbuucSSXnNF8AJCpDHTk= + + + Headers/TiViewProxy.h + + hash2 + + TOnpbAQm2sI3haE9QsQ94FzV1G1sHWJ7Af1ZzL5gTMg= + + + Headers/TiViewTemplate.h + + hash2 + + g9ofTE9NLL1NFuHea2XT4a6cHokGwSxJb3MLAFUjlBM= + + + Headers/TiWindowProxy.h + + hash2 + + cl9lV70SiR8E3UrECHUcsiA+eNkCs9Dj3JGYj/GWuY0= + + + Headers/TitaniumKit.h + + hash2 + + u7HsabYZk2SRAvrhbyFGA3rUGyDHlx7o5VQgbmnX1zU= + + + Headers/UIImage+Alpha.h + + hash2 + + Mx15OvqmixDoyvhOdp9TGf+pvRX27ay0xWA41RfyW/k= + + + Headers/UIImage+Resize.h + + hash2 + + WgGQuO6V6ldbzvmdxnGgkgFz4sEOEjsfoQfE9Jj7FoQ= + + + Headers/UIImage+RoundedCorner.h + + hash2 + + RS4qlinLqbfmdSMLWRaq2GO3miR1r7cGe17EDXJUXbY= + + + Headers/WebFont.h + + hash2 + + uXJVaVnLzjtkmkKmUlYMVnuWHznETZQ9xP+G0qeSBkg= + + + Headers/Webcolor.h + + hash2 + + eC1vfis3CzLG0J1StJpxnzf1PWSayX4spLLxCQ77lVQ= + + + Modules/module.modulemap + + hash2 + + HPZNd7hiVso8vYLa+wHcuEdkDrMl0wm7yVbuvfVQzeU= + + + Resources/Info.plist + + hash2 + + exXhhhuL/skSfqtLQMhZSzIwK/Fd390hWi/eFv0XkZE= + + + + rules + + ^Resources/ + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^Resources/ + + weight + 20 + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/Current b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/Current new file mode 120000 index 0000000..8c7e5a6 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/Current @@ -0,0 +1 @@ +A \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/libGuyMcdoooooTipop.a b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/libGuyMcdoooooTipop.a new file mode 120000 index 0000000..264965c --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/libGuyMcdoooooTipop.a @@ -0,0 +1 @@ +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/XCBuildData/989b86255d5c1feb9e5ff1af44817cdf-buildRequest.json b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/XCBuildData/989b86255d5c1feb9e5ff1af44817cdf-buildRequest.json new file mode 100644 index 0000000..4f651e2 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/XCBuildData/989b86255d5c1feb9e5ff1af44817cdf-buildRequest.json @@ -0,0 +1,81 @@ +{ + "_buildCommand2" : { + "command" : "build", + "skipDependencies" : false, + "style" : "buildAndRun" + }, + "buildCommand" : "build", + "configuredTargets" : [ + { + "guid" : "2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082" + } + ], + "containerPath" : "/Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj", + "continueBuildingAfterErrors" : false, + "enableIndexBuildArena" : false, + "hideShellScriptEnvironment" : false, + "parameters" : { + "action" : "install", + "activeArchitecture" : "x86_64", + "activeRunDestination" : { + "disableOnlyActiveArch" : false, + "platform" : "macosx", + "sdk" : "macosx12.0", + "sdkVariant" : "iosmac", + "supportedArchitectures" : [ + "x86_64h", + "x86_64" + ], + "targetArchitecture" : "x86_64" + }, + "arenaInfo" : { + "buildIntermediatesPath" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex", + "buildProductsPath" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products", + "derivedDataPath" : "/Users/marcbender/Library/Developer/Xcode/DerivedData", + "indexDataStoreFolderPath" : "/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore", + "indexEnableDataStore" : true, + "indexPCHPath" : "/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/PrecompiledHeaders", + "pchPath" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders" + }, + "configurationName" : "Release", + "overrides" : { + "commandLine" : { + "table" : { + "ONLY_ACTIVE_ARCH" : "NO", + "SDKROOT" : "macosx12.0", + "SKIP_INSTALL" : "NO", + "SUPPORTS_MACCATALYST" : "YES" + } + }, + "synthesized" : { + "table" : { + "ACTION" : "install", + "ASSET_PACK_FOLDER_PATH" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/OnDemandResources", + "BITCODE_GENERATION_MODE" : "bitcode", + "DEPLOYMENT_LOCATION" : "YES", + "DEPLOYMENT_POSTPROCESSING" : "YES", + "DSTROOT" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation", + "EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE" : "NO", + "ENABLE_PREVIEWS" : "NO", + "INDEX_ENABLE_DATA_STORE" : "NO", + "MESSAGES_APPLICATION_EXTENSION_SUPPORT_FOLDER_PATH" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/MessagesApplicationExtensionSupport", + "MESSAGES_APPLICATION_SUPPORT_FOLDER_PATH" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/MessagesApplicationSupport", + "OBJROOT" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath", + "SHARED_PRECOMPS_DIR" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders", + "SWIFT_STDLIB_TOOL_UNSIGNED_DESTINATION_DIR" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/SwiftSupport", + "SYMROOT" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath", + "WATCHKIT_2_SUPPORT_FOLDER_PATH" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/WatchKitSupport2", + "WATCHKIT_SUPPORT_FOLDER_PATH" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/WatchKitSupport" + } + } + } + }, + "schemeCommand" : "launch", + "schemeCommand2" : "archive", + "shouldCollectMetrics" : false, + "showNonLoggedProgress" : true, + "useDryRun" : false, + "useImplicitDependencies" : true, + "useLegacyBuildLocations" : false, + "useParallelTargets" : true +} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/XCBuildData/989b86255d5c1feb9e5ff1af44817cdf-desc.xcbuild b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/XCBuildData/989b86255d5c1feb9e5ff1af44817cdf-desc.xcbuild new file mode 100644 index 0000000..87a3d9a Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/XCBuildData/989b86255d5c1feb9e5ff1af44817cdf-desc.xcbuild differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/XCBuildData/989b86255d5c1feb9e5ff1af44817cdf-manifest.xcbuild b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/XCBuildData/989b86255d5c1feb9e5ff1af44817cdf-manifest.xcbuild new file mode 100644 index 0000000..40148fa --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/XCBuildData/989b86255d5c1feb9e5ff1af44817cdf-manifest.xcbuild @@ -0,0 +1,130 @@ +client: + name: basic + version: 0 + file-system: default + +targets: + "": [""] + +nodes: + "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath": {"is-mutated":true} + "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst": {"is-mutated":true} + "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation": {"is-mutated":true} + "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a": {"is-mutated":true} + "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath": {"is-mutated":true} + "": {"is-command-timestamp":true} + "": {"is-command-timestamp":true} + "": {"is-command-timestamp":true} + +commands: + "::CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath","inputs":[],"outputs":["","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath"]} + "::CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath"],"outputs":["","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst"]} + "::CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation","inputs":[],"outputs":["","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation"]} + "::CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath","inputs":[],"outputs":["","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath"]} + "::ProcessXCFramework /Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/Frameworks/TitaniumKit.xcframework /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework ios macabi": {"tool":"process-xcframework","description":"ProcessXCFramework /Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/Frameworks/TitaniumKit.xcframework /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework ios macabi","inputs":["/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/Frameworks/TitaniumKit.xcframework/","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst"],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Modules","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Resources","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/TitaniumKit","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APIModule.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSAnalytics.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPClient.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPHelper.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPPostForm.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPRequest.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPResponse.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Bridge.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ImageLoader.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/JSValue+Addons.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollBridge.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollCallback.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollContext.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollObject.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollPromise.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollWrapper.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/LayoutConstraint.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ListenerEntry.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Mimetypes.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Module.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/NSData+Additions.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ObjcModule.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ObjcProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/OperationQueue.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/SBJSON.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Ti2DMatrix.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Ti3DMatrix.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiAnimation.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiApp.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBase.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBindingRunLoop.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBlob.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBuffer.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiColor.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiComplexValue.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiControllerProtocols.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiDefines.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiDimension.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiEvaluator.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiExceptionHandler.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFile.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFilesystemFileProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFilesystemFileStreamProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiGradient.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiHost.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLayoutQueue.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLocale.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLogServer.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiModule.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiPoint.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiPublicAPI.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiRect.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiRootViewController.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiSharedConfig.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiStreamProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiStylesheet.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiTab.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiTabGroup.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiThreading.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiToolbar.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIView.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIViewProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIWindow.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIWindowProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIiOSTransitionAnimationProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUtils.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewController.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewTemplate.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiWindowProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TitaniumKit.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+Alpha.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+Resize.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+RoundedCorner.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/WebFont.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Webcolor.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Modules","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Modules/module.modulemap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Resources","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Resources/Info.plist","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/TitaniumKit","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/_CodeSignature","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/_CodeSignature/CodeResources","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/Current"]} + "": {"tool":"phony","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath","",""],"outputs":[""]} + "": {"tool":"stale-file-removal","expectedOutputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/FBPOPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimatableProperty.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationEvent.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationRuntime.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationTracer.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPBasicAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCGUtils.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCustomAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPDecayAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPGeometry.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPLayerExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPMath.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPPropertyAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPSpringAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPVector.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/TransformationMatrix.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/Binary/libGuyMcdoooooTipop.a","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/Binary/libGuyMcdoooooTipop.a","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/4403900921092490547/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7031153137348716277/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/libGuyMcdoooooTipop.a","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop.LinkFileList","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/all-product-headers.yaml"],"roots":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath"],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-ChangePermissions": {"tool":"phony","inputs":["","","","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-CodeSign": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-CopyAside": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-RegisterProduct": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-StripSymbols": {"tool":"phony","inputs":["","","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-Validate": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--CopySwiftPackageResourcesTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--DocumentationTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--HeadermapTaskProducer": {"tool":"phony","inputs":["","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/all-product-headers.yaml"],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--InfoPlistTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--ModuleMapTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["","","","","","","","","","","","","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--ProductStructureTaskProducer": {"tool":"phony","inputs":["","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/libGuyMcdoooooTipop.a"],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--SanitizerTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--StubBinaryTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--SwiftABIBaselineGenerationTaskProducer": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--SwiftFrameworkABICheckerTaskProducer": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--TestHostTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--TestTargetTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--VersionPlistTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--begin-compiling": {"tool":"phony","inputs":["","","","","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Modules","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Resources","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/TitaniumKit","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APIModule.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSAnalytics.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPClient.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPHelper.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPPostForm.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPRequest.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPResponse.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Bridge.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ImageLoader.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/JSValue+Addons.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollBridge.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollCallback.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollContext.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollObject.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollPromise.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollWrapper.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/LayoutConstraint.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ListenerEntry.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Mimetypes.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Module.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/NSData+Additions.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ObjcModule.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ObjcProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/OperationQueue.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/SBJSON.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Ti2DMatrix.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Ti3DMatrix.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiAnimation.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiApp.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBase.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBindingRunLoop.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBlob.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBuffer.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiColor.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiComplexValue.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiControllerProtocols.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiDefines.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiDimension.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiEvaluator.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiExceptionHandler.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFile.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFilesystemFileProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFilesystemFileStreamProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiGradient.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiHost.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLayoutQueue.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLocale.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLogServer.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiModule.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiPoint.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiPublicAPI.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiRect.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiRootViewController.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiSharedConfig.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiStreamProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiStylesheet.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiTab.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiTabGroup.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiThreading.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiToolbar.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIView.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIViewProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIWindow.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIWindowProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIiOSTransitionAnimationProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUtils.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewController.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewTemplate.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiWindowProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TitaniumKit.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+Alpha.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+Resize.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+RoundedCorner.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/WebFont.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Webcolor.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Modules","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Modules/module.modulemap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Resources","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Resources/Info.plist","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/TitaniumKit","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/_CodeSignature","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/_CodeSignature/CodeResources","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/Current"],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--copy-headers-completion": {"tool":"phony","inputs":[""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--end": {"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/FBPOPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimatableProperty.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationEvent.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationRuntime.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationTracer.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPBasicAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCGUtils.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCustomAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPDecayAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPGeometry.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPLayerExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPMath.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPPropertyAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPSpringAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPVector.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/TransformationMatrix.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/Binary/libGuyMcdoooooTipop.a","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/Binary/libGuyMcdoooooTipop.a","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/4403900921092490547/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7031153137348716277/GuyMcdoooooTipop_Prefix.pch.gch","","","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/libGuyMcdoooooTipop.a","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop.LinkFileList","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/all-product-headers.yaml"],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--entry": {"tool":"phony","inputs":["","","","","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Modules","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Resources","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/TitaniumKit","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APIModule.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSAnalytics.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPClient.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPHelper.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPPostForm.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPRequest.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPResponse.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Bridge.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ImageLoader.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/JSValue+Addons.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollBridge.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollCallback.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollContext.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollObject.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollPromise.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollWrapper.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/LayoutConstraint.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ListenerEntry.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Mimetypes.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Module.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/NSData+Additions.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ObjcModule.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ObjcProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/OperationQueue.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/SBJSON.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Ti2DMatrix.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Ti3DMatrix.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiAnimation.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiApp.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBase.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBindingRunLoop.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBlob.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBuffer.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiColor.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiComplexValue.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiControllerProtocols.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiDefines.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiDimension.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiEvaluator.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiExceptionHandler.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFile.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFilesystemFileProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFilesystemFileStreamProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiGradient.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiHost.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLayoutQueue.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLocale.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLogServer.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiModule.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiPoint.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiPublicAPI.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiRect.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiRootViewController.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiSharedConfig.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiStreamProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiStylesheet.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiTab.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiTabGroup.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiThreading.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiToolbar.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIView.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIViewProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIWindow.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIWindowProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIiOSTransitionAnimationProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUtils.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewController.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewTemplate.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiWindowProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TitaniumKit.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+Alpha.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+Resize.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+RoundedCorner.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/WebFont.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Webcolor.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Modules","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Modules/module.modulemap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Resources","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Resources/Info.plist","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/TitaniumKit","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/_CodeSignature","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/_CodeSignature/CodeResources","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/Current",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--generated-headers": {"tool":"phony","inputs":[""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--immediate": {"tool":"phony","inputs":["","","","","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Modules","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Resources","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/TitaniumKit","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APIModule.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSAnalytics.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPClient.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPHelper.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPPostForm.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPRequest.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPResponse.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Bridge.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ImageLoader.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/JSValue+Addons.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollBridge.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollCallback.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollContext.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollObject.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollPromise.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollWrapper.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/LayoutConstraint.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ListenerEntry.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Mimetypes.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Module.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/NSData+Additions.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ObjcModule.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ObjcProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/OperationQueue.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/SBJSON.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Ti2DMatrix.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Ti3DMatrix.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiAnimation.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiApp.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBase.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBindingRunLoop.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBlob.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBuffer.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiColor.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiComplexValue.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiControllerProtocols.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiDefines.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiDimension.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiEvaluator.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiExceptionHandler.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFile.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFilesystemFileProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFilesystemFileStreamProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiGradient.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiHost.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLayoutQueue.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLocale.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLogServer.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiModule.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiPoint.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiPublicAPI.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiRect.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiRootViewController.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiSharedConfig.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiStreamProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiStylesheet.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiTab.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiTabGroup.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiThreading.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiToolbar.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIView.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIViewProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIWindow.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIWindowProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIiOSTransitionAnimationProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUtils.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewController.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewTemplate.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiWindowProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TitaniumKit.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+Alpha.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+Resize.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+RoundedCorner.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/WebFont.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Webcolor.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Modules","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Modules/module.modulemap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Resources","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/Resources/Info.plist","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/TitaniumKit","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/_CodeSignature","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/A/_CodeSignature/CodeResources","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Versions/Current"],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--modules-ready": {"tool":"phony","inputs":[""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--package-copy-files-phase": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--phase0-copy-headers": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--phase1-compile-sources": {"tool":"phony","inputs":["","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/FBPOPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimatableProperty.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationEvent.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationRuntime.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationTracer.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPBasicAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCGUtils.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCustomAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPDecayAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPGeometry.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPLayerExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPMath.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPPropertyAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPSpringAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPVector.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/TransformationMatrix.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/Binary/libGuyMcdoooooTipop.a","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/Binary/libGuyMcdoooooTipop.a","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/4403900921092490547/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7031153137348716277/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop.LinkFileList","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList"],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--unsigned-product-ready": {"tool":"phony","inputs":["","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/FBPOPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimatableProperty.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationEvent.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationRuntime.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationTracer.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPBasicAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCGUtils.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCustomAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPDecayAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPGeometry.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPLayerExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPMath.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPPropertyAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPSpringAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPVector.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/TransformationMatrix.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/Binary/libGuyMcdoooooTipop.a","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/Binary/libGuyMcdoooooTipop.a","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/4403900921092490547/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7031153137348716277/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop.LinkFileList","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList"],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--will-sign": {"tool":"phony","inputs":[""],"outputs":[""]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.d"],"deps-style":"makefile","signature":"887fd04f8518bcde61a687cf16487776"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/FBPOPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/FBPOPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/FBPOPAnimator.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/FBPOPAnimator.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/FBPOPAnimator.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/FBPOPAnimator.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/FBPOPAnimator.d"],"deps-style":"makefile","signature":"80115c882d2674d18ba15d41930a4644"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.d"],"deps-style":"makefile","signature":"671f72ba4e7a009ddc7b36ae38c0e5c3"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.d"],"deps-style":"makefile","signature":"b6e0a3991b7812fcc3c0a6838f29133c"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimatableProperty.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimatableProperty.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimatableProperty.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","arm64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimatableProperty.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimatableProperty.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimatableProperty.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimatableProperty.d"],"deps-style":"makefile","signature":"c0bf2483bfdff07dadd8cb9763987321"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","arm64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimation.d"],"deps-style":"makefile","signature":"91c64ae3a8fea2702dc90b125a0cd3ea"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationEvent.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationEvent.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationEvent.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","arm64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationEvent.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationEvent.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationEvent.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationEvent.d"],"deps-style":"makefile","signature":"a3e63946b0b4d47601ce2412fd7198b0"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationExtras.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","arm64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationExtras.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationExtras.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationExtras.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationExtras.d"],"deps-style":"makefile","signature":"5da4c1f928e7dfbbf6c5d3a1d6c07e38"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationRuntime.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationRuntime.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationRuntime.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","arm64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationRuntime.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationRuntime.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationRuntime.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationRuntime.d"],"deps-style":"makefile","signature":"177700b470ccbf773e660ea33d9e01b2"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationTracer.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationTracer.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationTracer.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","arm64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationTracer.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationTracer.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationTracer.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationTracer.d"],"deps-style":"makefile","signature":"3f561138a9ca0002f74dd9b8a204bcb0"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimator.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","arm64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimator.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimator.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimator.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimator.d"],"deps-style":"makefile","signature":"08f48a517e7b919e9ea3f2245debbe5f"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPBasicAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPBasicAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPBasicAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","arm64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPBasicAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPBasicAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPBasicAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPBasicAnimation.d"],"deps-style":"makefile","signature":"16b2be45efcf16ba01e7ba2dc4267280"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCGUtils.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCGUtils.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCGUtils.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","arm64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCGUtils.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCGUtils.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCGUtils.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCGUtils.d"],"deps-style":"makefile","signature":"33c08d7311751c8d9eebd59a973b6526"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCustomAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCustomAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCustomAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","arm64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCustomAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCustomAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCustomAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCustomAnimation.d"],"deps-style":"makefile","signature":"d1f68e4a49fa03acea9ab7d5590b1ce0"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPDecayAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPDecayAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPDecayAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","arm64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPDecayAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPDecayAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPDecayAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPDecayAnimation.d"],"deps-style":"makefile","signature":"38a7797fef0e9a12021971935fa3d9a3"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPGeometry.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPGeometry.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPGeometry.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","arm64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPGeometry.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPGeometry.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPGeometry.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPGeometry.d"],"deps-style":"makefile","signature":"fe33d2a6b48b053f2160f383053dd82f"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPLayerExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPLayerExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPLayerExtras.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","arm64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPLayerExtras.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPLayerExtras.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPLayerExtras.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPLayerExtras.d"],"deps-style":"makefile","signature":"937a0adf4f0f5d2082bdb992a6b6ba6e"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPMath.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPMath.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPMath.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","arm64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPMath.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPMath.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPMath.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPMath.d"],"deps-style":"makefile","signature":"c5bae5fd10738131f5711681d6c9dc4b"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPPropertyAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPPropertyAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPPropertyAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","arm64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPPropertyAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPPropertyAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPPropertyAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPPropertyAnimation.d"],"deps-style":"makefile","signature":"e403fdb29982c339b94a1451ac8692d6"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPSpringAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPSpringAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPSpringAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","arm64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPSpringAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPSpringAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPSpringAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPSpringAnimation.d"],"deps-style":"makefile","signature":"88debbf40ae21b374afb4c9cdc272902"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPVector.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPVector.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPVector.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","arm64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPVector.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPVector.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPVector.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPVector.d"],"deps-style":"makefile","signature":"109cd2683f1800ef673138e4bf9eecc7"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/TransformationMatrix.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/TransformationMatrix.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7031153137348716277/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/TransformationMatrix.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-target","arm64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-DTI_VERSION=","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7031153137348716277/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/TransformationMatrix.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/TransformationMatrix.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/TransformationMatrix.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/TransformationMatrix.d"],"deps-style":"makefile","signature":"2b14a95d41d567bdd573b73bb9fa6240"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.d"],"deps-style":"makefile","signature":"ac390d73fb02ebeb24f2a6a8b5728b1d"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.d"],"deps-style":"makefile","signature":"d25c233b2daa921c477a68edefa479f8"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.d"],"deps-style":"makefile","signature":"a4c7cd8b3c426d1419357e683cba3327"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.d"],"deps-style":"makefile","signature":"5b0c42ae1f65f30988a98aae49419b4b"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.d"],"deps-style":"makefile","signature":"25f7eb80ce719d46b340c9b1d7488dfe"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.d"],"deps-style":"makefile","signature":"64fae0b3cccd36aceaa55dd589a7d488"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.d"],"deps-style":"makefile","signature":"e13bfaed5bd76fbb579abbd3315d8f64"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.d"],"deps-style":"makefile","signature":"59bf0ba6903e0d4965e60b7e7d79e36f"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.d"],"deps-style":"makefile","signature":"132749a84a74abc943da8b759598a6ce"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.d"],"deps-style":"makefile","signature":"e3c82d5ad72ec2c58415c6e58645d7de"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.d"],"deps-style":"makefile","signature":"f7e423f88727968c519907b7519524fd"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.d"],"deps-style":"makefile","signature":"e57dc3022868725165463969fabc95a4"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.d"],"deps-style":"makefile","signature":"cef607d04c18c246716fc53973be01d6"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.d"],"deps-style":"makefile","signature":"149d1d37635e13ca839f85f851cd29d9"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.d"],"deps-style":"makefile","signature":"74710ebf67797c2c843abd5b12a6d8d4"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.d"],"deps-style":"makefile","signature":"90012ddd58dcc9c0b97fc64cb843d3ee"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.d"],"deps-style":"makefile","signature":"9b43373af4175589795a7d75c5103d01"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.d"],"deps-style":"makefile","signature":"3344bbe42b1910d201f125cecab693af"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.d"],"deps-style":"makefile","signature":"049375e7540cf79d4ded28a7274efcf4"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.d"],"deps-style":"makefile","signature":"0e5c1596bca2316a152a4c55dc7f2789"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.d"],"deps-style":"makefile","signature":"756737acad7c23a01999e0d07d45c37c"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/4403900921092490547/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-DTI_VERSION=","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/4403900921092490547/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.d"],"deps-style":"makefile","signature":"04c0f3c1378b3021a877af556d4f29d0"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:CreateUniversalBinary /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a normal arm64 x86_64": {"tool":"shell","description":"CreateUniversalBinary /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a normal arm64 x86_64","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/Binary/libGuyMcdoooooTipop.a","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/Binary/libGuyMcdoooooTipop.a","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a","",""],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool","-static","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/Binary/libGuyMcdoooooTipop.a","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/Binary/libGuyMcdoooooTipop.a","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a"],"env":{},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","signature":"cfc0c43757bce1833dc22750395271cc"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:Libtool /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/Binary/libGuyMcdoooooTipop.a normal arm64": {"tool":"shell","description":"Libtool /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/Binary/libGuyMcdoooooTipop.a normal arm64","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationRuntime.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPPropertyAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationEvent.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPGeometry.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPVector.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCGUtils.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/TransformationMatrix.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPLayerExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPDecayAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPBasicAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPSpringAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/FBPOPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPMath.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationTracer.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimatableProperty.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCustomAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop.LinkFileList","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/Binary/libGuyMcdoooooTipop.a"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool","-static","-arch_only","arm64","-D","-syslibroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-L/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-L/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/lib","-L/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/maccatalyst","-filelist","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop.LinkFileList","-framework","TitaniumKit","-framework","Foundation","-framework","SceneKit","-dependency_info","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop_libtool_dependency_info.dat","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/Binary/libGuyMcdoooooTipop.a"],"env":{"MACOSX_DEPLOYMENT_TARGET":"10.15"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop_libtool_dependency_info.dat"],"deps-style":"dependency-info","signature":"77c0697c8bfc5f15f8cb503781e31e33"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:Libtool /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/Binary/libGuyMcdoooooTipop.a normal x86_64": {"tool":"shell","description":"Libtool /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/Binary/libGuyMcdoooooTipop.a normal x86_64","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/Binary/libGuyMcdoooooTipop.a"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool","-static","-arch_only","x86_64","-D","-syslibroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-L/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-L/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/lib","-L/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/maccatalyst","-filelist","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList","-framework","TitaniumKit","-framework","Foundation","-framework","SceneKit","-dependency_info","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop_libtool_dependency_info.dat","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/Binary/libGuyMcdoooooTipop.a"],"env":{"MACOSX_DEPLOYMENT_TARGET":"10.15"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop_libtool_dependency_info.dat"],"deps-style":"dependency-info","signature":"4886cec66ff7422413d0a1703bab2db6"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:ProcessPCH /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"ProcessPCH /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch.gch"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c-header","-target","arm64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","-MD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch.d","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch.gch","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch.dia"],"env":{},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch.d"],"deps-style":"makefile","signature":"a73c2ba2d7e52011dc92b068eb2f20f8"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:ProcessPCH /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"ProcessPCH /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch.gch"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c-header","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","-MD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch.d","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch.gch","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch.dia"],"env":{},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch.d"],"deps-style":"makefile","signature":"8f4bb4edadb9eedf36b76b81890b835a"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++-header","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","-MD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.d","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.dia"],"env":{},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.d"],"deps-style":"makefile","signature":"680613701cfe34e796386314997ddc2e"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/4403900921092490547/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/4403900921092490547/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/4403900921092490547/GuyMcdoooooTipop_Prefix.pch.gch"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++-header","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-DTI_VERSION=","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","-MD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/4403900921092490547/GuyMcdoooooTipop_Prefix.pch.d","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/4403900921092490547/GuyMcdoooooTipop_Prefix.pch.gch","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/4403900921092490547/GuyMcdoooooTipop_Prefix.pch.dia"],"env":{},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/4403900921092490547/GuyMcdoooooTipop_Prefix.pch.d"],"deps-style":"makefile","signature":"bbb41b2195478069f37a20195c4b3838"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++-header","-target","arm64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","-MD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.d","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.dia"],"env":{},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.d"],"deps-style":"makefile","signature":"7b8bcf8f463f96eba531c19de46ff7e4"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7031153137348716277/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7031153137348716277/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7031153137348716277/GuyMcdoooooTipop_Prefix.pch.gch"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++-header","-target","arm64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-Os","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-DTI_VERSION=","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DTI_POST_1_2","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","-MD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7031153137348716277/GuyMcdoooooTipop_Prefix.pch.d","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7031153137348716277/GuyMcdoooooTipop_Prefix.pch.gch","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7031153137348716277/GuyMcdoooooTipop_Prefix.pch.dia"],"env":{},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7031153137348716277/GuyMcdoooooTipop_Prefix.pch.d"],"deps-style":"makefile","signature":"8b78eb2516be6db8d74c1c067612b2e5"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:SetMode u+w,go-w,a+rX /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a": {"tool":"shell","description":"SetMode u+w,go-w,a+rX /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a","inputs":["","","","",""],"outputs":[""],"args":["/bin/chmod","-RH","u+w,go-w,a+rX","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a"],"env":{},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","signature":"3ed28fa811a60ef27064dda978c225cb"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:SetOwnerAndGroup marcbender:staff /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a": {"tool":"shell","description":"SetOwnerAndGroup marcbender:staff /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a","inputs":["","","",""],"outputs":["",""],"args":["/usr/sbin/chown","-RH","marcbender:staff","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a"],"env":{},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","signature":"954e6542a7527e78229b53d6b0ade075"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:Strip /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a": {"tool":"shell","description":"Strip /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a","inputs":["","","",""],"outputs":["",""],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip","-S","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a"],"env":{},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","signature":"d0fa39f07a888fdbbc3c62ed8f223fb6"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:SymLink /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/libGuyMcdoooooTipop.a /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a": {"tool":"symlink","description":"SymLink /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/libGuyMcdoooooTipop.a /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/libGuyMcdoooooTipop.a"],"contents":"/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop.LinkFileList","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop.LinkFileList"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Release:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/all-product-headers.yaml","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/all-product-headers.yaml"]} + diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/XCBuildData/989b86255d5c1feb9e5ff1af44817cdf-targetGraph.txt b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/XCBuildData/989b86255d5c1feb9e5ff1af44817cdf-targetGraph.txt new file mode 100644 index 0000000..c15bcff --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/XCBuildData/989b86255d5c1feb9e5ff1af44817cdf-targetGraph.txt @@ -0,0 +1,2 @@ +Target dependency graph (1 target) +tipop in tipop, no dependencies \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/XCBuildData/BuildDescriptionCacheIndex-8170c099381690cf4927789cd79fafdc b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/XCBuildData/BuildDescriptionCacheIndex-8170c099381690cf4927789cd79fafdc new file mode 100644 index 0000000..99be19e Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/XCBuildData/BuildDescriptionCacheIndex-8170c099381690cf4927789cd79fafdc differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/XCBuildData/build.db b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/XCBuildData/build.db new file mode 100644 index 0000000..f35691b Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/XCBuildData/build.db differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap similarity index 100% rename from iphone/build/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap rename to iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap similarity index 100% rename from iphone/build/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap rename to iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap new file mode 100644 index 0000000..dd8b535 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap new file mode 100644 index 0000000..036f549 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap new file mode 100644 index 0000000..f5b517c Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap new file mode 100644 index 0000000..dd8b535 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/Binary/libGuyMcdoooooTipop.a b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/Binary/libGuyMcdoooooTipop.a new file mode 100644 index 0000000..cea5c42 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/Binary/libGuyMcdoooooTipop.a differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.d new file mode 100644 index 0000000..fa53acf --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.d @@ -0,0 +1,21 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xcselect.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/kcdata.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/uuid.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/device.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bank.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_posix_sys_types.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_cdefs.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/dyld.modulemap \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.o new file mode 100644 index 0000000..5ff72d6 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/FBPOPAnimator.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/FBPOPAnimator.d new file mode 100644 index 0000000..2876327 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/FBPOPAnimator.d @@ -0,0 +1,126 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xcselect.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/kcdata.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/uuid.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/device.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bank.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_posix_sys_types.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_cdefs.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/dyld.modulemap \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiBase.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Modules/module.modulemap \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Webcolor.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/UIImage+RoundedCorner.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/UIImage+Resize.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/UIImage+Alpha.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIiOSTransitionAnimationProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewController.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiTab.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiWindowProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindowProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindow.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIViewProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiToolbar.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiTabGroup.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiLogServer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiLocale.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiLayoutQueue.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiStreamProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiFilesystemFileStreamProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiFilesystemFileProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiExceptionHandler.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiComplexValue.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiBlob.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewTemplate.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiGradient.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiPoint.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiModule.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ListenerEntry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/WebFont.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiFile.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiColor.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiBuffer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUtils.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/LayoutConstraint.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRect.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiStylesheet.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiHost.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Bridge.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollBridge.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Ti3DMatrix.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiBindingRunLoop.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollObject.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollWrapper.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollCallback.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Ti2DMatrix.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/SBJSON.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/OperationQueue.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/NSData+Additions.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Mimetypes.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollPromise.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/JSValue+Addons.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiDimension.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ImageLoader.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSHTTPResponse.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSHTTPRequest.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSHTTPPostForm.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSHTTPHelper.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSHTTPClient.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSAnalytics.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ObjcProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollContext.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiEvaluator.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Module.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ObjcModule.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APIModule.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiPublicAPI.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiThreading.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiSharedConfig.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiBase.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiHost.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiUtils.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiViewProxy.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiUILabel.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/../Classes/TiUILabel.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiUIScrollView.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/../Classes/TiUIScrollView.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/Ti3DMatrix.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/KrollCallback.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/LayoutConstraint.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POP.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/FBPOPAnimator.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/FBPOPAnimator.dia new file mode 100644 index 0000000..7ae9eb3 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/FBPOPAnimator.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/FBPOPAnimator.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/FBPOPAnimator.o new file mode 100644 index 0000000..e202452 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/FBPOPAnimator.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop.LinkFileList b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop.LinkFileList new file mode 100644 index 0000000..3cdeb80 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop.LinkFileList @@ -0,0 +1,22 @@ +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationRuntime.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPPropertyAnimation.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationEvent.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPGeometry.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPVector.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCGUtils.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimator.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/TransformationMatrix.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPLayerExtras.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPDecayAnimation.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPBasicAnimation.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPSpringAnimation.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationExtras.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/FBPOPAnimator.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPMath.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationTracer.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimation.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimatableProperty.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCustomAnimation.o diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.d new file mode 100644 index 0000000..b85e893 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.d @@ -0,0 +1,127 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xcselect.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/kcdata.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/uuid.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/device.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bank.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_posix_sys_types.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_cdefs.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/dyld.modulemap \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Modules/module.modulemap \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Webcolor.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/UIImage+RoundedCorner.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/UIImage+Resize.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/UIImage+Alpha.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIiOSTransitionAnimationProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewController.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiTab.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiWindowProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindowProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindow.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIViewProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiToolbar.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiTabGroup.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiLogServer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiLocale.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiLayoutQueue.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiStreamProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiFilesystemFileStreamProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiFilesystemFileProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiExceptionHandler.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiComplexValue.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiBlob.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewTemplate.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiGradient.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiPoint.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiModule.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ListenerEntry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/WebFont.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiFile.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiColor.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiBuffer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUtils.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/LayoutConstraint.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRect.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiStylesheet.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiHost.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Bridge.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollBridge.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Ti3DMatrix.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiBindingRunLoop.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollObject.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollWrapper.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollCallback.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Ti2DMatrix.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/SBJSON.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/OperationQueue.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/NSData+Additions.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Mimetypes.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollPromise.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/JSValue+Addons.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiDimension.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ImageLoader.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSHTTPResponse.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSHTTPRequest.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSHTTPPostForm.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSHTTPHelper.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSHTTPClient.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSAnalytics.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ObjcProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollContext.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiEvaluator.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Module.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ObjcModule.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APIModule.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiPublicAPI.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiThreading.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiSharedConfig.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiBase.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiBase.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiHost.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiUtils.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiViewProxy.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiUILabel.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/../Classes/TiUILabel.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiUIScrollView.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/../Classes/TiUIScrollView.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/Ti3DMatrix.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/KrollCallback.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/LayoutConstraint.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POP.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.dia new file mode 100644 index 0000000..2aad14d Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.o new file mode 100644 index 0000000..2b30703 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.d new file mode 100644 index 0000000..d9751d7 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.d @@ -0,0 +1,21 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xcselect.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/kcdata.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/uuid.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/device.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bank.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_posix_sys_types.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_cdefs.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/dyld.modulemap \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.o new file mode 100644 index 0000000..ebdc047 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop_libtool_dependency_info.dat b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop_libtool_dependency_info.dat new file mode 100644 index 0000000..dd154b0 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop_libtool_dependency_info.dat differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimatableProperty.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimatableProperty.d new file mode 100644 index 0000000..5a68004 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimatableProperty.d @@ -0,0 +1,11 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimatableProperty.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimatableProperty.dia new file mode 100644 index 0000000..b8fdc0d Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimatableProperty.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimatableProperty.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimatableProperty.o new file mode 100644 index 0000000..69e0e05 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimatableProperty.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimation.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimation.d new file mode 100644 index 0000000..2319dc3 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimation.d @@ -0,0 +1,22 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAction.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracerInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringSolver.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatorPrivate.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimation.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimation.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimation.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimation.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimation.o new file mode 100644 index 0000000..15c271f Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimation.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationEvent.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationEvent.d new file mode 100644 index 0000000..83a193b --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationEvent.d @@ -0,0 +1,6 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEventInternal.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationEvent.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationEvent.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationEvent.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationEvent.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationEvent.o new file mode 100644 index 0000000..eadefec Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationEvent.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationExtras.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationExtras.d new file mode 100644 index 0000000..dd2815c --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationExtras.d @@ -0,0 +1,16 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationPrivate.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationExtras.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationExtras.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationExtras.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationExtras.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationExtras.o new file mode 100644 index 0000000..4f8736a Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationExtras.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationRuntime.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationRuntime.d new file mode 100644 index 0000000..6884a2b --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationRuntime.d @@ -0,0 +1,10 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationRuntime.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationRuntime.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationRuntime.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationRuntime.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationRuntime.o new file mode 100644 index 0000000..7dd9717 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationRuntime.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationTracer.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationTracer.d new file mode 100644 index 0000000..b7fa068 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationTracer.d @@ -0,0 +1,20 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEventInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAction.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracerInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringSolver.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationTracer.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationTracer.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationTracer.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationTracer.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationTracer.o new file mode 100644 index 0000000..9cfab30 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationTracer.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimator.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimator.d new file mode 100644 index 0000000..398e1a0 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimator.d @@ -0,0 +1,26 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatorPrivate.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAction.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracerInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringSolver.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimator.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimator.dia new file mode 100644 index 0000000..5220345 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimator.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimator.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimator.o new file mode 100644 index 0000000..09e2bec Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimator.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPBasicAnimation.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPBasicAnimation.d new file mode 100644 index 0000000..9869a21 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPBasicAnimation.d @@ -0,0 +1,21 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAction.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracerInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringSolver.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPBasicAnimation.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPBasicAnimation.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPBasicAnimation.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPBasicAnimation.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPBasicAnimation.o new file mode 100644 index 0000000..d103038 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPBasicAnimation.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCGUtils.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCGUtils.d new file mode 100644 index 0000000..5bdf3f9 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCGUtils.d @@ -0,0 +1,6 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCGUtils.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCGUtils.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCGUtils.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCGUtils.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCGUtils.o new file mode 100644 index 0000000..84eabe7 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCGUtils.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCustomAnimation.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCustomAnimation.d new file mode 100644 index 0000000..483a7c6 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCustomAnimation.d @@ -0,0 +1,17 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAction.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracerInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringSolver.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCustomAnimation.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCustomAnimation.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCustomAnimation.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCustomAnimation.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCustomAnimation.o new file mode 100644 index 0000000..10e267a Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCustomAnimation.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPDecayAnimation.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPDecayAnimation.d new file mode 100644 index 0000000..b5df091 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPDecayAnimation.d @@ -0,0 +1,21 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAction.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracerInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringSolver.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPDecayAnimation.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPDecayAnimation.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPDecayAnimation.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPDecayAnimation.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPDecayAnimation.o new file mode 100644 index 0000000..9e423f3 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPDecayAnimation.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPGeometry.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPGeometry.d new file mode 100644 index 0000000..c262e1e --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPGeometry.d @@ -0,0 +1,6 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPGeometry.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPGeometry.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPGeometry.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPGeometry.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPGeometry.o new file mode 100644 index 0000000..208c57a Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPGeometry.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPLayerExtras.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPLayerExtras.d new file mode 100644 index 0000000..871ace1 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPLayerExtras.d @@ -0,0 +1,7 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPLayerExtras.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPLayerExtras.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPLayerExtras.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPLayerExtras.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPLayerExtras.o new file mode 100644 index 0000000..df95d9a Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPLayerExtras.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPMath.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPMath.d new file mode 100644 index 0000000..f5df1f8 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPMath.d @@ -0,0 +1,13 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationPrivate.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/UnitBezier.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPMath.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPMath.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPMath.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPMath.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPMath.o new file mode 100644 index 0000000..1d5ce88 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPMath.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPPropertyAnimation.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPPropertyAnimation.d new file mode 100644 index 0000000..9d06e65 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPPropertyAnimation.d @@ -0,0 +1,19 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAction.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracerInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringSolver.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPPropertyAnimation.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPPropertyAnimation.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPPropertyAnimation.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPPropertyAnimation.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPPropertyAnimation.o new file mode 100644 index 0000000..3604a23 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPPropertyAnimation.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPSpringAnimation.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPSpringAnimation.d new file mode 100644 index 0000000..39df8f4 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPSpringAnimation.d @@ -0,0 +1,22 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAction.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracerInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringSolver.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPSpringAnimation.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPSpringAnimation.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPSpringAnimation.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPSpringAnimation.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPSpringAnimation.o new file mode 100644 index 0000000..a16b7e4 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPSpringAnimation.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPVector.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPVector.d new file mode 100644 index 0000000..a1e08d0 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPVector.d @@ -0,0 +1,8 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPVector.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPVector.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPVector.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPVector.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPVector.o new file mode 100644 index 0000000..9b7305e Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPVector.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/TransformationMatrix.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/TransformationMatrix.d new file mode 100644 index 0000000..ed0ae6c --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/TransformationMatrix.d @@ -0,0 +1,6 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/FloatConversion.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/TransformationMatrix.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/TransformationMatrix.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/TransformationMatrix.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/TransformationMatrix.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/TransformationMatrix.o new file mode 100644 index 0000000..b07f311 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/TransformationMatrix.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/Binary/libGuyMcdoooooTipop.a b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/Binary/libGuyMcdoooooTipop.a new file mode 100644 index 0000000..afcc77e Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/Binary/libGuyMcdoooooTipop.a differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.d new file mode 100644 index 0000000..fa53acf --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.d @@ -0,0 +1,21 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xcselect.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/kcdata.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/uuid.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/device.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bank.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_posix_sys_types.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_cdefs.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/dyld.modulemap \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o new file mode 100644 index 0000000..aac9fa9 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.d new file mode 100644 index 0000000..2876327 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.d @@ -0,0 +1,126 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xcselect.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/kcdata.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/uuid.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/device.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bank.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_posix_sys_types.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_cdefs.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/dyld.modulemap \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiBase.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Modules/module.modulemap \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Webcolor.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/UIImage+RoundedCorner.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/UIImage+Resize.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/UIImage+Alpha.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIiOSTransitionAnimationProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewController.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiTab.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiWindowProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindowProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindow.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIViewProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiToolbar.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiTabGroup.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiLogServer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiLocale.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiLayoutQueue.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiStreamProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiFilesystemFileStreamProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiFilesystemFileProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiExceptionHandler.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiComplexValue.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiBlob.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewTemplate.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiGradient.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiPoint.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiModule.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ListenerEntry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/WebFont.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiFile.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiColor.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiBuffer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUtils.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/LayoutConstraint.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRect.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiStylesheet.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiHost.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Bridge.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollBridge.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Ti3DMatrix.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiBindingRunLoop.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollObject.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollWrapper.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollCallback.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Ti2DMatrix.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/SBJSON.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/OperationQueue.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/NSData+Additions.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Mimetypes.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollPromise.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/JSValue+Addons.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiDimension.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ImageLoader.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSHTTPResponse.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSHTTPRequest.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSHTTPPostForm.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSHTTPHelper.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSHTTPClient.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSAnalytics.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ObjcProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollContext.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiEvaluator.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Module.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ObjcModule.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APIModule.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiPublicAPI.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiThreading.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiSharedConfig.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiBase.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiHost.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiUtils.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiViewProxy.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiUILabel.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/../Classes/TiUILabel.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiUIScrollView.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/../Classes/TiUIScrollView.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/Ti3DMatrix.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/KrollCallback.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/LayoutConstraint.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POP.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.dia new file mode 100644 index 0000000..7ae9eb3 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o new file mode 100644 index 0000000..65f2cc1 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList new file mode 100644 index 0000000..943d61a --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList @@ -0,0 +1,22 @@ +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.d new file mode 100644 index 0000000..b85e893 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.d @@ -0,0 +1,127 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xcselect.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/kcdata.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/uuid.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/device.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bank.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_posix_sys_types.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_cdefs.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/dyld.modulemap \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Modules/module.modulemap \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Webcolor.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/UIImage+RoundedCorner.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/UIImage+Resize.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/UIImage+Alpha.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIiOSTransitionAnimationProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewController.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiTab.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiWindowProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindowProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindow.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIViewProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiToolbar.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiTabGroup.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiLogServer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiLocale.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiLayoutQueue.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiStreamProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiFilesystemFileStreamProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiFilesystemFileProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiExceptionHandler.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiComplexValue.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiBlob.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewTemplate.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiGradient.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiPoint.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiModule.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ListenerEntry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/WebFont.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiFile.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiColor.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiBuffer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUtils.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/LayoutConstraint.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRect.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiStylesheet.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiHost.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Bridge.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollBridge.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Ti3DMatrix.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiBindingRunLoop.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollObject.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollWrapper.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollCallback.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Ti2DMatrix.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/SBJSON.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/OperationQueue.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/NSData+Additions.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Mimetypes.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollPromise.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/JSValue+Addons.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiDimension.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ImageLoader.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSHTTPResponse.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSHTTPRequest.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSHTTPPostForm.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSHTTPHelper.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSHTTPClient.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSAnalytics.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ObjcProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollContext.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiEvaluator.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Module.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ObjcModule.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APIModule.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiPublicAPI.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiThreading.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiSharedConfig.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiBase.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiBase.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiHost.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiUtils.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiViewProxy.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiUILabel.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/../Classes/TiUILabel.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiUIScrollView.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/../Classes/TiUIScrollView.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/Ti3DMatrix.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/KrollCallback.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/LayoutConstraint.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POP.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.dia new file mode 100644 index 0000000..2aad14d Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o new file mode 100644 index 0000000..75e5f28 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.d new file mode 100644 index 0000000..d9751d7 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.d @@ -0,0 +1,21 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xcselect.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/kcdata.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/uuid.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/device.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bank.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_posix_sys_types.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_cdefs.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/dyld.modulemap \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o new file mode 100644 index 0000000..c936c19 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop_libtool_dependency_info.dat b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop_libtool_dependency_info.dat new file mode 100644 index 0000000..811dce2 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop_libtool_dependency_info.dat differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.d new file mode 100644 index 0000000..5a68004 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.d @@ -0,0 +1,11 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.dia new file mode 100644 index 0000000..b8fdc0d Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o new file mode 100644 index 0000000..42ec0e1 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.d new file mode 100644 index 0000000..2319dc3 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.d @@ -0,0 +1,22 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAction.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracerInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringSolver.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatorPrivate.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o new file mode 100644 index 0000000..268cdd5 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.d new file mode 100644 index 0000000..83a193b --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.d @@ -0,0 +1,6 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEventInternal.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o new file mode 100644 index 0000000..7098342 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.d new file mode 100644 index 0000000..dd2815c --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.d @@ -0,0 +1,16 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationPrivate.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o new file mode 100644 index 0000000..c1f79e0 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.d new file mode 100644 index 0000000..6884a2b --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.d @@ -0,0 +1,10 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o new file mode 100644 index 0000000..e00ae75 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.d new file mode 100644 index 0000000..b7fa068 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.d @@ -0,0 +1,20 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEventInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAction.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracerInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringSolver.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o new file mode 100644 index 0000000..23276fa Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.d new file mode 100644 index 0000000..398e1a0 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.d @@ -0,0 +1,26 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatorPrivate.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAction.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracerInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringSolver.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.dia new file mode 100644 index 0000000..5220345 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o new file mode 100644 index 0000000..5c79c8e Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.d new file mode 100644 index 0000000..9869a21 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.d @@ -0,0 +1,21 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAction.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracerInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringSolver.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o new file mode 100644 index 0000000..ee3f1cb Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.d new file mode 100644 index 0000000..5bdf3f9 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.d @@ -0,0 +1,6 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o new file mode 100644 index 0000000..2fa23a1 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.d new file mode 100644 index 0000000..483a7c6 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.d @@ -0,0 +1,17 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAction.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracerInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringSolver.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o new file mode 100644 index 0000000..8e0373a Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.d new file mode 100644 index 0000000..b5df091 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.d @@ -0,0 +1,21 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAction.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracerInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringSolver.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o new file mode 100644 index 0000000..e7affee Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.d new file mode 100644 index 0000000..c262e1e --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.d @@ -0,0 +1,6 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o new file mode 100644 index 0000000..d47cd08 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.d new file mode 100644 index 0000000..871ace1 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.d @@ -0,0 +1,7 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o new file mode 100644 index 0000000..e60930a Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.d new file mode 100644 index 0000000..f5df1f8 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.d @@ -0,0 +1,13 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationPrivate.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/UnitBezier.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o new file mode 100644 index 0000000..1d99c93 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.d new file mode 100644 index 0000000..9d06e65 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.d @@ -0,0 +1,19 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAction.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracerInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringSolver.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o new file mode 100644 index 0000000..89b06df Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.d new file mode 100644 index 0000000..39df8f4 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.d @@ -0,0 +1,22 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAction.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracerInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringSolver.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o new file mode 100644 index 0000000..5020cb2 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.d new file mode 100644 index 0000000..a1e08d0 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.d @@ -0,0 +1,8 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o new file mode 100644 index 0000000..42703b3 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.d new file mode 100644 index 0000000..ed0ae6c --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.d @@ -0,0 +1,6 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/FloatConversion.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o new file mode 100644 index 0000000..5446ebd Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/all-product-headers.yaml b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/all-product-headers.yaml new file mode 100644 index 0000000..ee59dbc --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/all-product-headers.yaml @@ -0,0 +1 @@ +{"case-sensitive":"false","roots":[],"version":0} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch.d new file mode 100644 index 0000000..4867db3 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch.d @@ -0,0 +1,2212 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/Darwin-HUB66TE1ZK5G.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xcselect.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/kcdata.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/uuid.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/device.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bank.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_posix_sys_types.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_cdefs.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/cdefs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_symbol_aliasing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_posix_availability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/complex.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/copyfile.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/stdint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/stdint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_int8_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_int16_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_int32_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_int64_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uint8_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uint16_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uint32_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uint64_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_intptr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int8_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int16_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int32_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int64_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_uintptr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_intmax_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uintmax_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_ctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/runetype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_size_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ct_rune_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_rune_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_wchar_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_wint_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/err.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/Availability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/AvailabilityVersions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/AvailabilityInternal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/errno.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/errno.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_errno_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/fenv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/float.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/float.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/inttypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/iso646.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/_limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/syslimits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/locale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_locale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_null.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/math.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/readpassphrase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/setjmp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/signal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/signal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/appleapiopts.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/signal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/signal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/_mcontext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/_mcontext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/_structs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/_structs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_sigaltstack.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ucontext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_pid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_sigset_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_uid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/stdarg.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/stdatomic.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/stddef.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/stdbool.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/stdio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_stdio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_va_list.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/stdio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_ctermid.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_off_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ssize_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/secure/_stdio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/secure/_common.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/stdlib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/wait.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_id_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/resource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_timeval.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/endian.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/endian.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_endian.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/_OSByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/arm/OSByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/arch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/alloca.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/malloc/_malloc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_dev_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_mode_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/string.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_rsize_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/strings.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/secure/_strings.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/secure/_string.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/tgmath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/tgmath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/time.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_clock_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_time_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_timespec.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/util.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ttycom.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ioccom.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_char.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_short.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_caddr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_blkcnt_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_blksize_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_gid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_in_addr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_in_port_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ino_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ino64_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_key_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_nlink_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_useconds_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_suseconds_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_def.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_setsize.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_set.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_clr.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_zero.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_isset.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_copy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_cond_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_once_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_key_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fsblkcnt_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fsfilcnt_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/pwd.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/uuid/uuid.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_uuid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/termios.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/termios.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_posix_vdisable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ttydefaults.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/utmp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/wchar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_mbstate_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_wctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/__wctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_wctype_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/wctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_wctrans_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_xlocale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_ctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/__wctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_inttypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_stdio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_stdlib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_string.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_time.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_wchar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_wctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_langinfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_nl_item.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_monetary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_regex.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_regex.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xattr_flags.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/aio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/aio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_o_sync.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_o_dsync.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arpa/inet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/in.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/socket.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/net_kev.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_sa_family_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_socklen_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_iovec_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6/in6.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/cpio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dirent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/dirent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/dir.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dlfcn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/fcntl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/fcntl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_seek_set.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_s_ifmt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_filesec_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/fmtmsg.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/fnmatch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ftw.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/stat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/glob.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/grp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/iconv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ifaddrs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/availability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ioctl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/filio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/sockio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/langinfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libgen.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/monetary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ndbm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netdb.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/if_dl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/if.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/if_var.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/time.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_timeval64.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_select.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/queue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_timeval32.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/if_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/tcp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/nl_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/poll.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/poll.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/pthread/pthread.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/pthread/sched.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/pthread/pthread_impl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/pthread/qos.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/qos.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_mach_port_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/pthread_spis.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/pthread/spawn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/spawn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/spawn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/exception_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/exception.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/exception.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/port.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/boolean.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/boolean.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/boolean.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/vm_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/vm_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_status.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/thread_status.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/thread_status.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/thread_state.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/thread_state.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/message.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/kern_return.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/kern_return.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/kern_return.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/ipc_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/regex.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/search.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/semaphore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/semaphore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/posix_sem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/proc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/select.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/lock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/event.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ipc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/mman.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/msg.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/sem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/shm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/posix_shm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/statvfs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/times.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fsid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fsobj_id_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_guid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_offsetof.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_os_inline.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ptrdiff_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ucontext64.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/uio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/un.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/utsname.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/xattr.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/syslog.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/syslog.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/tar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ulimit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/unistd.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/unistd.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/gethostuuid.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/utime.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/utmpx.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/wordexp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/bpf.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/dlil.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/ethernet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/if_arp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/if_llc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/if_media.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/if_mib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/if_utun.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/kext_net.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/ndrv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/pfkeyv2.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/route.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/bootp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/ip.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/in_systm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/udp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/icmp6.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/icmp_var.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/ip_icmp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/if_ether.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/igmp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/igmp_var.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/in_pcb.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/socketvar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/TargetConditionals.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/in_var.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/kern_event.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/sys_domain.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6/in6_var.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6/scope6_var.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/ip6.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/ip_var.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/tcp_fsm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/tcp_seq.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/tcp_timer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/tcp_var.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/tcpip.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/udp_var.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/sysctl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ucred.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/vm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/AvailabilityMacros.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bank/bank_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_statistics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/time_value.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_notify.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_special_ports.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/memory_object_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_prot.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_sync.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_voucher_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/std_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/processor_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/processor_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/processor_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/policy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task_inspect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task_policy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task_special_ports.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_policy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_special_ports.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/clock_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_attributes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_inherit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_purgable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_behavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_region.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/vm_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/vm_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_page_size.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/kmod.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/dyld_kernel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ConditionalMacros.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/getopt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/AssertMacros.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/MacTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_interface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/clock_priv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/ndr.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/notify.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mig_errors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mig.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_priv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/mach_debug_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/vm_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/zone_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/page_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/hash_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/lockgroup_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_security.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/lock_set.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/processor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/processor_set.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/semaphore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/sync_policy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_act.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_map.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_port.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_init.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_traps.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_host.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_switch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/rpc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/rpc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/rpc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_error.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/error.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/audit_triggers_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/bootstrap.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/clock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/clock_reply.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/exc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/exception.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_reboot.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_right.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_syscalls.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_time.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_vm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_voucher.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/memory_entry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mig_strncpy_zerofill_support.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mig_voucher_support.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/port_obj.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/sdt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/sdt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/sdt_isa.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/sdt_isa.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/sdt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/shared_region.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/sync.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_state.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_task.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/asm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm64/asm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/asm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/asm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/_structs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/boolean.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/exception.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/fp_reg.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/kern_return.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/ndr_def.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/ndr_def.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/processor_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/rpc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/sdt_isa.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/thread_state.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/thread_status.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/traps.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/vm_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/vm_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/mach_debug.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/device/device_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/device/device_port.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomicDeprecated.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomicQueue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/base.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/clock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/lock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/malloc/malloc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/malloc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/_limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/_limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/_mcontext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/byte_order.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/architecture/byte_order.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/eflags.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/endian.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/fasttrap_isa.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/fasttrap_isa.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/fasttrap_isa.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/profile.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/profile.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/profile.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/signal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/user_ldt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/vmparam.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/vmparam.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/vmparam.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/Block.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_domain.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_errno.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_fcntl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_filter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/libbsm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/inttypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_record.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_internal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_kevents.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_session.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_socket_type.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_uevents.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/hfs/hfs_format.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/hfs/hfs_unistr.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/hfs/hfs_mount.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/mount.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/attr.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/curses.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ncurses_dll.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/unctrl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6/ah.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6/esp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6/ipcomp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6/ipsec.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6/raw_ip6.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/acct.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/acl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/kauth.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/buf.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/kernel_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/clonefile.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/commpage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/conf.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/disk.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/dkstat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/domain.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ev.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/file.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/filedesc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/gmon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ioctl_compat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ttychars.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ttydev.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/kdebug.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/kdebug_signpost.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/lctx.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/kern_control.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/mbuf.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/msgbuf.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/netport.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/paths.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/pipe.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/proc_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/quota.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/rbtree.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/reboot.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/resourcevar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/sbuf.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/signalvar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/syscall.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/timeb.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/trace.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/tty.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ucontext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/unpcb.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/user.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/utfconv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/vcmd.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/vnode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/paths.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sysexits.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/ptrauth-2VKHMASVBPQKZ.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/ptrauth.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/MachO-TZ4CHES3I8A3.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/dyld.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/dyld.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/loader.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/compact_unwind_encoding.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/arch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/fat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/getsect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/ldsyms.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/nlist.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/ranlib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/reloc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/stab.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/swap.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/ObjectiveC-11FESPOBLW01.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/NSObjCRuntime.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc-api.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/NSObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/Object.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc-runtime.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/runtime.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/message.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/Protocol.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/hashtable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/hashtable2.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc-auto.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc-class.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc-exception.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc-load.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc-sync.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/os_object-HUB66TE1ZK5G.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/object.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/CommonCrypto/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libxml/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libxslt/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/unicode/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libexslt/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/simd/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/EndpointSecurity/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/networkext/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/tidy/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ffi/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/AppleArchive/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/cups/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/os_workgroup-HUB66TE1ZK5G.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup_base.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup_object.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup_interval.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup_parallel.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/Dispatch-3GFWUX8XIVRBY.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/dispatch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/base.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/time.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/object.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/queue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/block.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/source.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/group.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/semaphore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/once.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/data.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/io.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/workloop.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/CoreFoundation-1IDL4661K1PD.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/assert.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAvailability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFArray.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBag.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBinaryHeap.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBitVector.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFLocale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDictionary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNotificationCenter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTimeZone.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFData.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCharacterSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDateFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumber.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPreferences.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPropertyList.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURL.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringEncodingExt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTree.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLAccess.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUUID.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUtilities.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBundle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMessagePort.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugIn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMachPort.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLEnumerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileSecurity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringTokenizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUserNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLNode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLParser.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugInCOM.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/launch-HUB66TE1ZK5G.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/launch.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/XPC-9RI595ZZIX4G.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/xpc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/base.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/availability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/endpoint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/debug.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/connection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/activity.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/Security-N54N1RN2VD1M.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/Security.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecCertificate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecIdentity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecAccessControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecKey.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecPolicy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecRandom.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecImportExport.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecTrust.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecSharedCredential.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolOptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/CipherSuite.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolMetadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/AuthorizationPlugin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/Authorization.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/AuthSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/CodeSigning.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecStaticCode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/CSCommon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecCode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecRequirement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/eisl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/cssmconfig.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecAsn1Coder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecAsn1Types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecAsn1Templates.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecureDownload.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecureTransport.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/CFNetwork-5FJZUYI7N7KS.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetwork.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkDefs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFSocketStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHost.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFFTPStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPMessage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPAuthentication.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetDiagnostics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFProxySupport.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/libkern-HUB66TE1ZK5G.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSCacheControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSDebug.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSReturn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSKextLib.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/IOKit-YDMQELDJRDYQ.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOReturn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOMapTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOKitKeys.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/OSMessageNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOKitLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOBSD.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IODataQueueClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IODataQueueShared.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOCFBundle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOSharedLock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOCFPlugIn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOCFSerialize.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOCFURLAccess.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOKitServer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOCFUnserialize.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOMessage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IORPC.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOUserServer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/audio/IOAudioDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/audio/IOAudioLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/audio/IOAudioTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/avc/IOFireWireAVCConsts.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/avc/IOFireWireAVCLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/firewire/IOFireWireFamilyCommon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/firewire/IOFireWireLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/firewire/IOFireWireLibIsoch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOAccelClientConnect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOGraphicsInterface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOGraphicsInterfaceTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOAccelSurfaceConnect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOAccelTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOGraphicsLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOFramebufferShared.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOGraphicsTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOGraphicsEngine.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDKeys.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDParameter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDProperties.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDEventServiceKeys.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDDeviceTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDDeviceKeys.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDQueue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDLibObsolete.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDUsageTables.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDValue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDTransaction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDDevicePlugIn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDEventServiceTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDShared.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/event_status_driver.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/ev_keymap.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDEventSystemClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDServiceClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDUserDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/i2c/IOI2CInterface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/kext/KextManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IOEthernetController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IONetworkController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IONetworkData.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IONetworkStack.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IOEthernetInterface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IONetworkInterface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IONetworkStats.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IOEthernetStats.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IONetworkLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IONetworkMedium.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IONetworkUserClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/ps/IOPSKeys.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/ps/IOPowerSources.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/ps/IOUPSPlugIn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/pwr_mgt/IOPM.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/pwr_mgt/IOPMKeys.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/pwr_mgt/IOPMLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/pwr_mgt/IOPMLibDefs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/sbp2/IOFireWireSBP2Lib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/IOSCSIMultimediaCommandsDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOStorageDeviceCharacteristics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOStorageProtocolCharacteristics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOStorageControllerCharacteristics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/SCSICmds_REQUEST_SENSE_Defs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/SCSICmds_INQUIRY_Definitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/SCSICommandDefinitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/SCSICmds_MODE_Definitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/SCSICommandOperationCodes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/SCSICmds_READ_CAPACITY_Definitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/SCSITask.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/SCSICmds_REPORT_LUNS_Definitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/SCSITaskLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/serial/IOSerialKeys.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/serial/ioss.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOAppleLabelScheme.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IODVDMediaBSDClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IODVDTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOApplePartitionScheme.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOBDBlockStorageDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOBDTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOFDiskPartitionScheme.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOBDMedia.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOFilterScheme.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOBDMediaBSDClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOFireWireStorageCharacteristics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOGUIDPartitionScheme.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOBlockStorageDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOMedia.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOBlockStorageDriver.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOMediaBSDClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOCDBlockStorageDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOCDTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOPartitionScheme.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOCDMedia.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOStorage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOCDMediaBSDClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOStorageCardCharacteristics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOCDPartitionScheme.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IODVDBlockStorageDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IODVDMedia.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/ata/ATASMARTLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/ata/IOATAStorageDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/stream/IOStreamLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/stream/IOStreamShared.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/usb/AppleUSBDefinitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/usb/IOUSBHostFamilyDefinitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/usb/IOUSBLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/usb/USB.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/usb/USBSpec.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/CoreGraphics-29VBLVJV3EW80.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGAffineTransform.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGeometry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBitmapContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorSpace.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPattern.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFont.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGradient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFPage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDictionary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFArray.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGShading.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFunction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorConversionInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGConvertColorDataWithFormat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataConsumer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContentStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFOperatorTable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFScanner.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDirectDisplay.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGWindow.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGWindowLevel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDirectPalette.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDisplayConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDisplayFade.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDisplayStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGRemoteOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventSource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPSConverter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDirectDisplayMetal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/DiskArbitration.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/DiskArbitration-2ENF2QY2DVG4T.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/DiskArbitration.framework/Headers/DiskArbitration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/DiskArbitration.framework/Headers/DADisk.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/DiskArbitration.framework/Headers/DASession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/DiskArbitration.framework/Headers/DADissenter.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/CoreServices-37QL6MRX88UHQ.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Headers/CoreServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AE.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/CarbonCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Finder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/FixMath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Script.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/IntlResources.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/UTCUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MacErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/TextCommon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Collections.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MixedMode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Endian.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Gestalt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MacMemory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Math64.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/BackupCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/DiskSpaceRecovery.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Components.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Files.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/OSUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/DateTimeUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Resources.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/CodeFragments.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Multiprocessing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Aliases.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MacLocales.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Debugging.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/PLStringFuncs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/DriverSynchronization.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/DriverServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MachineExceptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/NumberFormatting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/StringCompare.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/TextUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/ToolUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/UnicodeUtilities.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/fp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/TextEncodingConverter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/UnicodeConverter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Threads.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Folders.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Timer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MultiprocessingInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/LowMem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/AVLTree.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/PEFBinaryFormat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/HFSVolumes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/AIFF.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/TextEncodingPlugin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEDataModel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AppleEvents.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEPackObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEObjects.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AERegistry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEUserTermTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEHelpers.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEMach.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/DictionaryServices.framework/Headers/DictionaryServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LaunchServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LSInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LSInfoDeprecated.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LSOpen.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LSOpenDeprecated.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/UTCoreTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/UTType.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/Metadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDLabel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDQuery.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDSchema.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDImporter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/OSServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/CSIdentity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/CSIdentityBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/CSIdentityAuthority.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/CSIdentityQuery.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SearchKit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKAnalysis.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKIndex.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKSearch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKSummary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/FSEvents.framework/Headers/FSEvents.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SharedFileList.framework/Headers/SharedFileList.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/Foundation-26LJKO9TWD70R.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSZone.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnumerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionDifference.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionChange.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAutoreleasePool.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBundle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSItemProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDictionary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProgress.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCharacterSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSData.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateInterval.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateIntervalFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMassFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLengthFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnergyFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUnit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurementFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNumberFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLocale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponents.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponentsFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRelativeDateTimeFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSListFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimalNumber.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScanner.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSException.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileHandle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRunLoop.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPathUtilities.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURL.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLHandle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHashTable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerFunctions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookie.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookieStorage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexPath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInflectionRule.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInvocation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSJSONSerialization.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueObserving.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyedArchiver.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPropertyList.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMapTable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMethodSignature.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMorphology.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotificationQueue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNull.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrthography.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerArray.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPort.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProcessInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProxy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRegularExpression.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTextCheckingResult.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSortDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSThread.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimeZone.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLAuthenticationChallenge.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCache.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredential.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredentialStorage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtectionSpace.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtocol.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLResponse.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserDefaults.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValueTransformer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLParser.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXPCConnection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteCountFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSComparisonPredicate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCompoundPredicate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateComponentsFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExpression.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionRequestHandling.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileCoordinator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFilePresenter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileVersion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileWrapper.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLinguisticTagger.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadataAttributes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUbiquitousKeyValueStore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUndoManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserActivity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAffineTransform.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSGeometry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAppleScript.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArchiver.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBackgroundActivityScheduler.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendarDate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSConnection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDistantObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDistributedNotificationCenter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPortCoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPortMessage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPortNameServer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProtocolChecker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTask.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLDTD.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLNode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLNodeOptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLDTDNode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLDownload.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAppleEventDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAppleEventManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSClassDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDistributedLock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSGarbageCollector.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHFSFileTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHost.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjectScripting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptClassDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptCoercionHandler.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptCommand.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptCommandDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptExecutionContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptKeyValueCoding.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptObjectSpecifiers.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptStandardSuiteCommands.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptSuiteRegistry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptWhoseTests.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSpellServer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserScriptTask.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationLegacySwiftCompatibility.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDebug.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/IOSurface-298P2J4L4DUCJ.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceAPI.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceRef.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceObjC.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/OpenGL-3IMU1JTTPVTBE.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/OpenGL.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/OpenGLAvailability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLCurrent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/gltypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLRenderers.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLIOSurface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/gl3.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/gl3ext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/gl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/glext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/glu.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/gluContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/gliContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/gliDispatch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/Metal-12TFHXZAHM30N.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBlitCommandEncoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandEncoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResourceStateCommandEncoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTexture.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPixelFormat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFence.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLLibrary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionConstantValues.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCounters.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResourceStatePass.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPass.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBlitPass.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputeCommandEncoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputePass.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandQueue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDepthStencil.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDrawable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputePipeline.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLStageInputOutputDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPipeline.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLLinkedFunctions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPipeline.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderCommandEncoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionHandle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLVisibleFunctionTable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLVertexDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLParallelRenderCommandEncoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLSampler.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLHeap.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgumentEncoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureScope.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandEncoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionLog.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLAccelerationStructureCommandEncoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLAccelerationStructure.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLAccelerationStructureTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRasterizationRate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDynamicLibrary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBinaryArchive.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIntersectionFunctionTable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionStitching.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/CoreVideo-1UYXAKB0UN3LT.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CoreVideo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVReturn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVImageBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferIOSurface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferPool.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLBufferPool.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLTexture.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLTextureCache.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelFormatDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTexture.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTextureCache.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVHostTime.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/ImageIO-2DLIEL013SSNG.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIO.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIOBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageSource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageMetadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageDestination.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageProperties.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageAnimation.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/CoreImage-288IVEB6DDVM0.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImageDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIVector.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIColor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterConstructor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIDetector.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFeature.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProcessor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageAccumulator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterShape.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CISampler.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRAWFilter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRenderDestination.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIBarcodeDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIPlugIn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernelMetalLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterBuiltins.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/CoreText-14E9KS9SDY7E9.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFont.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontTraits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontCollection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManagerErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFrame.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFramesetter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTypesetter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTLine.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTGlyphInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTParagraphStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRubyAnnotation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRun.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRunDelegate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTStringAttributes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTextTab.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTLayoutTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/QuartzCore-1IHMB1XP2KSTU.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreVideo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreAnimation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CABase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransform3D.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAAnimation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CALayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTiming.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAConstraintLayoutManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CADisplayLink.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMetalLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEDRMetadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAGradientLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAOpenGLLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CARemoteLayerClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CARemoteLayerServer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CARenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAReplicatorLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAScrollLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAShapeLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATextLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATiledLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransaction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransformLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAValueFunction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ColorSync.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/ColorSync-1RL4YDDEEIB4.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ColorSync.framework/Headers/ColorSync.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ColorSync.framework/Headers/ColorSyncBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ColorSync.framework/Headers/ColorSyncProfile.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ColorSync.framework/Headers/ColorSyncTransform.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ColorSync.framework/Headers/ColorSyncCMM.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ColorSync.framework/Headers/ColorSyncDevice.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/ApplicationServices-1PJEA3VQBKS2E.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Headers/ATS.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Headers/ATSDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Headers/ATSLayoutTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Headers/SFNTLayoutTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Headers/ATSTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Headers/ATSFont.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Headers/SFNTTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/HIServices.framework/Headers/HIServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Headers/PrintCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Headers/PMDefinitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Headers/PMCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Headers/PMPrintAETypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Headers/PMPrintSettingsKeys.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Headers/PMErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/QD.framework/Headers/QD.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/QD.framework/Headers/Quickdraw.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/QD.framework/Headers/ColorSyncDeprecated.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/QD.framework/Headers/Fonts.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/QD.framework/Headers/ATSUnicode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATSUI.framework/Headers/ATSUnicode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATSUI.framework/Headers/ATSUnicodeTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATSUI.framework/Headers/ATSUnicodeGlyphs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATSUI.framework/Headers/ATSUnicodeFlattening.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATSUI.framework/Headers/ATSUnicodeDirectAccess.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/SpeechSynthesis.framework/Headers/SpeechSynthesis.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/CoreLocation-7OXSPJ1SC3J3.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CoreLocation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLAvailability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLErrorDomain.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLRegion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLLocation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLCircularRegion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLBeaconRegion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLBeaconIdentityConstraint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLHeading.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLLocationManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLLocationManagerDelegate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLVisit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLLocationManager+CLVisitExtensions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLPlacemark.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLGeocoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLLocationPushServiceExtension.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLLocationPushServiceError.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/CloudKit-SKO3ZFVD521L.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CloudKit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKAsset.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKContainer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKDatabase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKSubscription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKRecord.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKReference.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKLocationSortDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKQuery.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKRecordZone.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKRecordID.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKRecordZoneID.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKServerChangeToken.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKDatabaseOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKShare.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKShareParticipant.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKShareMetadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKUserIdentity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKUserIdentityLookupInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKAcceptSharesOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKDiscoverAllUserIdentitiesOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKDiscoverUserIdentitiesOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchDatabaseChangesOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchNotificationChangesOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchRecordChangesOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchRecordsOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchRecordZoneChangesOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchRecordZonesOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchShareMetadataOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchShareParticipantsOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchSubscriptionsOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchWebAuthTokenOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKMarkNotificationsReadOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKModifyBadgeOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKModifyRecordsOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKModifyRecordZonesOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKModifySubscriptionsOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKOperationGroup.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKQueryOperation.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/CoreData-3V2ED99TEVZON.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreDataDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreDataErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSAttributeDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPropertyDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSDerivedAttributeDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSEntityDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchedPropertyDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSExpressionDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSRelationshipDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchIndexDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchIndexElementDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStoreRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObjectID.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequestExpression.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObjectModel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObjectContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStoreCoordinator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSAtomicStore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSAtomicStoreCacheNode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSEntityMigrationPolicy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSMappingModel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSEntityMapping.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPropertyMapping.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSMigrationManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSIncrementalStore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSIncrementalStoreNode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStoreResult.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSSaveChangesRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSBatchUpdateRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSBatchDeleteRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSBatchInsertRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSMergePolicy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchedResultsController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSQueryGenerationToken.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStoreDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentContainer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentHistoryChange.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentHistoryChangeRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentHistoryToken.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentHistoryTransaction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentCloudKitContainer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentCloudKitContainerOptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentCloudKitContainerEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentCloudKitContainerEventRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSCoreDataCoreSpotlightDelegate.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/AppKit-1CGX9MIHA1TT4.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKitDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKitErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGraphicsContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGraphics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAccessibility.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAccessibilityConstants.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAccessibilityProtocols.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAccessibilityCustomAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAccessibilityElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAccessibilityCustomRotor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWorkspace.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSActionCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSText.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAnimation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDragging.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSResponder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTouch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSUserInterfaceItemIdentification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSUserInterfaceLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSpellProtocol.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSParagraphStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAlert.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSUserInterfaceValidation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSRunningApplication.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSUserActivity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSNib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSNibDeclarations.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSMenu.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSMenuItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPrintInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPrinter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSKeyValueBinding.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSHelpManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAnimationContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAppleScriptExtensions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSBox.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSButton.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSButtonCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSUserInterfaceCompression.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCandidateListTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTouchBar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSClipView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCollectionView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopover.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStoryboard.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStoryboardSegue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCollectionViewLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCollectionViewCompositionalLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCollectionViewFlowLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCollectionViewGridLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCollectionViewTransitionLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColorSampler.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDiffableDataSource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDockTile.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFont.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFontDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFontAssetRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFontCollection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFontManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFontPanel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPanel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWindow.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSForm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSMatrix.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFormCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColorList.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColorSpace.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSBitmapImageRep.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImageRep.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSBrowser.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSBrowserCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCachedImageRep.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCIImageRep.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColorPanel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColorPicking.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColorPicker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColorPickerTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColorWell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCursor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCustomImageRep.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCustomTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDocumentController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDraggingItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDraggingSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFilePromiseProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFilePromiseReceiver.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSEPSImageRep.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFileWrapperExtensions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGradient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGroupTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSClickGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPanGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPressGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSMagnificationGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSRotationGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSLayoutConstraint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSLayoutAnchor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSLayoutGuide.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImageCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImageView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSNibLoading.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSScrubber.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSScrubberItemView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSScrubberLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSharingServicePickerTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSharingService.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSliderAccessory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSliderTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSpeechRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSpeechSynthesizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSpellChecker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSplitView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSplitViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSplitViewItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSOpenPanel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSavePanel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPageLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboardItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopoverTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopUpButton.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSMenuItemCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPrintOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPrintPanel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPDFInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPDFPanel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSMediaLibraryBrowserController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSScreen.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSScrollView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSScroller.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextFinder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSegmentedControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSegmentedCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSlider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSliderCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStackView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSwitch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGridView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextCheckingClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextInputClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextCheckingController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextField.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextFieldCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextContent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTokenField.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextContainer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSLayoutManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextStorage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAttributedString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGlyphGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTokenFieldCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTrackingArea.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTrackingSeparatorToolbarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWindowTab.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWindowTabGroup.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWindowController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSComboBox.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSComboBoxCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableCellView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSInputManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextAttachment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextAttachmentCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableColumn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableHeaderCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableHeaderView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableRowView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableViewDiffableDataSource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableViewRowAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSOutlineView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSInputServer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStringDrawing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSRulerMarker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSRulerView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSecureTextField.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSInterfaceStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSProgressIndicator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTabView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTabViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTabViewItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopUpButtonCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAffineTransform.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSBezierPath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPICTImageRep.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStatusBar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStatusBarButton.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStatusItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSound.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSMovie.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPDFImageRep.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDrawer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSOpenGL.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSOpenGLLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSOpenGLView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplicationScripting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDocumentScripting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextStorageScripting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItemGroup.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSMenuToolbarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSharingServicePickerToolbarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWindowScripting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStepper.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStepperCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGlyphInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSShadow.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSATSTypesetter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTypesetter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSearchField.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSearchFieldCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSObjectController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSArrayController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDictionaryController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTreeNode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTreeController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSUserDefaultsController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextList.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextTable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDatePickerCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDatePicker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSLevelIndicatorCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSLevelIndicator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPersistentDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSRuleEditor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPredicateEditor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPredicateEditorRowTemplate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPathCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPathControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPathComponentCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPathControlItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPageController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextInputContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSUserInterfaceItemSearching.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWindowRestoration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextAlternatives.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSVisualEffectView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSItemProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTitlebarAccessoryViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDataAsset.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAlignmentFeedbackFilter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSHapticFeedback.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPressureConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSButtonTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPickerTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStepperTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTintConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSearchToolbarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextRange.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextSelection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextSelectionNavigation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextContentManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextLayoutFragment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextLayoutManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextLineFragment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextViewportLayoutController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/FileProvider-9WOYK8K2OOVL.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/FileProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDomain.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderExtension.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderEnumerating.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderActions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderService.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderThumbnailing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItemDecoration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderReplicatedExtension.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderTesting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/UserNotifications-1U9RH5TCDVS3G.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/NSString+UserNotifications.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationActionIcon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAttachment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationCategory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationContent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationResponse.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSettings.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSound.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationTrigger.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNUserNotificationCenter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationServiceExtension.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1MQJK72GA0JKV/UIKit-1U3ISKK4IMSII.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityConstants.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGeometry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFont.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFontDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFontMetrics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSItemProvider+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImageConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImageSymbolConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSDataAsset.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILocalNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSAttributedString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSParagraphStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSText.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSShadow.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSStringDrawing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccelerometer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICommand.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenuElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenu.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKeyCommand.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfigurationSupporting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIUserActivity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocus.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusGuide.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusAnimationCoordinator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIRefreshControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContainer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomRotor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextInput.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAlert.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActionSheet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStringDrawing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDragging.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDropInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewAnimating.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDropping.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDropProposal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteConfigurationSupporting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteDelegate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategoryAdjusting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneDefinitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStateRestoration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerLockState.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScene.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteractionSupporting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityZoom.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccess.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityLocationDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContentSizeCategoryImageAdjusting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIButtonConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBackgroundConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIConfigurationColorTransformer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSToolbar+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowScene.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneOptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfigurationReading.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTouchBar+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarCommon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemGroup.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSIndexPath+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDataSourceTranslating.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewFlowLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewUpdateItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewTransitionLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCompositionalLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICellAccessory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewListCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDiffableDataSource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISwipeActionsConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContextualAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSDiffableDataSourceSectionSnapshot.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewItemRegistration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionLayoutList.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIListSeparatorConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIConfigurationState.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewConfigurationState.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICellConfigurationState.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContentConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIListContentConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIListContentImageProperties.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIListContentTextProperties.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKey.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKeyConstants.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDataDetectors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDatePicker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentMenuViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerExtensionViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICloudSharingController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSFileProviderExtension.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBlurEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIVibrancyEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewControllerConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsImageRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsPDFRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImageAsset.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImagePickerController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPanGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITapGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIInputView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIInputViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILexicon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILargeContentViewer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIApplicationShortcutItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusSystem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusDebugger.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusMovementHint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIHoverGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILocalizedIndexedCollation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILongPressGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIManagedDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenuController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMotionEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINavigationItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINibLoading.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINibDeclarations.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPageControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPageViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPasteboard.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPinchGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverSupport.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverBackgroundView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPress.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPressesEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrinter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrinterPickerController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInteractionController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPageRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPaper.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintServiceExtension.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIProgressView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIReferenceLibraryViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIRotationGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScreenEdgePanGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScreenMode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchContainerViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPresentationController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitionCoordinator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitioning.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITimingParameters.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITimingCurveProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchDisplayController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchTextField.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISegmentedControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISlider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISplitViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStepper.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboard.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardPopoverSegue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardSegue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISwitch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITabBar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITabBarController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITabBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITableViewHeaderFooterView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextChecker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextItemInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIToolbar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIVideoEditorController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWebView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreview.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreviewParameters.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewParameters.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITargetedDragPreview.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITargetedPreview.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBarAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIToolbarAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITabBarAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIResponder+UIActivityItemsConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchSuggestion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScribbleInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIIndirectScribbleInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKeyboardLayoutGuide.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITrackingLayoutGuide.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextStorage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextContainer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISheetPresentationController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverPresentationController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicAnimator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPushBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISnapBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicItemBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFieldBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGravityBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAttachmentBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollisionBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIRegion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDragPreviewRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDragURLPreviews.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewPropertyAnimator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFeedbackGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISelectionFeedbackGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImpactFeedbackGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINotificationFeedbackGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccessRestrictions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizerSubclass.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRendererSubclass.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPencilInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneEnhancedStateRestoration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneActivationConditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIOpenURLContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStatusBarManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScreenshotService.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSUserActivity+NSItemProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UNNotificationResponse+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenuBuilder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDeferredMenuElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenuSystem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextFormattingCoordinator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerRegion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBandSelectionInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerAccessory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIColorWell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIColorPickerViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIEventAttribution.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIEventAttributionView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBehavioralStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowSceneActivationRequestOptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowSceneActivationConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowSceneActivationAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowSceneActivationInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIToolTipInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFoundation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextRange.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextSelection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextSelectionNavigation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextViewportLayoutController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextContentManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextLayoutFragment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextLayoutManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextLineFragment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/DocumentManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/ShareSheet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentInteractionController.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch.gch b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch.gch new file mode 100644 index 0000000..83994de Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch.gch differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.d new file mode 100644 index 0000000..08df4dd --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.d @@ -0,0 +1,1155 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/appleapiopts.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/cdefs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_symbol_aliasing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_posix_availability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_int8_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_int16_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_int32_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_int64_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int8_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int16_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int32_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int64_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_intptr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_uintptr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/endian.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/endian.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_endian.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/_OSByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/i386/_OSByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_char.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_short.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_caddr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_dev_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_blkcnt_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_blksize_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_gid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_in_addr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_in_port_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ino_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ino64_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_key_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_mode_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_nlink_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_id_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_pid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_off_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_uid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_clock_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_size_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ssize_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_time_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_useconds_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_suseconds_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_rsize_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_errno_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_def.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/Availability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/AvailabilityVersions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/AvailabilityInternal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_setsize.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_set.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_clr.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_zero.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_isset.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_copy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_cond_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_once_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_key_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fsblkcnt_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fsfilcnt_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/stdarg.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/assert.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/stdlib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/__config \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/pthread.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/stdlib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/wait.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/signal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/signal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/signal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/_mcontext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/_mcontext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/_structs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/_structs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_sigaltstack.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ucontext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_sigset_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/resource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/stdint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/stdint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/stdint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uint8_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uint16_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uint32_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uint64_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_intmax_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uintmax_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_timeval.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/alloca.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ct_rune_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_rune_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_wchar_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_null.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/malloc/_malloc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/ctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_ctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/runetype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_wint_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/errno.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/errno.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/errno.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/float.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/float.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/float.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/_limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/syslimits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/locale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/locale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_locale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/math.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/math.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/type_traits \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/cstddef \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/version \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/stddef.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/__stddef_max_align_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/__nullptr \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/limits \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/__undef_macros \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/setjmp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/setjmp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/signal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/stddef.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/stdio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/stdio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_stdio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_va_list.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/stdio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_ctermid.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/string.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/string.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/strings.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/time.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_timespec.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/TargetConditionals.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAvailability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/availability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/AvailabilityMacros.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/stdbool.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/stdbool.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/Block.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/MacTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ConditionalMacros.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/ptrauth.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFArray.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBag.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBinaryHeap.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBitVector.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/i386/OSByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_os_inline.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFLocale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDictionary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNotificationCenter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTimeZone.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFData.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCharacterSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDateFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumber.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPreferences.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPropertyList.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURL.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/port.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/boolean.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/boolean.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/boolean.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/vm_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/vm_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_mach_port_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/dispatch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/base.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/unistd.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/unistd.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_posix_vdisable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_seek_set.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/select.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_select.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_uuid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/gethostuuid.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/fcntl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/fcntl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_o_sync.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_o_dsync.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_s_ifmt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_filesec_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/object.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/NSObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc-api.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/NSObjCRuntime.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup_base.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/clock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup_object.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup_interval.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup_parallel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/base.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/time.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/clock_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/time_value.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/object.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/qos.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/queue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/block.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/source.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/message.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/kern_return.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/kern_return.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/kern_return.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/group.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/semaphore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/once.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/data.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/io.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/workloop.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringEncodingExt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTree.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLAccess.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUUID.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUtilities.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBundle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMessagePort.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugIn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMachPort.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLEnumerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileSecurity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/acl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/kauth.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_guid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringTokenizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUserNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLNode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLParser.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSZone.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnumerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionDifference.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionChange.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAutoreleasePool.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBundle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSItemProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDictionary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProgress.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCharacterSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSData.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateInterval.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateIntervalFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMassFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLengthFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnergyFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUnit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurementFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNumberFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLocale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponents.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponentsFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRelativeDateTimeFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSListFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimalNumber.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScanner.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSException.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileHandle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRunLoop.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPathUtilities.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURL.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLHandle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHashTable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerFunctions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookie.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookieStorage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexPath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInflectionRule.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInvocation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSJSONSerialization.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueObserving.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyedArchiver.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPropertyList.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMapTable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMethodSignature.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMorphology.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotificationQueue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNull.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrthography.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerArray.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPort.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProcessInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProxy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRegularExpression.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTextCheckingResult.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSortDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSThread.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimeZone.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLAuthenticationChallenge.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCache.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredential.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/Security.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecCertificate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecIdentity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecAccessControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecKey.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecPolicy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecRandom.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecImportExport.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecTrust.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecSharedCredential.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolOptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/CipherSuite.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolMetadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredentialStorage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtectionSpace.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetwork.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkDefs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFSocketStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHost.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFFTPStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPMessage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPAuthentication.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetDiagnostics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFProxySupport.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtocol.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLResponse.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserDefaults.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValueTransformer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLParser.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXPCConnection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/xpc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/mman.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/uuid/uuid.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/base.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/availability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/endpoint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/debug.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/connection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/activity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/launch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/std_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_statistics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_notify.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_special_ports.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/memory_object_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_prot.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_sync.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/exception_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/exception.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/exception.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_status.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/thread_status.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/thread_status.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/thread_state.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/thread_state.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/fp_reg.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/eflags.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/ipc_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_voucher_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/processor_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/processor_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/processor_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/policy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task_inspect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task_policy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task_special_ports.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_policy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_special_ports.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_attributes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_inherit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_purgable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_behavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_region.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/vm_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/vm_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_page_size.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/kmod.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/dyld_kernel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fsid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fsobj_id_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_interface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/clock_priv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/ndr.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/notify.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mig_errors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mig.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mig_strncpy_zerofill_support.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_priv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/mach_debug_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/vm_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/zone_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/page_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/hash_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/lockgroup_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_security.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/lock_set.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/processor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/processor_set.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/semaphore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/sync_policy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_act.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_map.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_port.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_init.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_traps.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_host.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_switch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/rpc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/rpc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/rpc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_error.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/error.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteCountFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSComparisonPredicate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCompoundPredicate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateComponentsFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExpression.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionRequestHandling.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileCoordinator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFilePresenter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileVersion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileWrapper.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLinguisticTagger.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadataAttributes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUbiquitousKeyValueStore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUndoManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecureTransport.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserActivity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAffineTransform.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSGeometry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGeometry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGAffineTransform.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAppleScript.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArchiver.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBackgroundActivityScheduler.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendarDate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSConnection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDistantObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDistributedNotificationCenter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPortCoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPortMessage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPortNameServer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProtocolChecker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTask.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLDTD.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLNode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLNodeOptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLDTDNode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLDownload.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAppleEventDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Headers/CoreServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AE.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/CarbonCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Finder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/FixMath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Script.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/IntlResources.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/UTCUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MacErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/TextCommon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Collections.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MixedMode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Endian.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Gestalt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MacMemory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Math64.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/BackupCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/DiskSpaceRecovery.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Components.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Files.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/OSUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/DateTimeUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/DiskArbitration.framework/Headers/DADisk.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOKitLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOReturn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/device/device_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOMapTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOKitKeys.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/OSMessageNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/DiskArbitration.framework/Headers/DASession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/hfs/hfs_unistr.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Resources.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/CodeFragments.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Multiprocessing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Aliases.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MacLocales.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Debugging.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/AssertMacros.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/PLStringFuncs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/DriverSynchronization.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/DriverServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MachineExceptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/emmintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/xmmintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/mmintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/mm_malloc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/NumberFormatting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/StringCompare.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/TextUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/ToolUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/UnicodeUtilities.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/fp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/fenv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/fenv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/TextEncodingConverter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/UnicodeConverter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Threads.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Folders.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Timer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MultiprocessingInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/LowMem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/AVLTree.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/PEFBinaryFormat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/HFSVolumes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/hfs/hfs_format.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/AIFF.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/TextEncodingPlugin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEDataModel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AppleEvents.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEPackObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEObjects.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AERegistry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEUserTermTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEHelpers.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEMach.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/DictionaryServices.framework/Headers/DictionaryServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LaunchServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LSInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LSInfoDeprecated.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LSOpen.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LSOpenDeprecated.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/UTCoreTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/UTType.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/Metadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDLabel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDQuery.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDSchema.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDImporter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/OSServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/CSIdentity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/CSIdentityBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/CSIdentityAuthority.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/CSIdentityQuery.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SearchKit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKAnalysis.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKIndex.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKSearch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKSummary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/FSEvents.framework/Headers/FSEvents.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SharedFileList.framework/Headers/SharedFileList.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAppleEventManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSClassDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDistributedLock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSGarbageCollector.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHFSFileTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHost.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjectScripting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptClassDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptCoercionHandler.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptCommand.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptCommandDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptExecutionContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptKeyValueCoding.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptObjectSpecifiers.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptStandardSuiteCommands.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptSuiteRegistry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptWhoseTests.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSpellServer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserScriptTask.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationLegacySwiftCompatibility.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityConstants.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBitmapContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorSpace.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPattern.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFont.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGradient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFPage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDictionary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFArray.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGShading.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFunction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorConversionInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGConvertColorDataWithFormat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataConsumer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContentStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFOperatorTable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFScanner.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDirectDisplay.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGWindow.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGWindowLevel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDirectPalette.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDisplayConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDisplayFade.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDisplayStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGRemoteOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomicDeprecated.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomicQueue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOGraphicsTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOSharedLock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventSource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPSConverter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDirectDisplayMetal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGeometry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImageDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIVector.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIColor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CoreVideo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVReturn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVImageBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferIOSurface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceRef.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferPool.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/OpenGL.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/OpenGLAvailability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLCurrent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/gltypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLRenderers.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLIOSurface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLBufferPool.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLTexture.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLTextureCache.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelFormatDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTexture.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTextureCache.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPixelFormat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIO.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIOBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageSource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageMetadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageDestination.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageProperties.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageAnimation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterConstructor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIDetector.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFeature.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProcessor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageAccumulator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterShape.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CISampler.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRAWFilter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRenderDestination.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceObjC.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIBarcodeDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIPlugIn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernelMetalLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFont.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFontDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFontMetrics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSItemProvider+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsImageRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImageConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImageSymbolConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSDataAsset.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILocalNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSAttributedString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSParagraphStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSText.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTParagraphStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSShadow.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSStringDrawing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccelerometer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreVideo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreAnimation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CABase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransform3D.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAAnimation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CALayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTiming.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAConstraintLayoutManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CADisplayLink.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMetalLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEDRMetadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDrawable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAGradientLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAOpenGLLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CARemoteLayerClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CARemoteLayerServer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CARenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAReplicatorLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAScrollLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAShapeLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATextLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATiledLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransaction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransformLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAValueFunction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICommand.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenuElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenu.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKeyCommand.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfigurationSupporting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIUserActivity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocus.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusGuide.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusAnimationCoordinator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIRefreshControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContainer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomRotor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextInput.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAlert.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActionSheet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStringDrawing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDragging.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDropInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewAnimating.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDropping.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDropProposal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteConfigurationSupporting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteDelegate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategoryAdjusting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneDefinitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStateRestoration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerLockState.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScene.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteractionSupporting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityZoom.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccess.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityLocationDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContentSizeCategoryImageAdjusting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIButtonConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBackgroundConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIConfigurationColorTransformer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSToolbar+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowScene.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneOptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfigurationReading.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKitDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSMenuToolbarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSharingServicePickerToolbarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSharingService.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSearchToolbarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTouchBar+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTouchBar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSharingServicePickerTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarCommon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemGroup.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSIndexPath+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDataSourceTranslating.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewFlowLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewUpdateItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewTransitionLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCompositionalLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICellAccessory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewListCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDiffableDataSource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISwipeActionsConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContextualAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSDiffableDataSourceSectionSnapshot.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewItemRegistration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionLayoutList.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIListSeparatorConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIConfigurationState.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewConfigurationState.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICellConfigurationState.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContentConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIListContentConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIListContentImageProperties.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIListContentTextProperties.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKey.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKeyConstants.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDataDetectors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDatePicker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentMenuViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerExtensionViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICloudSharingController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSFileProviderExtension.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderExtension.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBlurEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIVibrancyEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewControllerConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsPDFRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImageAsset.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImagePickerController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPanGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITapGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIInputView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIInputViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILexicon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILargeContentViewer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIApplicationShortcutItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusSystem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusDebugger.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusMovementHint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIHoverGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILocalizedIndexedCollation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILongPressGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIManagedDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenuController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMotionEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINavigationItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINibLoading.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINibDeclarations.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPageControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPageViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPasteboard.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPinchGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverSupport.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverBackgroundView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPress.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPressesEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrinter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrinterPickerController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInteractionController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPageRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPaper.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintServiceExtension.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIProgressView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIReferenceLibraryViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIRotationGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScreenEdgePanGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScreenMode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchContainerViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPresentationController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitionCoordinator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitioning.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITimingParameters.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITimingCurveProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchDisplayController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchTextField.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISegmentedControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISlider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISplitViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStepper.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboard.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardPopoverSegue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardSegue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISwitch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITabBar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITabBarController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITabBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITableViewHeaderFooterView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextChecker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextItemInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIToolbar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIVideoEditorController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWebView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreview.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreviewParameters.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewParameters.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITargetedDragPreview.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITargetedPreview.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBarAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIToolbarAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITabBarAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIResponder+UIActivityItemsConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchSuggestion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScribbleInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIIndirectScribbleInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKeyboardLayoutGuide.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITrackingLayoutGuide.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextStorage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextContainer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISheetPresentationController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverPresentationController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicAnimator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPushBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISnapBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicItemBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFieldBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGravityBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAttachmentBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollisionBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIRegion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDragPreviewRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDragURLPreviews.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewPropertyAnimator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFeedbackGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISelectionFeedbackGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImpactFeedbackGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINotificationFeedbackGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccessRestrictions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizerSubclass.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRendererSubclass.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPencilInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneEnhancedStateRestoration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneActivationConditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIOpenURLContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStatusBarManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScreenshotService.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSUserActivity+NSItemProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UNNotificationResponse+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationResponse.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenuBuilder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDeferredMenuElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenuSystem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextFormattingCoordinator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerRegion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBandSelectionInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerAccessory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIColorWell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIColorPickerViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIEventAttribution.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIEventAttributionView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBehavioralStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowSceneActivationRequestOptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowSceneActivationConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowSceneActivationAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowSceneActivationInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIToolTipInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFoundation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextRange.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextSelection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextSelectionNavigation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextViewportLayoutController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextContentManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextLayoutFragment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextLayoutManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextLineFragment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/DocumentManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/ShareSheet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentInteractionController.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch new file mode 100644 index 0000000..2debc67 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/4403900921092490547/GuyMcdoooooTipop_Prefix.pch.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/4403900921092490547/GuyMcdoooooTipop_Prefix.pch.d new file mode 100644 index 0000000..51627e1 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/4403900921092490547/GuyMcdoooooTipop_Prefix.pch.d @@ -0,0 +1,3 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/4403900921092490547/GuyMcdoooooTipop_Prefix.pch.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/4403900921092490547/GuyMcdoooooTipop_Prefix.pch.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/4403900921092490547/GuyMcdoooooTipop_Prefix.pch.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/4403900921092490547/GuyMcdoooooTipop_Prefix.pch.gch b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/4403900921092490547/GuyMcdoooooTipop_Prefix.pch.gch new file mode 100644 index 0000000..8b1b643 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/4403900921092490547/GuyMcdoooooTipop_Prefix.pch.gch differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.d new file mode 100644 index 0000000..4ed5a70 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.d @@ -0,0 +1,1149 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/appleapiopts.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/cdefs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_symbol_aliasing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_posix_availability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_int8_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_int16_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_int32_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_int64_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int8_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int16_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int32_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int64_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_intptr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_uintptr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/endian.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/endian.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_endian.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/_OSByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/arm/OSByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/stdint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/__config \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/pthread.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/stdint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/stdint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uint8_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uint16_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uint32_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uint64_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_intmax_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uintmax_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/arch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_char.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_short.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_caddr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_dev_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_blkcnt_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_blksize_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_gid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_in_addr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_in_port_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ino_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ino64_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_key_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_mode_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_nlink_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_id_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_pid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_off_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_uid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_clock_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_size_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ssize_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_time_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_useconds_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_suseconds_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_rsize_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_errno_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_def.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/Availability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/AvailabilityVersions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/AvailabilityInternal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_setsize.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_set.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_clr.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_zero.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_isset.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_copy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_cond_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_once_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_key_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fsblkcnt_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fsfilcnt_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/stdarg.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/assert.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/stdlib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/stdlib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/wait.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/signal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/signal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/signal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/_mcontext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/_mcontext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/_structs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/_structs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_sigaltstack.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ucontext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_sigset_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/resource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_timeval.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/alloca.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ct_rune_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_rune_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_wchar_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_null.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/malloc/_malloc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/ctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_ctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/runetype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_wint_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/errno.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/errno.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/errno.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/float.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/float.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/float.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/_limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/syslimits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/locale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/locale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_locale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/math.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/math.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/type_traits \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/cstddef \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/version \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/stddef.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/__stddef_max_align_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/__nullptr \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/limits \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/__undef_macros \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/setjmp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/setjmp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/signal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/stddef.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/stdio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/stdio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_stdio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_va_list.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/stdio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_ctermid.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/string.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/string.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/strings.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/time.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_timespec.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/TargetConditionals.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAvailability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/availability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/AvailabilityMacros.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/stdbool.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/stdbool.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/Block.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/MacTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ConditionalMacros.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/ptrauth.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFArray.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBag.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBinaryHeap.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBitVector.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFLocale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDictionary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNotificationCenter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTimeZone.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFData.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCharacterSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDateFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumber.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPreferences.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPropertyList.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURL.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/port.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/boolean.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/boolean.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/boolean.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/vm_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/vm_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_mach_port_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/dispatch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/base.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/unistd.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/unistd.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_posix_vdisable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_seek_set.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/select.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_select.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_uuid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/gethostuuid.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/fcntl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/fcntl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_o_sync.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_o_dsync.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_s_ifmt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_filesec_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/object.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/NSObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc-api.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/NSObjCRuntime.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup_base.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/clock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup_object.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup_interval.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup_parallel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/base.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/time.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/clock_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/time_value.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/object.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/qos.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/queue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/block.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/source.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/message.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/kern_return.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/kern_return.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/kern_return.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/group.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/semaphore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/once.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/data.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/io.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/workloop.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringEncodingExt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTree.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLAccess.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUUID.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUtilities.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBundle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMessagePort.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugIn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMachPort.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLEnumerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileSecurity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/acl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/kauth.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_guid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringTokenizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUserNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLNode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLParser.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSZone.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnumerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionDifference.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionChange.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAutoreleasePool.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBundle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSItemProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDictionary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProgress.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCharacterSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSData.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateInterval.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateIntervalFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMassFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLengthFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnergyFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUnit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurementFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNumberFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLocale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponents.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponentsFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRelativeDateTimeFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSListFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimalNumber.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScanner.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSException.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileHandle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRunLoop.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPathUtilities.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURL.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLHandle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHashTable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerFunctions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookie.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookieStorage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexPath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInflectionRule.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInvocation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSJSONSerialization.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueObserving.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyedArchiver.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPropertyList.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMapTable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMethodSignature.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMorphology.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotificationQueue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNull.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrthography.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerArray.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPort.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProcessInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProxy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRegularExpression.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTextCheckingResult.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSortDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSThread.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimeZone.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLAuthenticationChallenge.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCache.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredential.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/Security.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecCertificate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecIdentity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecAccessControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecKey.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecPolicy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecRandom.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecImportExport.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecTrust.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecSharedCredential.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolOptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/CipherSuite.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolMetadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredentialStorage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtectionSpace.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetwork.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkDefs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFSocketStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHost.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFFTPStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPMessage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPAuthentication.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetDiagnostics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFProxySupport.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtocol.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLResponse.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserDefaults.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValueTransformer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLParser.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXPCConnection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/xpc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/mman.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/uuid/uuid.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/base.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/availability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/endpoint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/debug.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/connection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/activity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/launch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/std_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_statistics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_notify.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_special_ports.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/memory_object_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_prot.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_sync.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/exception_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/exception.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/exception.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_status.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/thread_status.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/thread_status.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/thread_state.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/thread_state.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/ipc_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_voucher_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/processor_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/processor_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/processor_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/policy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task_inspect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task_policy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task_special_ports.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_policy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_special_ports.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_attributes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_inherit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_purgable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_behavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_region.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/vm_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/vm_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_page_size.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/kmod.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/dyld_kernel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fsid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fsobj_id_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_interface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/clock_priv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/ndr.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/notify.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mig_errors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mig.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mig_strncpy_zerofill_support.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_priv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/mach_debug_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/vm_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/zone_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/page_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/hash_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/lockgroup_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_security.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/lock_set.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/processor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/processor_set.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/semaphore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/sync_policy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_act.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_map.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_port.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_init.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_traps.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_host.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_switch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/rpc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/rpc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/rpc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_error.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/error.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteCountFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSComparisonPredicate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCompoundPredicate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateComponentsFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExpression.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionRequestHandling.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileCoordinator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFilePresenter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileVersion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileWrapper.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLinguisticTagger.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadataAttributes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUbiquitousKeyValueStore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUndoManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecureTransport.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserActivity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAffineTransform.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSGeometry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGeometry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGAffineTransform.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAppleScript.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArchiver.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBackgroundActivityScheduler.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendarDate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSConnection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDistantObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDistributedNotificationCenter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPortCoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPortMessage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPortNameServer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProtocolChecker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTask.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLDTD.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLNode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLNodeOptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLDTDNode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLDownload.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAppleEventDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Headers/CoreServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AE.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/CarbonCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Finder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/FixMath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Script.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/IntlResources.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/UTCUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MacErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/TextCommon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Collections.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MixedMode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Endian.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Gestalt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MacMemory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Math64.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/BackupCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/DiskSpaceRecovery.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Components.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Files.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/OSUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/DateTimeUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/DiskArbitration.framework/Headers/DADisk.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOKitLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOReturn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_os_inline.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/device/device_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOMapTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOKitKeys.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/OSMessageNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/DiskArbitration.framework/Headers/DASession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/hfs/hfs_unistr.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Resources.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/CodeFragments.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Multiprocessing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Aliases.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MacLocales.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Debugging.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/AssertMacros.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/PLStringFuncs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/DriverSynchronization.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/DriverServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MachineExceptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/NumberFormatting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/StringCompare.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/TextUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/ToolUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/UnicodeUtilities.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/fp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/fenv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/fenv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/TextEncodingConverter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/UnicodeConverter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Threads.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Folders.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Timer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MultiprocessingInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/LowMem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/AVLTree.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/PEFBinaryFormat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/HFSVolumes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/hfs/hfs_format.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/AIFF.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/TextEncodingPlugin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEDataModel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AppleEvents.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEPackObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEObjects.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AERegistry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEUserTermTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEHelpers.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEMach.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/DictionaryServices.framework/Headers/DictionaryServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LaunchServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LSInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LSInfoDeprecated.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LSOpen.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LSOpenDeprecated.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/UTCoreTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/UTType.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/Metadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDLabel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDQuery.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDSchema.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDImporter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/OSServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/CSIdentity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/CSIdentityBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/CSIdentityAuthority.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/CSIdentityQuery.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SearchKit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKAnalysis.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKIndex.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKSearch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKSummary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/FSEvents.framework/Headers/FSEvents.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SharedFileList.framework/Headers/SharedFileList.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAppleEventManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSClassDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDistributedLock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSGarbageCollector.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHFSFileTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHost.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjectScripting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptClassDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptCoercionHandler.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptCommand.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptCommandDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptExecutionContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptKeyValueCoding.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptObjectSpecifiers.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptStandardSuiteCommands.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptSuiteRegistry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptWhoseTests.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSpellServer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserScriptTask.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationLegacySwiftCompatibility.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityConstants.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBitmapContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorSpace.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPattern.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFont.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGradient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFPage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDictionary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFArray.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGShading.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFunction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorConversionInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGConvertColorDataWithFormat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataConsumer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContentStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFOperatorTable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFScanner.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDirectDisplay.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGWindow.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGWindowLevel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDirectPalette.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDisplayConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDisplayFade.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDisplayStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGRemoteOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomicDeprecated.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomicQueue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOGraphicsTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOSharedLock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventSource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPSConverter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDirectDisplayMetal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGeometry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImageDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIVector.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIColor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CoreVideo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVReturn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVImageBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferIOSurface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceRef.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferPool.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/OpenGL.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/OpenGLAvailability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLCurrent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/gltypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLRenderers.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLIOSurface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLBufferPool.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLTexture.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLTextureCache.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelFormatDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTexture.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTextureCache.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPixelFormat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIO.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIOBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageSource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageMetadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageDestination.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageProperties.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageAnimation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterConstructor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIDetector.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFeature.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProcessor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageAccumulator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterShape.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CISampler.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRAWFilter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRenderDestination.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceObjC.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIBarcodeDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIPlugIn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernelMetalLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFont.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFontDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFontMetrics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSItemProvider+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsImageRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImageConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImageSymbolConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSDataAsset.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILocalNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSAttributedString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSParagraphStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSText.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTParagraphStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSShadow.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSStringDrawing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccelerometer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreVideo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreAnimation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CABase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransform3D.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAAnimation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CALayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTiming.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAConstraintLayoutManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CADisplayLink.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMetalLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEDRMetadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDrawable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAGradientLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAOpenGLLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CARemoteLayerClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CARemoteLayerServer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CARenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAReplicatorLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAScrollLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAShapeLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATextLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATiledLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransaction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransformLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAValueFunction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICommand.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenuElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenu.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKeyCommand.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfigurationSupporting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIUserActivity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocus.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusGuide.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusAnimationCoordinator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIRefreshControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContainer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomRotor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextInput.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAlert.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActionSheet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStringDrawing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDragging.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDropInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewAnimating.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDropping.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDropProposal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteConfigurationSupporting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteDelegate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategoryAdjusting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneDefinitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStateRestoration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerLockState.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScene.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteractionSupporting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityZoom.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccess.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityLocationDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContentSizeCategoryImageAdjusting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIButtonConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBackgroundConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIConfigurationColorTransformer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSToolbar+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowScene.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneOptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfigurationReading.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKitDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSMenuToolbarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSharingServicePickerToolbarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSharingService.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSearchToolbarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTouchBar+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTouchBar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSharingServicePickerTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarCommon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemGroup.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSIndexPath+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDataSourceTranslating.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewFlowLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewUpdateItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewTransitionLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCompositionalLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICellAccessory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewListCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDiffableDataSource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISwipeActionsConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContextualAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSDiffableDataSourceSectionSnapshot.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewItemRegistration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionLayoutList.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIListSeparatorConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIConfigurationState.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewConfigurationState.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICellConfigurationState.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContentConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIListContentConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIListContentImageProperties.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIListContentTextProperties.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKey.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKeyConstants.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDataDetectors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDatePicker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentMenuViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerExtensionViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICloudSharingController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSFileProviderExtension.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderExtension.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBlurEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIVibrancyEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewControllerConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsPDFRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImageAsset.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImagePickerController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPanGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITapGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIInputView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIInputViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILexicon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILargeContentViewer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIApplicationShortcutItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusSystem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusDebugger.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusMovementHint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIHoverGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILocalizedIndexedCollation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILongPressGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIManagedDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenuController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMotionEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINavigationItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINibLoading.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINibDeclarations.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPageControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPageViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPasteboard.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPinchGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverSupport.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverBackgroundView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPress.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPressesEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrinter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrinterPickerController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInteractionController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPageRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPaper.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintServiceExtension.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIProgressView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIReferenceLibraryViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIRotationGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScreenEdgePanGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScreenMode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchContainerViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPresentationController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitionCoordinator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitioning.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITimingParameters.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITimingCurveProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchDisplayController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchTextField.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISegmentedControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISlider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISplitViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStepper.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboard.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardPopoverSegue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardSegue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISwitch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITabBar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITabBarController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITabBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITableViewHeaderFooterView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextChecker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextItemInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIToolbar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIVideoEditorController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWebView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreview.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreviewParameters.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewParameters.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITargetedDragPreview.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITargetedPreview.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBarAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIToolbarAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITabBarAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIResponder+UIActivityItemsConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchSuggestion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScribbleInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIIndirectScribbleInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKeyboardLayoutGuide.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITrackingLayoutGuide.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextStorage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextContainer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISheetPresentationController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverPresentationController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicAnimator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPushBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISnapBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicItemBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFieldBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGravityBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAttachmentBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollisionBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIRegion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDragPreviewRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDragURLPreviews.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewPropertyAnimator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFeedbackGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISelectionFeedbackGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImpactFeedbackGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINotificationFeedbackGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccessRestrictions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizerSubclass.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRendererSubclass.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPencilInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneEnhancedStateRestoration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneActivationConditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIOpenURLContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStatusBarManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScreenshotService.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSUserActivity+NSItemProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UNNotificationResponse+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationResponse.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenuBuilder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDeferredMenuElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenuSystem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextFormattingCoordinator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerRegion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBandSelectionInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerAccessory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIColorWell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIColorPickerViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIEventAttribution.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIEventAttributionView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBehavioralStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowSceneActivationRequestOptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowSceneActivationConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowSceneActivationAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowSceneActivationInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIToolTipInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFoundation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextRange.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextSelection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextSelectionNavigation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextViewportLayoutController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextContentManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextLayoutFragment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextLayoutManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextLineFragment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/DocumentManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/ShareSheet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentInteractionController.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch new file mode 100644 index 0000000..adfeb49 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7031153137348716277/GuyMcdoooooTipop_Prefix.pch.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7031153137348716277/GuyMcdoooooTipop_Prefix.pch.d new file mode 100644 index 0000000..51627e1 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7031153137348716277/GuyMcdoooooTipop_Prefix.pch.d @@ -0,0 +1,3 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7031153137348716277/GuyMcdoooooTipop_Prefix.pch.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7031153137348716277/GuyMcdoooooTipop_Prefix.pch.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7031153137348716277/GuyMcdoooooTipop_Prefix.pch.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7031153137348716277/GuyMcdoooooTipop_Prefix.pch.gch b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7031153137348716277/GuyMcdoooooTipop_Prefix.pch.gch new file mode 100644 index 0000000..9f8d6b2 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7031153137348716277/GuyMcdoooooTipop_Prefix.pch.gch differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch.d b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch.d new file mode 100644 index 0000000..5e0aef6 --- /dev/null +++ b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch.d @@ -0,0 +1,2306 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/Darwin-HUB66TE1ZK5G.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xcselect.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/kcdata.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/uuid.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/device.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bank.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_posix_sys_types.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_cdefs.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/cdefs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_symbol_aliasing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_posix_availability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/complex.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/copyfile.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/stdint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/stdint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_int8_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_int16_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_int32_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_int64_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uint8_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uint16_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uint32_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uint64_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_intptr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int8_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int16_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int32_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int64_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_uintptr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_intmax_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uintmax_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_ctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/runetype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_size_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ct_rune_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_rune_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_wchar_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_wint_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/err.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/Availability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/AvailabilityVersions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/AvailabilityInternal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/errno.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/errno.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_errno_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/fenv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/float.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/float.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/inttypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/iso646.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/_limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/syslimits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/locale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_locale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_null.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/math.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/readpassphrase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/setjmp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/signal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/signal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/appleapiopts.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/signal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/signal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/_mcontext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/_mcontext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/_structs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/_structs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_sigaltstack.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ucontext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_pid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_sigset_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_uid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/stdarg.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/stdatomic.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/stddef.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/stdbool.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/stdio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_stdio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_va_list.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/stdio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_ctermid.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_off_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ssize_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/secure/_stdio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/secure/_common.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/stdlib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/wait.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_id_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/resource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_timeval.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/endian.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/endian.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_endian.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/_OSByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/i386/_OSByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/alloca.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/malloc/_malloc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_dev_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_mode_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/string.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_rsize_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/strings.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/secure/_strings.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/secure/_string.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/tgmath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/tgmath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/time.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_clock_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_time_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_timespec.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/util.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ttycom.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ioccom.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_char.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_short.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_caddr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_blkcnt_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_blksize_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_gid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_in_addr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_in_port_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ino_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ino64_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_key_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_nlink_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_useconds_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_suseconds_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_def.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_setsize.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_set.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_clr.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_zero.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_isset.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_copy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_cond_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_once_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_key_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fsblkcnt_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fsfilcnt_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/pwd.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/uuid/uuid.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_uuid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/termios.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/termios.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_posix_vdisable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ttydefaults.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/utmp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/wchar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_mbstate_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_wctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/__wctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_wctype_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/wctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_wctrans_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_xlocale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_ctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/__wctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_inttypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_stdio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_stdlib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_string.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_time.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_wchar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_wctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_langinfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_nl_item.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_monetary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_regex.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_regex.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xattr_flags.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/aio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/aio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_o_sync.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_o_dsync.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arpa/inet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/in.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/socket.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/net_kev.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_sa_family_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_socklen_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_iovec_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6/in6.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/cpio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dirent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/dirent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/dir.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dlfcn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/fcntl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/fcntl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_seek_set.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_s_ifmt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_filesec_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/fmtmsg.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/fnmatch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ftw.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/stat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/glob.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/grp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/iconv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ifaddrs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/availability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ioctl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/filio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/sockio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/langinfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libgen.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/monetary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ndbm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netdb.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/if_dl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/if.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/if_var.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/time.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_timeval64.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_select.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/queue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_timeval32.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/if_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/tcp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/nl_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/poll.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/poll.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/pthread/pthread.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/pthread/sched.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/pthread/pthread_impl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/pthread/qos.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/qos.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_mach_port_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/pthread_spis.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/pthread/spawn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/spawn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/spawn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/exception_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/exception.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/exception.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/port.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/boolean.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/boolean.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/boolean.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/vm_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/vm_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_status.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/thread_status.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/thread_status.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/thread_state.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/thread_state.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/message.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/kern_return.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/kern_return.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/kern_return.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/fp_reg.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/eflags.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/ipc_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/regex.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/search.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/semaphore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/semaphore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/posix_sem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/proc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/select.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/lock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/event.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ipc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/mman.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/msg.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/sem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/shm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/posix_shm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/statvfs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/times.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fsid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fsobj_id_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_guid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_offsetof.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_os_inline.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ptrdiff_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ucontext64.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/uio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/un.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/utsname.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/xattr.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/syslog.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/syslog.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/tar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ulimit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/unistd.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/unistd.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/gethostuuid.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/utime.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/utmpx.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/wordexp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/bpf.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/dlil.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/ethernet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/if_arp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/if_llc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/if_media.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/if_mib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/if_utun.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/kext_net.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/ndrv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/pfkeyv2.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/route.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/bootp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/ip.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/in_systm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/udp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/icmp6.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/icmp_var.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/ip_icmp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/if_ether.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/igmp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/igmp_var.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/in_pcb.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/socketvar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/TargetConditionals.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/in_var.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/kern_event.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/sys_domain.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6/in6_var.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6/scope6_var.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/ip6.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/ip_var.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/tcp_fsm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/tcp_seq.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/tcp_timer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/tcp_var.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/tcpip.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/udp_var.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/sysctl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ucred.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/vm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/AvailabilityMacros.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bank/bank_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_statistics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/time_value.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_notify.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_special_ports.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/memory_object_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_prot.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_sync.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_voucher_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/std_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/processor_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/processor_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/processor_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/policy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task_inspect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task_policy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task_special_ports.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_policy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_special_ports.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/clock_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_attributes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_inherit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_purgable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_behavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_region.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/vm_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/vm_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_page_size.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/kmod.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/dyld_kernel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ConditionalMacros.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/getopt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/AssertMacros.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/MacTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_interface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/clock_priv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/ndr.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/i386/OSByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/notify.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mig_errors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mig.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_priv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/mach_debug_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/vm_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/zone_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/page_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/hash_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/lockgroup_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_security.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/lock_set.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/processor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/processor_set.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/semaphore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/sync_policy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_act.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_map.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_port.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_init.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_traps.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_host.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_switch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/rpc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/rpc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/rpc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_error.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/error.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/audit_triggers_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/bootstrap.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/clock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/clock_reply.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/exc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/exception.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_reboot.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_right.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_syscalls.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_time.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_vm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_voucher.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/memory_entry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mig_strncpy_zerofill_support.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mig_voucher_support.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/port_obj.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/sdt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/sdt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/sdt_isa.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/sdt_isa.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/sdt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/shared_region.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/sync.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_state.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_task.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/asm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/asm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/asm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm64/asm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/_structs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/boolean.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/exception.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/kern_return.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/ndr_def.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/ndr_def.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/processor_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/rpc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/sdt_isa.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/thread_state.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/thread_status.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/traps.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/vm_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/vm_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/mach_debug.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/device/device_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/device/device_port.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomicDeprecated.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomicQueue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/base.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/clock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/lock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/malloc/malloc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/malloc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/_limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/_limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/_mcontext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/arch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/byte_order.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/architecture/byte_order.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/endian.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/fasttrap_isa.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/fasttrap_isa.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/fasttrap_isa.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/profile.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/profile.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/profile.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/signal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/user_ldt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/vmparam.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/vmparam.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/vmparam.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/Block.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_domain.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_errno.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_fcntl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_filter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/libbsm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/inttypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_record.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_internal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_kevents.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_session.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_socket_type.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_uevents.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/hfs/hfs_format.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/hfs/hfs_unistr.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/hfs/hfs_mount.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/mount.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/attr.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/curses.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ncurses_dll.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/unctrl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6/ah.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6/esp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6/ipcomp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6/ipsec.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6/raw_ip6.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/acct.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/acl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/kauth.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/buf.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/kernel_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/clonefile.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/commpage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/conf.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/disk.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/dkstat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/domain.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ev.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/file.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/filedesc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/gmon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ioctl_compat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ttychars.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ttydev.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/kdebug.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/kdebug_signpost.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/lctx.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/kern_control.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/mbuf.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/msgbuf.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/netport.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/paths.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/pipe.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/proc_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/quota.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/rbtree.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/reboot.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/resourcevar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/sbuf.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/signalvar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/syscall.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/timeb.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/trace.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/tty.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ucontext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/unpcb.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/user.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/utfconv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/vcmd.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/vnode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/paths.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sysexits.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/ptrauth-2VKHMASVBPQKZ.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/ptrauth.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/MachO-TZ4CHES3I8A3.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/dyld.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/dyld.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/loader.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/compact_unwind_encoding.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/arch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/fat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/getsect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/ldsyms.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/nlist.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/ranlib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/reloc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/stab.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/swap.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/ObjectiveC-11FESPOBLW01.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/NSObjCRuntime.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc-api.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/NSObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/Object.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc-runtime.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/runtime.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/message.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/Protocol.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/hashtable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/hashtable2.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc-auto.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc-class.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc-exception.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc-load.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc-sync.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/os_object-HUB66TE1ZK5G.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/object.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/CommonCrypto/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libxml/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libxslt/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/unicode/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libexslt/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/simd/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/EndpointSecurity/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/networkext/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/tidy/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ffi/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/AppleArchive/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/cups/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/os_workgroup-HUB66TE1ZK5G.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup_base.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup_object.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup_interval.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup_parallel.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/Dispatch-3GFWUX8XIVRBY.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/dispatch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/base.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/time.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/object.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/queue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/block.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/source.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/group.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/semaphore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/once.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/data.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/io.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/workloop.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/CoreFoundation-1IDL4661K1PD.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/assert.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAvailability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFArray.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBag.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBinaryHeap.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBitVector.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFLocale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDictionary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNotificationCenter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTimeZone.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFData.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCharacterSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDateFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumber.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPreferences.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPropertyList.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURL.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringEncodingExt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTree.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLAccess.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUUID.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUtilities.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBundle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMessagePort.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugIn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMachPort.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLEnumerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileSecurity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringTokenizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUserNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLNode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLParser.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugInCOM.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/launch-HUB66TE1ZK5G.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/launch.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/XPC-9RI595ZZIX4G.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/xpc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/base.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/availability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/endpoint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/debug.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/connection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/activity.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/Security-N54N1RN2VD1M.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/Security.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecCertificate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecIdentity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecAccessControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecKey.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecPolicy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecRandom.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecImportExport.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecTrust.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecSharedCredential.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolOptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/CipherSuite.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolMetadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/AuthorizationPlugin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/Authorization.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/AuthSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/CodeSigning.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecStaticCode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/CSCommon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecCode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecRequirement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/eisl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/cssmconfig.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecAsn1Coder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecAsn1Types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecAsn1Templates.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecureDownload.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecureTransport.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/CFNetwork-5FJZUYI7N7KS.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetwork.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkDefs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFSocketStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHost.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFFTPStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPMessage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPAuthentication.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetDiagnostics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFProxySupport.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/libkern-HUB66TE1ZK5G.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSCacheControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSDebug.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSReturn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSKextLib.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/IOKit-YDMQELDJRDYQ.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOReturn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOMapTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOKitKeys.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/OSMessageNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOKitLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOBSD.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IODataQueueClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IODataQueueShared.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOCFBundle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOSharedLock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOCFPlugIn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOCFSerialize.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOCFURLAccess.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOKitServer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOCFUnserialize.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOMessage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IORPC.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOUserServer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/audio/IOAudioDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/audio/IOAudioLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/audio/IOAudioTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/avc/IOFireWireAVCConsts.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/avc/IOFireWireAVCLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/firewire/IOFireWireFamilyCommon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/firewire/IOFireWireLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/firewire/IOFireWireLibIsoch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOAccelClientConnect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOGraphicsInterface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOGraphicsInterfaceTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOAccelSurfaceConnect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOAccelTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOGraphicsLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOFramebufferShared.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOGraphicsTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOGraphicsEngine.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDKeys.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDParameter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDProperties.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDEventServiceKeys.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDDeviceTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDDeviceKeys.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDQueue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDLibObsolete.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDUsageTables.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDValue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDTransaction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDDevicePlugIn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDEventServiceTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDShared.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/event_status_driver.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/ev_keymap.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDEventSystemClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDServiceClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDUserDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/i2c/IOI2CInterface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/kext/KextManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IOEthernetController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IONetworkController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IONetworkData.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IONetworkStack.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IOEthernetInterface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IONetworkInterface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IONetworkStats.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IOEthernetStats.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IONetworkLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IONetworkMedium.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IONetworkUserClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/ps/IOPSKeys.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/ps/IOPowerSources.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/ps/IOUPSPlugIn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/pwr_mgt/IOPM.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/pwr_mgt/IOPMKeys.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/pwr_mgt/IOPMLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/pwr_mgt/IOPMLibDefs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/sbp2/IOFireWireSBP2Lib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/IOSCSIMultimediaCommandsDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOStorageDeviceCharacteristics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOStorageProtocolCharacteristics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOStorageControllerCharacteristics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/SCSICmds_REQUEST_SENSE_Defs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/SCSICmds_INQUIRY_Definitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/SCSICommandDefinitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/SCSICmds_MODE_Definitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/SCSICommandOperationCodes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/SCSICmds_READ_CAPACITY_Definitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/SCSITask.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/SCSICmds_REPORT_LUNS_Definitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/SCSITaskLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/serial/IOSerialKeys.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/serial/ioss.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOAppleLabelScheme.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IODVDMediaBSDClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IODVDTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOApplePartitionScheme.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOBDBlockStorageDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOBDTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOFDiskPartitionScheme.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOBDMedia.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOFilterScheme.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOBDMediaBSDClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOFireWireStorageCharacteristics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOGUIDPartitionScheme.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOBlockStorageDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOMedia.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOBlockStorageDriver.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOMediaBSDClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOCDBlockStorageDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOCDTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOPartitionScheme.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOCDMedia.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOStorage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOCDMediaBSDClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOStorageCardCharacteristics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOCDPartitionScheme.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IODVDBlockStorageDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IODVDMedia.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/ata/ATASMARTLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/ata/IOATAStorageDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/stream/IOStreamLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/stream/IOStreamShared.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/usb/AppleUSBDefinitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/usb/IOUSBHostFamilyDefinitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/usb/IOUSBLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/usb/USB.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/usb/USBSpec.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/CoreGraphics-29VBLVJV3EW80.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGAffineTransform.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGeometry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBitmapContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorSpace.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPattern.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFont.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGradient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFPage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDictionary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFArray.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGShading.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFunction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorConversionInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGConvertColorDataWithFormat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataConsumer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContentStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFOperatorTable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFScanner.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDirectDisplay.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGWindow.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGWindowLevel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDirectPalette.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDisplayConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDisplayFade.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDisplayStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGRemoteOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventSource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPSConverter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDirectDisplayMetal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/DiskArbitration.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/DiskArbitration-2ENF2QY2DVG4T.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/DiskArbitration.framework/Headers/DiskArbitration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/DiskArbitration.framework/Headers/DADisk.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/DiskArbitration.framework/Headers/DASession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/DiskArbitration.framework/Headers/DADissenter.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/_Builtin_intrinsics-2VKHMASVBPQKZ.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/immintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/x86gprintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/hresetintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/uintrintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/mmintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/xmmintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/mm_malloc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/emmintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/pmmintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/tmmintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/smmintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/popcntintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/wmmintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/__wmmintrin_aes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/__wmmintrin_pclmul.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/clflushoptintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/clwbintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avxintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx2intrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/f16cintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/vpclmulqdqintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/bmiintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/bmi2intrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/lzcntintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/fmaintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512fintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vlintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512bwintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512bitalgintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512cdintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vpopcntdqintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vpopcntdqvlintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vnniintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vlvnniintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avxvnniintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512dqintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vlbitalgintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vlbwintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vlcdintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vldqintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512erintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512ifmaintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512ifmavlintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vbmiintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vbmivlintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vbmi2intrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vlvbmi2intrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512pfintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512bf16intrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vlbf16intrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/pkuintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/vaesintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/gfniintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/rtmintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/xtestintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/shaintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/fxsrintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/xsaveintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/xsaveoptintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/xsavecintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/xsavesintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/cetintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/adxintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/rdseedintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/wbnoinvdintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/cldemoteintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/waitpkgintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/movdirintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/pconfigintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/sgxintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/ptwriteintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/invpcidintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/keylockerintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/amxintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vp2intersectintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vlvp2intersectintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/enqcmdintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/serializeintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/tsxldtrkintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/x86intrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/ia32intrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/mm3dnow.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/prfchwintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/ammintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/fma4intrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/xopintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/tbmintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/lwpintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/mwaitxintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/clzerointrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/cpuid.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/nmmintrin.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/CoreServices-37QL6MRX88UHQ.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Headers/CoreServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AE.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/CarbonCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Finder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/FixMath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Script.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/IntlResources.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/UTCUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MacErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/TextCommon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Collections.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MixedMode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Endian.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Gestalt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MacMemory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Math64.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/BackupCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/DiskSpaceRecovery.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Components.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Files.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/OSUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/DateTimeUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Resources.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/CodeFragments.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Multiprocessing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Aliases.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MacLocales.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Debugging.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/PLStringFuncs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/DriverSynchronization.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/DriverServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MachineExceptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/NumberFormatting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/StringCompare.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/TextUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/ToolUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/UnicodeUtilities.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/fp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/TextEncodingConverter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/UnicodeConverter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Threads.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Folders.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Timer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MultiprocessingInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/LowMem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/AVLTree.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/PEFBinaryFormat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/HFSVolumes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/AIFF.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/TextEncodingPlugin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEDataModel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AppleEvents.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEPackObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEObjects.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AERegistry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEUserTermTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEHelpers.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEMach.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/DictionaryServices.framework/Headers/DictionaryServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LaunchServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LSInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LSInfoDeprecated.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LSOpen.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LSOpenDeprecated.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/UTCoreTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/UTType.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/Metadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDLabel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDQuery.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDSchema.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDImporter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/OSServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/CSIdentity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/CSIdentityBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/CSIdentityAuthority.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/CSIdentityQuery.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SearchKit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKAnalysis.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKIndex.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKSearch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKSummary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/FSEvents.framework/Headers/FSEvents.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SharedFileList.framework/Headers/SharedFileList.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/Foundation-26LJKO9TWD70R.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSZone.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnumerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionDifference.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionChange.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAutoreleasePool.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBundle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSItemProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDictionary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProgress.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCharacterSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSData.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateInterval.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateIntervalFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMassFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLengthFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnergyFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUnit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurementFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNumberFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLocale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponents.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponentsFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRelativeDateTimeFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSListFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimalNumber.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScanner.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSException.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileHandle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRunLoop.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPathUtilities.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURL.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLHandle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHashTable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerFunctions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookie.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookieStorage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexPath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInflectionRule.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInvocation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSJSONSerialization.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueObserving.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyedArchiver.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPropertyList.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMapTable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMethodSignature.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMorphology.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotificationQueue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNull.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrthography.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerArray.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPort.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProcessInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProxy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRegularExpression.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTextCheckingResult.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSortDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSThread.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimeZone.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLAuthenticationChallenge.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCache.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredential.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredentialStorage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtectionSpace.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtocol.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLResponse.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserDefaults.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValueTransformer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLParser.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXPCConnection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteCountFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSComparisonPredicate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCompoundPredicate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateComponentsFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExpression.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionRequestHandling.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileCoordinator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFilePresenter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileVersion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileWrapper.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLinguisticTagger.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadataAttributes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUbiquitousKeyValueStore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUndoManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserActivity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAffineTransform.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSGeometry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAppleScript.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArchiver.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBackgroundActivityScheduler.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendarDate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSConnection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDistantObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDistributedNotificationCenter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPortCoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPortMessage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPortNameServer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProtocolChecker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTask.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLDTD.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLNode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLNodeOptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLDTDNode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLDownload.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAppleEventDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAppleEventManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSClassDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDistributedLock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSGarbageCollector.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHFSFileTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHost.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjectScripting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptClassDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptCoercionHandler.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptCommand.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptCommandDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptExecutionContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptKeyValueCoding.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptObjectSpecifiers.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptStandardSuiteCommands.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptSuiteRegistry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptWhoseTests.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSpellServer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserScriptTask.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationLegacySwiftCompatibility.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDebug.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/IOSurface-298P2J4L4DUCJ.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceAPI.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceRef.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceObjC.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/OpenGL-3IMU1JTTPVTBE.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/OpenGL.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/OpenGLAvailability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLCurrent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/gltypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLRenderers.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLIOSurface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/gl3.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/gl3ext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/gl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/glext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/glu.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/gluContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/gliContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/gliDispatch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/Metal-12TFHXZAHM30N.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBlitCommandEncoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandEncoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResourceStateCommandEncoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTexture.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPixelFormat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFence.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLLibrary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionConstantValues.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCounters.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResourceStatePass.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPass.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBlitPass.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputeCommandEncoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputePass.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandQueue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDepthStencil.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDrawable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputePipeline.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLStageInputOutputDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPipeline.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLLinkedFunctions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPipeline.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderCommandEncoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionHandle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLVisibleFunctionTable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLVertexDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLParallelRenderCommandEncoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLSampler.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLHeap.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgumentEncoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureScope.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandEncoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionLog.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLAccelerationStructureCommandEncoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLAccelerationStructure.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLAccelerationStructureTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRasterizationRate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDynamicLibrary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBinaryArchive.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIntersectionFunctionTable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionStitching.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/CoreVideo-1UYXAKB0UN3LT.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CoreVideo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVReturn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVImageBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferIOSurface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferPool.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLBufferPool.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLTexture.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLTextureCache.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelFormatDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTexture.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTextureCache.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVHostTime.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/ImageIO-2DLIEL013SSNG.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIO.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIOBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageSource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageMetadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageDestination.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageProperties.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageAnimation.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/CoreImage-288IVEB6DDVM0.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImageDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIVector.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIColor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterConstructor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIDetector.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFeature.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProcessor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageAccumulator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterShape.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CISampler.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRAWFilter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRenderDestination.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIBarcodeDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIPlugIn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernelMetalLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterBuiltins.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/CoreText-14E9KS9SDY7E9.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFont.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontTraits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontCollection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManagerErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFrame.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFramesetter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTypesetter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTLine.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTGlyphInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTParagraphStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRubyAnnotation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRun.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRunDelegate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTStringAttributes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTextTab.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTLayoutTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/QuartzCore-1IHMB1XP2KSTU.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreVideo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreAnimation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CABase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransform3D.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAAnimation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CALayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTiming.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAConstraintLayoutManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CADisplayLink.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMetalLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEDRMetadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAGradientLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAOpenGLLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CARemoteLayerClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CARemoteLayerServer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CARenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAReplicatorLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAScrollLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAShapeLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATextLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATiledLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransaction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransformLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAValueFunction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ColorSync.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/ColorSync-1RL4YDDEEIB4.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ColorSync.framework/Headers/ColorSync.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ColorSync.framework/Headers/ColorSyncBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ColorSync.framework/Headers/ColorSyncProfile.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ColorSync.framework/Headers/ColorSyncTransform.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ColorSync.framework/Headers/ColorSyncCMM.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ColorSync.framework/Headers/ColorSyncDevice.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/ApplicationServices-1PJEA3VQBKS2E.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Headers/ATS.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Headers/ATSDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Headers/ATSLayoutTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Headers/SFNTLayoutTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Headers/ATSTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Headers/ATSFont.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Headers/SFNTTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/HIServices.framework/Headers/HIServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Headers/PrintCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Headers/PMDefinitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Headers/PMCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Headers/PMPrintAETypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Headers/PMPrintSettingsKeys.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Headers/PMErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/QD.framework/Headers/QD.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/QD.framework/Headers/Quickdraw.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/QD.framework/Headers/ColorSyncDeprecated.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/QD.framework/Headers/Fonts.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/QD.framework/Headers/ATSUnicode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATSUI.framework/Headers/ATSUnicode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATSUI.framework/Headers/ATSUnicodeTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATSUI.framework/Headers/ATSUnicodeGlyphs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATSUI.framework/Headers/ATSUnicodeFlattening.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATSUI.framework/Headers/ATSUnicodeDirectAccess.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/SpeechSynthesis.framework/Headers/SpeechSynthesis.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/CoreLocation-7OXSPJ1SC3J3.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CoreLocation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLAvailability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLErrorDomain.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLRegion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLLocation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLCircularRegion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLBeaconRegion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLBeaconIdentityConstraint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLHeading.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLLocationManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLLocationManagerDelegate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLVisit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLLocationManager+CLVisitExtensions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLPlacemark.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLGeocoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLLocationPushServiceExtension.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLLocationPushServiceError.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/CloudKit-SKO3ZFVD521L.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CloudKit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKAsset.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKContainer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKDatabase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKSubscription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKRecord.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKReference.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKLocationSortDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKQuery.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKRecordZone.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKRecordID.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKRecordZoneID.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKServerChangeToken.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKDatabaseOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKShare.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKShareParticipant.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKShareMetadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKUserIdentity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKUserIdentityLookupInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKAcceptSharesOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKDiscoverAllUserIdentitiesOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKDiscoverUserIdentitiesOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchDatabaseChangesOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchNotificationChangesOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchRecordChangesOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchRecordsOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchRecordZoneChangesOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchRecordZonesOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchShareMetadataOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchShareParticipantsOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchSubscriptionsOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchWebAuthTokenOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKMarkNotificationsReadOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKModifyBadgeOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKModifyRecordsOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKModifyRecordZonesOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKModifySubscriptionsOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKOperationGroup.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKQueryOperation.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/CoreData-3V2ED99TEVZON.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreDataDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreDataErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSAttributeDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPropertyDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSDerivedAttributeDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSEntityDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchedPropertyDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSExpressionDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSRelationshipDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchIndexDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchIndexElementDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStoreRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObjectID.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequestExpression.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObjectModel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObjectContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStoreCoordinator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSAtomicStore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSAtomicStoreCacheNode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSEntityMigrationPolicy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSMappingModel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSEntityMapping.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPropertyMapping.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSMigrationManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSIncrementalStore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSIncrementalStoreNode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStoreResult.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSSaveChangesRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSBatchUpdateRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSBatchDeleteRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSBatchInsertRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSMergePolicy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchedResultsController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSQueryGenerationToken.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStoreDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentContainer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentHistoryChange.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentHistoryChangeRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentHistoryToken.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentHistoryTransaction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentCloudKitContainer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentCloudKitContainerOptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentCloudKitContainerEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentCloudKitContainerEventRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSCoreDataCoreSpotlightDelegate.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/AppKit-1CGX9MIHA1TT4.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKitDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKitErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGraphicsContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGraphics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAccessibility.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAccessibilityConstants.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAccessibilityProtocols.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAccessibilityCustomAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAccessibilityElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAccessibilityCustomRotor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWorkspace.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSActionCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSText.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAnimation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDragging.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSResponder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTouch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSUserInterfaceItemIdentification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSUserInterfaceLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSpellProtocol.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSParagraphStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAlert.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSUserInterfaceValidation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSRunningApplication.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSUserActivity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSNib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSNibDeclarations.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSMenu.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSMenuItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPrintInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPrinter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSKeyValueBinding.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSHelpManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAnimationContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAppleScriptExtensions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSBox.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSButton.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSButtonCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSUserInterfaceCompression.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCandidateListTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTouchBar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSClipView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCollectionView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopover.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStoryboard.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStoryboardSegue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCollectionViewLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCollectionViewCompositionalLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCollectionViewFlowLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCollectionViewGridLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCollectionViewTransitionLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColorSampler.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDiffableDataSource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDockTile.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFont.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFontDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFontAssetRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFontCollection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFontManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFontPanel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPanel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWindow.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSForm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSMatrix.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFormCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColorList.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColorSpace.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSBitmapImageRep.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImageRep.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSBrowser.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSBrowserCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCachedImageRep.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCIImageRep.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColorPanel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColorPicking.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColorPicker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColorPickerTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColorWell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCursor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCustomImageRep.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCustomTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDocumentController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDraggingItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDraggingSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFilePromiseProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFilePromiseReceiver.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSEPSImageRep.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFileWrapperExtensions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGradient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGroupTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSClickGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPanGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPressGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSMagnificationGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSRotationGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSLayoutConstraint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSLayoutAnchor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSLayoutGuide.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImageCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImageView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSNibLoading.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSScrubber.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSScrubberItemView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSScrubberLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSharingServicePickerTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSharingService.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSliderAccessory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSliderTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSpeechRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSpeechSynthesizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSpellChecker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSplitView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSplitViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSplitViewItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSOpenPanel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSavePanel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPageLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboardItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopoverTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopUpButton.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSMenuItemCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPrintOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPrintPanel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPDFInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPDFPanel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSMediaLibraryBrowserController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSScreen.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSScrollView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSScroller.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextFinder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSegmentedControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSegmentedCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSlider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSliderCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStackView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSwitch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGridView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextCheckingClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextInputClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextCheckingController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextField.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextFieldCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextContent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTokenField.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextContainer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSLayoutManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextStorage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAttributedString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGlyphGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTokenFieldCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTrackingArea.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTrackingSeparatorToolbarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWindowTab.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWindowTabGroup.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWindowController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSComboBox.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSComboBoxCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableCellView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSInputManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextAttachment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextAttachmentCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableColumn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableHeaderCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableHeaderView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableRowView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableViewDiffableDataSource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableViewRowAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSOutlineView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSInputServer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStringDrawing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSRulerMarker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSRulerView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSecureTextField.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSInterfaceStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSProgressIndicator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTabView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTabViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTabViewItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopUpButtonCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAffineTransform.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSBezierPath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPICTImageRep.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStatusBar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStatusBarButton.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStatusItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSound.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSMovie.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPDFImageRep.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDrawer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSOpenGL.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSOpenGLLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSOpenGLView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplicationScripting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDocumentScripting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextStorageScripting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItemGroup.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSMenuToolbarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSharingServicePickerToolbarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWindowScripting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStepper.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStepperCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGlyphInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSShadow.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSATSTypesetter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTypesetter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSearchField.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSearchFieldCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSObjectController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSArrayController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDictionaryController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTreeNode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTreeController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSUserDefaultsController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextList.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextTable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDatePickerCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDatePicker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSLevelIndicatorCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSLevelIndicator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPersistentDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSRuleEditor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPredicateEditor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPredicateEditorRowTemplate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPathCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPathControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPathComponentCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPathControlItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPageController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextInputContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSUserInterfaceItemSearching.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWindowRestoration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextAlternatives.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSVisualEffectView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSItemProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTitlebarAccessoryViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDataAsset.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAlignmentFeedbackFilter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSHapticFeedback.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPressureConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSButtonTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPickerTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStepperTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTintConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSearchToolbarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextRange.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextSelection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextSelectionNavigation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextContentManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextLayoutFragment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextLayoutManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextLineFragment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextViewportLayoutController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/FileProvider-9WOYK8K2OOVL.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/FileProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDomain.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderExtension.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderEnumerating.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderActions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderService.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderThumbnailing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItemDecoration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderReplicatedExtension.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderTesting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/UserNotifications-1U9RH5TCDVS3G.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/NSString+UserNotifications.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationActionIcon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAttachment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationCategory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationContent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationResponse.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSettings.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSound.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationTrigger.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNUserNotificationCenter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationServiceExtension.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/29UCDTDY65DP9/UIKit-1U3ISKK4IMSII.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityConstants.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGeometry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFont.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFontDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFontMetrics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSItemProvider+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImageConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImageSymbolConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSDataAsset.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILocalNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSAttributedString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSParagraphStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSText.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSShadow.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSStringDrawing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccelerometer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICommand.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenuElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenu.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKeyCommand.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfigurationSupporting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIUserActivity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocus.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusGuide.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusAnimationCoordinator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIRefreshControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContainer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomRotor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextInput.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAlert.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActionSheet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStringDrawing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDragging.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDropInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewAnimating.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDropping.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDropProposal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteConfigurationSupporting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteDelegate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategoryAdjusting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneDefinitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStateRestoration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerLockState.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScene.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteractionSupporting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityZoom.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccess.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityLocationDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContentSizeCategoryImageAdjusting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIButtonConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBackgroundConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIConfigurationColorTransformer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSToolbar+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowScene.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneOptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfigurationReading.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTouchBar+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarCommon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemGroup.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSIndexPath+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDataSourceTranslating.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewFlowLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewUpdateItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewTransitionLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCompositionalLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICellAccessory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewListCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDiffableDataSource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISwipeActionsConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContextualAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSDiffableDataSourceSectionSnapshot.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewItemRegistration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionLayoutList.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIListSeparatorConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIConfigurationState.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewConfigurationState.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICellConfigurationState.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContentConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIListContentConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIListContentImageProperties.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIListContentTextProperties.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKey.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKeyConstants.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDataDetectors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDatePicker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentMenuViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerExtensionViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICloudSharingController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSFileProviderExtension.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBlurEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIVibrancyEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewControllerConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsImageRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsPDFRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImageAsset.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImagePickerController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPanGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITapGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIInputView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIInputViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILexicon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILargeContentViewer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIApplicationShortcutItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusSystem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusDebugger.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusMovementHint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIHoverGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILocalizedIndexedCollation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILongPressGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIManagedDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenuController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMotionEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINavigationItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINibLoading.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINibDeclarations.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPageControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPageViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPasteboard.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPinchGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverSupport.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverBackgroundView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPress.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPressesEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrinter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrinterPickerController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInteractionController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPageRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPaper.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintServiceExtension.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIProgressView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIReferenceLibraryViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIRotationGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScreenEdgePanGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScreenMode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchContainerViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPresentationController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitionCoordinator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitioning.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITimingParameters.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITimingCurveProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchDisplayController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchTextField.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISegmentedControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISlider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISplitViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStepper.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboard.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardPopoverSegue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardSegue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISwitch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITabBar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITabBarController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITabBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITableViewHeaderFooterView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextChecker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextItemInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIToolbar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIVideoEditorController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWebView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreview.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreviewParameters.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewParameters.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITargetedDragPreview.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITargetedPreview.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBarAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIToolbarAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITabBarAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIResponder+UIActivityItemsConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchSuggestion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScribbleInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIIndirectScribbleInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKeyboardLayoutGuide.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITrackingLayoutGuide.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextStorage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextContainer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISheetPresentationController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverPresentationController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicAnimator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPushBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISnapBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicItemBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFieldBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGravityBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAttachmentBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollisionBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIRegion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDragPreviewRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDragURLPreviews.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewPropertyAnimator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFeedbackGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISelectionFeedbackGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImpactFeedbackGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINotificationFeedbackGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccessRestrictions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizerSubclass.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRendererSubclass.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPencilInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneEnhancedStateRestoration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneActivationConditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIOpenURLContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStatusBarManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScreenshotService.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSUserActivity+NSItemProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UNNotificationResponse+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenuBuilder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDeferredMenuElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenuSystem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextFormattingCoordinator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerRegion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBandSelectionInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerAccessory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIColorWell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIColorPickerViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIEventAttribution.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIEventAttributionView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBehavioralStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowSceneActivationRequestOptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowSceneActivationConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowSceneActivationAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowSceneActivationInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIToolTipInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFoundation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextRange.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextSelection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextSelectionNavigation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextViewportLayoutController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextContentManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextLayoutFragment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextLayoutManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextLineFragment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/DocumentManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/ShareSheet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentInteractionController.h diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch.dia b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch.dia differ diff --git a/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch.gch b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch.gch new file mode 100644 index 0000000..2673500 Binary files /dev/null and b/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch.gch differ diff --git a/iphone/build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.d b/iphone/build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.d new file mode 100644 index 0000000..08df4dd --- /dev/null +++ b/iphone/build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.d @@ -0,0 +1,1155 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/appleapiopts.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/cdefs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_symbol_aliasing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_posix_availability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_int8_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_int16_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_int32_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_int64_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int8_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int16_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int32_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int64_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_intptr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_uintptr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/endian.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/endian.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_endian.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/_OSByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/i386/_OSByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_char.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_short.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_caddr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_dev_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_blkcnt_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_blksize_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_gid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_in_addr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_in_port_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ino_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ino64_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_key_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_mode_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_nlink_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_id_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_pid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_off_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_uid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_clock_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_size_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ssize_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_time_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_useconds_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_suseconds_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_rsize_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_errno_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_def.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/Availability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/AvailabilityVersions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/AvailabilityInternal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_setsize.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_set.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_clr.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_zero.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_isset.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_copy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_cond_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_once_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_key_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fsblkcnt_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fsfilcnt_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/stdarg.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/assert.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/stdlib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/__config \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/pthread.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/stdlib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/wait.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/signal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/signal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/signal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/_mcontext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/_mcontext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/_structs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/_structs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_sigaltstack.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ucontext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_sigset_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/resource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/stdint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/stdint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/stdint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uint8_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uint16_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uint32_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uint64_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_intmax_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uintmax_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_timeval.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/alloca.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ct_rune_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_rune_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_wchar_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_null.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/malloc/_malloc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/ctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_ctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/runetype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_wint_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/errno.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/errno.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/errno.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/float.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/float.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/float.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/_limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/syslimits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/locale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/locale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_locale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/math.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/math.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/type_traits \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/cstddef \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/version \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/stddef.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/__stddef_max_align_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/__nullptr \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/limits \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/__undef_macros \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/setjmp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/setjmp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/signal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/stddef.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/stdio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/stdio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_stdio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_va_list.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/stdio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_ctermid.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/string.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/string.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/strings.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/time.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_timespec.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/TargetConditionals.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAvailability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/availability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/AvailabilityMacros.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/stdbool.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/stdbool.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/Block.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/MacTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ConditionalMacros.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/ptrauth.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFArray.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBag.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBinaryHeap.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBitVector.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/i386/OSByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_os_inline.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFLocale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDictionary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNotificationCenter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTimeZone.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFData.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCharacterSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDateFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumber.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPreferences.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPropertyList.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURL.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/port.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/boolean.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/boolean.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/boolean.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/vm_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/vm_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_mach_port_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/dispatch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/base.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/unistd.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/unistd.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_posix_vdisable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_seek_set.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/select.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_select.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_uuid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/gethostuuid.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/fcntl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/fcntl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_o_sync.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_o_dsync.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_s_ifmt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_filesec_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/object.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/NSObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc-api.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/NSObjCRuntime.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup_base.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/clock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup_object.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup_interval.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup_parallel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/base.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/time.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/clock_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/time_value.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/object.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/qos.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/queue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/block.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/source.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/message.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/kern_return.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/kern_return.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/kern_return.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/group.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/semaphore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/once.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/data.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/io.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/workloop.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringEncodingExt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTree.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLAccess.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUUID.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUtilities.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBundle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMessagePort.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugIn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMachPort.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLEnumerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileSecurity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/acl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/kauth.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_guid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringTokenizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUserNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLNode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLParser.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSZone.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnumerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionDifference.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionChange.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAutoreleasePool.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBundle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSItemProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDictionary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProgress.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCharacterSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSData.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateInterval.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateIntervalFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMassFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLengthFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnergyFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUnit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurementFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNumberFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLocale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponents.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponentsFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRelativeDateTimeFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSListFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimalNumber.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScanner.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSException.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileHandle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRunLoop.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPathUtilities.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURL.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLHandle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHashTable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerFunctions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookie.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookieStorage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexPath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInflectionRule.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInvocation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSJSONSerialization.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueObserving.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyedArchiver.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPropertyList.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMapTable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMethodSignature.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMorphology.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotificationQueue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNull.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrthography.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerArray.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPort.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProcessInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProxy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRegularExpression.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTextCheckingResult.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSortDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSThread.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimeZone.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLAuthenticationChallenge.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCache.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredential.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/Security.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecCertificate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecIdentity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecAccessControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecKey.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecPolicy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecRandom.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecImportExport.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecTrust.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecSharedCredential.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolOptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/CipherSuite.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolMetadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredentialStorage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtectionSpace.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetwork.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkDefs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFSocketStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHost.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFFTPStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPMessage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPAuthentication.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetDiagnostics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFProxySupport.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtocol.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLResponse.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserDefaults.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValueTransformer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLParser.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXPCConnection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/xpc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/mman.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/uuid/uuid.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/base.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/availability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/endpoint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/debug.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/connection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/activity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/launch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/std_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_statistics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_notify.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_special_ports.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/memory_object_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_prot.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_sync.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/exception_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/exception.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/exception.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_status.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/thread_status.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/thread_status.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/thread_state.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/thread_state.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/fp_reg.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/eflags.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/ipc_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_voucher_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/processor_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/processor_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/processor_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/policy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task_inspect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task_policy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task_special_ports.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_policy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_special_ports.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_attributes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_inherit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_purgable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_behavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_region.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/vm_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/vm_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_page_size.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/kmod.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/dyld_kernel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fsid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fsobj_id_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_interface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/clock_priv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/ndr.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/notify.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mig_errors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mig.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mig_strncpy_zerofill_support.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_priv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/mach_debug_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/vm_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/zone_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/page_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/hash_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/lockgroup_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_security.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/lock_set.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/processor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/processor_set.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/semaphore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/sync_policy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_act.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_map.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_port.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_init.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_traps.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_host.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_switch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/rpc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/rpc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/rpc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_error.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/error.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteCountFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSComparisonPredicate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCompoundPredicate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateComponentsFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExpression.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionRequestHandling.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileCoordinator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFilePresenter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileVersion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileWrapper.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLinguisticTagger.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadataAttributes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUbiquitousKeyValueStore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUndoManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecureTransport.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserActivity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAffineTransform.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSGeometry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGeometry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGAffineTransform.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAppleScript.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArchiver.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBackgroundActivityScheduler.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendarDate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSConnection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDistantObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDistributedNotificationCenter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPortCoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPortMessage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPortNameServer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProtocolChecker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTask.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLDTD.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLNode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLNodeOptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLDTDNode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLDownload.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAppleEventDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Headers/CoreServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AE.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/CarbonCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Finder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/FixMath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Script.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/IntlResources.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/UTCUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MacErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/TextCommon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Collections.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MixedMode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Endian.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Gestalt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MacMemory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Math64.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/BackupCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/DiskSpaceRecovery.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Components.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Files.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/OSUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/DateTimeUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/DiskArbitration.framework/Headers/DADisk.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOKitLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOReturn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/device/device_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOMapTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOKitKeys.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/OSMessageNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/DiskArbitration.framework/Headers/DASession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/hfs/hfs_unistr.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Resources.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/CodeFragments.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Multiprocessing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Aliases.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MacLocales.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Debugging.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/AssertMacros.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/PLStringFuncs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/DriverSynchronization.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/DriverServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MachineExceptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/emmintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/xmmintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/mmintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/mm_malloc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/NumberFormatting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/StringCompare.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/TextUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/ToolUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/UnicodeUtilities.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/fp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/c++/v1/fenv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/fenv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/TextEncodingConverter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/UnicodeConverter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Threads.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Folders.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Timer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MultiprocessingInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/LowMem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/AVLTree.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/PEFBinaryFormat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/HFSVolumes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/hfs/hfs_format.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/AIFF.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/TextEncodingPlugin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEDataModel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AppleEvents.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEPackObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEObjects.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AERegistry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEUserTermTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEHelpers.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEMach.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/DictionaryServices.framework/Headers/DictionaryServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LaunchServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LSInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LSInfoDeprecated.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LSOpen.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LSOpenDeprecated.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/UTCoreTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/UTType.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/Metadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDLabel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDQuery.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDSchema.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDImporter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/OSServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/CSIdentity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/CSIdentityBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/CSIdentityAuthority.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/CSIdentityQuery.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SearchKit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKAnalysis.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKIndex.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKSearch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKSummary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/FSEvents.framework/Headers/FSEvents.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SharedFileList.framework/Headers/SharedFileList.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAppleEventManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSClassDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDistributedLock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSGarbageCollector.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHFSFileTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHost.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjectScripting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptClassDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptCoercionHandler.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptCommand.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptCommandDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptExecutionContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptKeyValueCoding.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptObjectSpecifiers.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptStandardSuiteCommands.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptSuiteRegistry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptWhoseTests.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSpellServer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserScriptTask.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationLegacySwiftCompatibility.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityConstants.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBitmapContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorSpace.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPattern.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFont.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGradient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFPage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDictionary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFArray.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGShading.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFunction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorConversionInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGConvertColorDataWithFormat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataConsumer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContentStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFOperatorTable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFScanner.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDirectDisplay.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGWindow.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGWindowLevel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDirectPalette.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDisplayConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDisplayFade.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDisplayStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGRemoteOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomicDeprecated.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomicQueue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOGraphicsTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOSharedLock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventSource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPSConverter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDirectDisplayMetal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGeometry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImageDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIVector.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIColor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CoreVideo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVReturn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVImageBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferIOSurface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceRef.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferPool.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/OpenGL.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/OpenGLAvailability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLCurrent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/gltypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLRenderers.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLIOSurface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLBufferPool.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLTexture.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLTextureCache.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelFormatDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTexture.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTextureCache.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPixelFormat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIO.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIOBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageSource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageMetadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageDestination.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageProperties.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageAnimation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterConstructor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIDetector.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFeature.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProcessor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageAccumulator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterShape.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CISampler.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRAWFilter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRenderDestination.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceObjC.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIBarcodeDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIPlugIn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernelMetalLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFont.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFontDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFontMetrics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSItemProvider+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsImageRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImageConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImageSymbolConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSDataAsset.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILocalNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSAttributedString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSParagraphStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSText.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTParagraphStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSShadow.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSStringDrawing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccelerometer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreVideo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreAnimation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CABase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransform3D.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAAnimation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CALayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTiming.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAConstraintLayoutManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CADisplayLink.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMetalLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEDRMetadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDrawable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAGradientLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAOpenGLLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CARemoteLayerClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CARemoteLayerServer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CARenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAReplicatorLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAScrollLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAShapeLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATextLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATiledLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransaction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransformLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAValueFunction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICommand.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenuElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenu.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKeyCommand.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfigurationSupporting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIUserActivity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocus.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusGuide.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusAnimationCoordinator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIRefreshControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContainer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomRotor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextInput.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAlert.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActionSheet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStringDrawing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDragging.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDropInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewAnimating.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDropping.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDropProposal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteConfigurationSupporting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteDelegate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategoryAdjusting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneDefinitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStateRestoration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerLockState.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScene.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteractionSupporting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityZoom.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccess.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityLocationDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContentSizeCategoryImageAdjusting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIButtonConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBackgroundConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIConfigurationColorTransformer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSToolbar+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowScene.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneOptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfigurationReading.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKitDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSMenuToolbarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSharingServicePickerToolbarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSharingService.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSearchToolbarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTouchBar+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTouchBar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSharingServicePickerTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarCommon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemGroup.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSIndexPath+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDataSourceTranslating.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewFlowLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewUpdateItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewTransitionLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCompositionalLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICellAccessory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewListCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDiffableDataSource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISwipeActionsConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContextualAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSDiffableDataSourceSectionSnapshot.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewItemRegistration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionLayoutList.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIListSeparatorConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIConfigurationState.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewConfigurationState.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICellConfigurationState.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContentConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIListContentConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIListContentImageProperties.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIListContentTextProperties.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKey.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKeyConstants.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDataDetectors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDatePicker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentMenuViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerExtensionViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICloudSharingController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSFileProviderExtension.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderExtension.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBlurEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIVibrancyEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewControllerConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsPDFRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImageAsset.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImagePickerController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPanGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITapGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIInputView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIInputViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILexicon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILargeContentViewer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIApplicationShortcutItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusSystem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusDebugger.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusMovementHint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIHoverGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILocalizedIndexedCollation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILongPressGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIManagedDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenuController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMotionEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINavigationItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINibLoading.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINibDeclarations.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPageControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPageViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPasteboard.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPinchGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverSupport.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverBackgroundView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPress.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPressesEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrinter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrinterPickerController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInteractionController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPageRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPaper.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintServiceExtension.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIProgressView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIReferenceLibraryViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIRotationGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScreenEdgePanGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScreenMode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchContainerViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPresentationController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitionCoordinator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitioning.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITimingParameters.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITimingCurveProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchDisplayController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchTextField.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISegmentedControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISlider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISplitViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStepper.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboard.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardPopoverSegue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardSegue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISwitch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITabBar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITabBarController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITabBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITableViewHeaderFooterView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextChecker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextItemInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIToolbar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIVideoEditorController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWebView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreview.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreviewParameters.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewParameters.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITargetedDragPreview.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITargetedPreview.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBarAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIToolbarAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITabBarAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIResponder+UIActivityItemsConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchSuggestion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScribbleInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIIndirectScribbleInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKeyboardLayoutGuide.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITrackingLayoutGuide.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextStorage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextContainer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISheetPresentationController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverPresentationController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicAnimator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPushBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISnapBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicItemBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFieldBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGravityBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAttachmentBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollisionBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIRegion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDragPreviewRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDragURLPreviews.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewPropertyAnimator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFeedbackGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISelectionFeedbackGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImpactFeedbackGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINotificationFeedbackGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccessRestrictions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizerSubclass.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRendererSubclass.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPencilInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneEnhancedStateRestoration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneActivationConditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIOpenURLContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStatusBarManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScreenshotService.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSUserActivity+NSItemProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UNNotificationResponse+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationResponse.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenuBuilder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDeferredMenuElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenuSystem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextFormattingCoordinator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerRegion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBandSelectionInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerAccessory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIColorWell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIColorPickerViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIEventAttribution.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIEventAttributionView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBehavioralStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowSceneActivationRequestOptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowSceneActivationConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowSceneActivationAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowSceneActivationInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIToolTipInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFoundation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextRange.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextSelection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextSelectionNavigation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextViewportLayoutController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextContentManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextLayoutFragment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextLayoutManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextLineFragment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/DocumentManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/ShareSheet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentInteractionController.h diff --git a/iphone/build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.dia b/iphone/build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.dia differ diff --git a/iphone/build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch b/iphone/build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch new file mode 100644 index 0000000..3ebccdf Binary files /dev/null and b/iphone/build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch differ diff --git a/iphone/build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.d b/iphone/build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.d new file mode 100644 index 0000000..cb1e003 --- /dev/null +++ b/iphone/build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.d @@ -0,0 +1,2306 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/Darwin-HUB66TE1ZK5G.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xcselect.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/kcdata.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/uuid.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/device.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bank.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_posix_sys_types.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_cdefs.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/cdefs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_symbol_aliasing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_posix_availability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/complex.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/copyfile.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/stdint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/stdint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_int8_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_int16_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_int32_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_int64_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uint8_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uint16_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uint32_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uint64_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_intptr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int8_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int16_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int32_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int64_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_uintptr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_intmax_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_uintmax_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_ctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/runetype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_size_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ct_rune_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_rune_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_wchar_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_wint_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/err.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/Availability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/AvailabilityVersions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/AvailabilityInternal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/errno.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/errno.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_errno_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/fenv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/float.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/float.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/inttypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/iso646.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/_limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/syslimits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/locale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_locale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_null.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/math.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/readpassphrase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/setjmp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/signal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/signal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/appleapiopts.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/signal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/signal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/_mcontext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/_mcontext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/_structs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/_structs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_sigaltstack.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ucontext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_pid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_sigset_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_uid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/stdarg.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/stdatomic.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/stddef.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/stdbool.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/stdio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_stdio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_va_list.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/stdio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_ctermid.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_off_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ssize_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/secure/_stdio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/secure/_common.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/stdlib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/wait.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_id_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/resource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_timeval.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/endian.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/endian.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_endian.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/_OSByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/i386/_OSByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/alloca.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/malloc/_malloc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_dev_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_mode_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/string.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_rsize_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/strings.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/secure/_strings.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/secure/_string.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/tgmath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/tgmath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/time.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_clock_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_time_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_timespec.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/util.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ttycom.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ioccom.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_char.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_short.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_u_int.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_caddr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_blkcnt_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_blksize_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_gid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_in_addr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_in_port_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ino_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ino64_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_key_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_nlink_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_useconds_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_suseconds_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_def.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_setsize.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_set.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_clr.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_zero.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_isset.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fd_copy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_cond_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_once_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_pthread/_pthread_key_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fsblkcnt_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fsfilcnt_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/pwd.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/uuid/uuid.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_uuid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/termios.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/termios.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_posix_vdisable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ttydefaults.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/utmp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/wchar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_mbstate_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_wctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/__wctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_wctype_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/wctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_wctrans_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_xlocale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_ctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/__wctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_inttypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_stdio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_stdlib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_string.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_time.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_wchar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_wctype.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_langinfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_types/_nl_item.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_monetary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xlocale/_regex.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/_regex.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xattr_flags.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/aio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/aio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_o_sync.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_o_dsync.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arpa/inet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/in.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/socket.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/net_kev.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_sa_family_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_socklen_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_iovec_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6/in6.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/cpio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dirent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/dirent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/dir.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dlfcn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/fcntl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/fcntl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_seek_set.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_s_ifmt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_filesec_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/fmtmsg.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/fnmatch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ftw.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/stat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/glob.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/grp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/iconv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ifaddrs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/availability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ioctl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/filio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/sockio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/langinfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libgen.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/monetary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ndbm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netdb.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/if_dl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/if.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/if_var.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/time.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_timeval64.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_select.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/queue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_timeval32.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/if_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/tcp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/nl_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/poll.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/poll.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/pthread/pthread.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/pthread/sched.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/pthread/pthread_impl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/pthread/qos.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/qos.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_mach_port_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/pthread_spis.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/pthread/spawn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/spawn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/spawn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/exception_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/exception.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/exception.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/port.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/boolean.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/boolean.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/boolean.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/vm_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/vm_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_status.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/thread_status.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/thread_status.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/thread_state.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/thread_state.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/message.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/kern_return.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/kern_return.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/kern_return.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/fp_reg.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/eflags.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/ipc_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/regex.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/search.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/semaphore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/semaphore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/posix_sem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/proc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/select.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/lock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/event.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ipc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/mman.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/msg.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/sem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/shm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/posix_shm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/statvfs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/times.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fsid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_fsobj_id_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_guid_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_offsetof.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_os_inline.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ptrdiff_t.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/_types/_ucontext64.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/uio.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/un.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/utsname.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/xattr.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/syslog.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/syslog.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/tar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ulimit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/unistd.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/unistd.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/gethostuuid.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/utime.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/utmpx.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/wordexp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/bpf.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/dlil.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/ethernet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/if_arp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/if_llc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/if_media.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/if_mib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/if_utun.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/kext_net.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/ndrv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/pfkeyv2.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net/route.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/bootp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/ip.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/in_systm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/udp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/icmp6.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/icmp_var.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/ip_icmp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/if_ether.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/igmp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/igmp_var.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/in_pcb.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/socketvar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/TargetConditionals.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/in_var.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/kern_event.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/sys_domain.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6/in6_var.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6/scope6_var.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/ip6.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/ip_var.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/tcp_fsm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/tcp_seq.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/tcp_timer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/tcp_var.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/tcpip.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet/udp_var.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/sysctl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ucred.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/vm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/AvailabilityMacros.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bank/bank_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_statistics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/time_value.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_notify.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_special_ports.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/memory_object_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_prot.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_sync.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_voucher_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/std_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/processor_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/processor_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/processor_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/policy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task_inspect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task_policy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task_special_ports.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_policy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_special_ports.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/clock_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_attributes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_inherit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_purgable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_behavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_region.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/vm_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/vm_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_page_size.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/kmod.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/dyld_kernel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ConditionalMacros.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/getopt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/AssertMacros.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/MacTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_interface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/clock_priv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/ndr.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/i386/OSByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/notify.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mig_errors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mig.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_priv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/mach_debug_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/vm_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/zone_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/page_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/hash_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/lockgroup_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_security.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/lock_set.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/processor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/processor_set.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/semaphore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/sync_policy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/task.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_act.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_map.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_port.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_init.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_traps.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_host.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_switch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/rpc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/rpc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/rpc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_error.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/error.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/audit_triggers_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/bootstrap.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/clock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/clock_reply.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/exc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/exception.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/host_reboot.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_right.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_syscalls.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_time.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_vm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mach_voucher.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/memory_entry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mig_strncpy_zerofill_support.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/mig_voucher_support.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/port_obj.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/sdt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/sdt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/sdt_isa.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/sdt_isa.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/sdt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/shared_region.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/sync.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/thread_state.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/vm_task.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/asm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/asm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/asm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm64/asm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/_structs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/boolean.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/exception.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/kern_return.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/machine/ndr_def.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/i386/ndr_def.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/processor_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/rpc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/sdt_isa.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/thread_state.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/thread_status.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/traps.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/vm_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach/arm/vm_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug/mach_debug.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/device/device_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/device/device_port.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomicDeprecated.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomicQueue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/base.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/clock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/lock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/malloc/malloc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/malloc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/_limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/_limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/_mcontext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/_param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/arch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/byte_order.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/architecture/byte_order.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/endian.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/fasttrap_isa.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/fasttrap_isa.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/fasttrap_isa.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/limits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/param.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/profile.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/profile.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/profile.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/signal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/user_ldt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine/vmparam.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/i386/vmparam.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/arm/vmparam.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/Block.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_domain.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_errno.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_fcntl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_filter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/libbsm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/inttypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_record.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_internal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_kevents.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_session.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_socket_type.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bsm/audit_uevents.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/hfs/hfs_format.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/hfs/hfs_unistr.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/hfs/hfs_mount.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/mount.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/attr.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/curses.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ncurses_dll.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/unctrl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6/ah.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6/esp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6/ipcomp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6/ipsec.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6/raw_ip6.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/acct.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/acl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/kauth.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/buf.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/kernel_types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/clonefile.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/commpage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/conf.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/disk.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/dkstat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/domain.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ev.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/file.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/filedesc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/gmon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ioctl_compat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ttychars.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ttydev.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/kdebug.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/kdebug_signpost.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/lctx.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/kern_control.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/mbuf.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/msgbuf.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/netport.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/paths.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/pipe.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/proc_info.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/quota.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/rbtree.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/reboot.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/resourcevar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/sbuf.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/signalvar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/syscall.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/timeb.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/trace.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/tty.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/ucontext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/unpcb.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/user.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/utfconv.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/vcmd.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sys/vnode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/paths.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/sysexits.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/ptrauth-2VKHMASVBPQKZ.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/ptrauth.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/MachO-TZ4CHES3I8A3.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/dyld.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/dyld.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/loader.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/compact_unwind_encoding.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/arch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/fat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/getsect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/ldsyms.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/nlist.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/ranlib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/reloc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/stab.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/swap.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/ObjectiveC-11FESPOBLW01.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/NSObjCRuntime.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc-api.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/NSObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/Object.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc-runtime.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/runtime.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/message.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/Protocol.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/hashtable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/hashtable2.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc-auto.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc-class.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc-exception.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc-load.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/objc/objc-sync.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/os_object-HUB66TE1ZK5G.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/object.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/CommonCrypto/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libxml/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libxslt/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/unicode/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libexslt/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/simd/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/EndpointSecurity/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/networkext/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/tidy/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/ffi/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/AppleArchive/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/cups/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/os_workgroup-HUB66TE1ZK5G.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup_base.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup_object.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup_interval.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/os/workgroup_parallel.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/Dispatch-3GFWUX8XIVRBY.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/dispatch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/base.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/time.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/object.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/queue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/block.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/source.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/group.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/semaphore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/once.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/data.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/io.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/dispatch/workloop.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/CoreFoundation-1IDL4661K1PD.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/assert.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAvailability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFArray.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBag.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBinaryHeap.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBitVector.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFLocale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDictionary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNotificationCenter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTimeZone.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFData.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCharacterSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDateFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumber.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPreferences.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPropertyList.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURL.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringEncodingExt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTree.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLAccess.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUUID.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUtilities.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBundle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMessagePort.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugIn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMachPort.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLEnumerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileSecurity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringTokenizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUserNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLNode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLParser.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugInCOM.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/launch-HUB66TE1ZK5G.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/launch.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/XPC-9RI595ZZIX4G.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/xpc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/base.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/availability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/endpoint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/debug.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/connection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xpc/activity.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/Security-N54N1RN2VD1M.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/Security.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecCertificate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecIdentity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecAccessControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecKey.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecPolicy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecRandom.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecImportExport.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecTrust.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecSharedCredential.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolOptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/CipherSuite.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolMetadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/AuthorizationPlugin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/Authorization.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/AuthSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/CodeSigning.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecStaticCode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/CSCommon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecCode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecRequirement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/eisl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/cssmconfig.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecAsn1Coder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecAsn1Types.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecAsn1Templates.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecureDownload.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecureTransport.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/CFNetwork-5FJZUYI7N7KS.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetwork.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkDefs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFSocketStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHost.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFFTPStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPMessage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPAuthentication.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetDiagnostics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFProxySupport.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/libkern-HUB66TE1ZK5G.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSCacheControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSDebug.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSReturn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSKextLib.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/IOKit-YDMQELDJRDYQ.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOReturn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOMapTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOKitKeys.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/OSMessageNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOKitLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOBSD.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IODataQueueClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IODataQueueShared.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOCFBundle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOSharedLock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOCFPlugIn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOCFSerialize.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOCFURLAccess.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOKitServer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOCFUnserialize.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOMessage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IORPC.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOUserServer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/audio/IOAudioDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/audio/IOAudioLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/audio/IOAudioTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/avc/IOFireWireAVCConsts.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/avc/IOFireWireAVCLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/firewire/IOFireWireFamilyCommon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/firewire/IOFireWireLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/firewire/IOFireWireLibIsoch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOAccelClientConnect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOGraphicsInterface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOGraphicsInterfaceTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOAccelSurfaceConnect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOAccelTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOGraphicsLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOFramebufferShared.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOGraphicsTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/graphics/IOGraphicsEngine.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDKeys.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDParameter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDProperties.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDEventServiceKeys.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDDeviceTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDDeviceKeys.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDQueue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDLibObsolete.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDUsageTables.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDValue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDTransaction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDDevicePlugIn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDEventServiceTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDShared.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/event_status_driver.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/ev_keymap.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDEventSystemClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDServiceClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDUserDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/i2c/IOI2CInterface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/kext/KextManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IOEthernetController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IONetworkController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IONetworkData.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IONetworkStack.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IOEthernetInterface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IONetworkInterface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IONetworkStats.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IOEthernetStats.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IONetworkLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IONetworkMedium.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/network/IONetworkUserClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/ps/IOPSKeys.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/ps/IOPowerSources.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/ps/IOUPSPlugIn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/pwr_mgt/IOPM.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/pwr_mgt/IOPMKeys.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/pwr_mgt/IOPMLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/pwr_mgt/IOPMLibDefs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/sbp2/IOFireWireSBP2Lib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/IOSCSIMultimediaCommandsDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOStorageDeviceCharacteristics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOStorageProtocolCharacteristics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOStorageControllerCharacteristics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/SCSICmds_REQUEST_SENSE_Defs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/SCSICmds_INQUIRY_Definitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/SCSICommandDefinitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/SCSICmds_MODE_Definitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/SCSICommandOperationCodes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/SCSICmds_READ_CAPACITY_Definitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/SCSITask.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/SCSICmds_REPORT_LUNS_Definitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/scsi/SCSITaskLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/serial/IOSerialKeys.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/serial/ioss.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOAppleLabelScheme.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IODVDMediaBSDClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IODVDTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOApplePartitionScheme.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOBDBlockStorageDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOBDTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOFDiskPartitionScheme.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOBDMedia.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOFilterScheme.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOBDMediaBSDClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOFireWireStorageCharacteristics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOGUIDPartitionScheme.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOBlockStorageDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOMedia.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOBlockStorageDriver.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOMediaBSDClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOCDBlockStorageDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOCDTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOPartitionScheme.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOCDMedia.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOStorage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOCDMediaBSDClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOStorageCardCharacteristics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IOCDPartitionScheme.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IODVDBlockStorageDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/IODVDMedia.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/ata/ATASMARTLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/storage/ata/IOATAStorageDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/stream/IOStreamLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/stream/IOStreamShared.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/usb/AppleUSBDefinitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/usb/IOUSBHostFamilyDefinitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/usb/IOUSBLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/usb/USB.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/usb/USBSpec.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/CoreGraphics-29VBLVJV3EW80.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGAffineTransform.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGeometry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBitmapContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorSpace.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPattern.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFont.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGradient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFPage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDictionary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFArray.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGShading.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFunction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorConversionInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGConvertColorDataWithFormat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataConsumer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContentStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFOperatorTable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFScanner.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDirectDisplay.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGWindow.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGWindowLevel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDirectPalette.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDisplayConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDisplayFade.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDisplayStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGRemoteOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventSource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPSConverter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDirectDisplayMetal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/DiskArbitration.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/DiskArbitration-2ENF2QY2DVG4T.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/DiskArbitration.framework/Headers/DiskArbitration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/DiskArbitration.framework/Headers/DADisk.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/DiskArbitration.framework/Headers/DASession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/DiskArbitration.framework/Headers/DADissenter.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/_Builtin_intrinsics-2VKHMASVBPQKZ.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/immintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/x86gprintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/hresetintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/uintrintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/mmintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/xmmintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/mm_malloc.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/emmintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/pmmintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/tmmintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/smmintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/popcntintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/wmmintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/__wmmintrin_aes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/__wmmintrin_pclmul.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/clflushoptintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/clwbintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avxintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx2intrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/f16cintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/vpclmulqdqintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/bmiintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/bmi2intrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/lzcntintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/fmaintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512fintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vlintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512bwintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512bitalgintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512cdintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vpopcntdqintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vpopcntdqvlintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vnniintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vlvnniintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avxvnniintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512dqintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vlbitalgintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vlbwintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vlcdintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vldqintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512erintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512ifmaintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512ifmavlintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vbmiintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vbmivlintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vbmi2intrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vlvbmi2intrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512pfintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512bf16intrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vlbf16intrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/pkuintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/vaesintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/gfniintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/rtmintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/xtestintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/shaintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/fxsrintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/xsaveintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/xsaveoptintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/xsavecintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/xsavesintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/cetintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/adxintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/rdseedintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/wbnoinvdintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/cldemoteintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/waitpkgintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/movdirintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/pconfigintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/sgxintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/ptwriteintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/invpcidintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/keylockerintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/amxintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vp2intersectintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/avx512vlvp2intersectintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/enqcmdintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/serializeintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/tsxldtrkintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/x86intrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/ia32intrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/mm3dnow.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/prfchwintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/ammintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/fma4intrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/xopintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/tbmintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/lwpintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/mwaitxintrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/clzerointrin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/cpuid.h \ + /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/nmmintrin.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/CoreServices-37QL6MRX88UHQ.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Headers/CoreServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AE.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/CarbonCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Finder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/FixMath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Script.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/IntlResources.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/UTCUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MacErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/TextCommon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Collections.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MixedMode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Endian.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Gestalt.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MacMemory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Math64.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/BackupCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/DiskSpaceRecovery.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Components.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Files.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/OSUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/DateTimeUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Resources.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/CodeFragments.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Multiprocessing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Aliases.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MacLocales.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Debugging.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/PLStringFuncs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/DriverSynchronization.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/DriverServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MachineExceptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/NumberFormatting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/StringCompare.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/TextUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/ToolUtils.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/UnicodeUtilities.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/fp.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/TextEncodingConverter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/UnicodeConverter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Threads.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Folders.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Timer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/MultiprocessingInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/LowMem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/AVLTree.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/PEFBinaryFormat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/HFSVolumes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/AIFF.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/TextEncodingPlugin.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEDataModel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AppleEvents.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEPackObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEObjects.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AERegistry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEUserTermTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEHelpers.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework/Headers/AEMach.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/DictionaryServices.framework/Headers/DictionaryServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LaunchServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LSInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LSInfoDeprecated.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LSOpen.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LSOpenDeprecated.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/UTCoreTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/UTType.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/Metadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDLabel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDQuery.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDSchema.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Headers/MDImporter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/OSServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/CSIdentity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/CSIdentityBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/CSIdentityAuthority.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/CSIdentityQuery.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SearchKit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKAnalysis.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKIndex.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKSearch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework/Headers/SKSummary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/FSEvents.framework/Headers/FSEvents.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/SharedFileList.framework/Headers/SharedFileList.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/Foundation-26LJKO9TWD70R.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSZone.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnumerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionDifference.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionChange.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAutoreleasePool.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBundle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSItemProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDictionary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProgress.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteOrder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCharacterSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSData.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateInterval.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateIntervalFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMassFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLengthFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnergyFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUnit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurementFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNumberFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLocale.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponents.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponentsFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRelativeDateTimeFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSListFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimalNumber.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScanner.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSException.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileHandle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRunLoop.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPathUtilities.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURL.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLHandle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHashTable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerFunctions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookie.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookieStorage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexPath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInflectionRule.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInvocation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSJSONSerialization.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueObserving.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyedArchiver.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPropertyList.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMapTable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMethodSignature.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMorphology.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotificationQueue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNull.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrthography.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerArray.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPort.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProcessInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProxy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRegularExpression.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTextCheckingResult.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSortDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSStream.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSThread.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimeZone.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLAuthenticationChallenge.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCache.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredential.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredentialStorage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtectionSpace.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtocol.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLResponse.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserDefaults.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValueTransformer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLParser.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXPCConnection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteCountFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSComparisonPredicate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCompoundPredicate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateComponentsFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExpression.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionRequestHandling.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileCoordinator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFilePresenter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileVersion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileWrapper.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLinguisticTagger.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadataAttributes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUbiquitousKeyValueStore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUndoManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserActivity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAffineTransform.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSGeometry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAppleScript.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArchiver.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBackgroundActivityScheduler.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendarDate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSConnection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDistantObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDistributedNotificationCenter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPortCoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPortMessage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPortNameServer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProtocolChecker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTask.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLDTD.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLNode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLNodeOptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLDTDNode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLDownload.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAppleEventDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAppleEventManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSClassDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDistributedLock.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSGarbageCollector.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHFSFileTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHost.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjectScripting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptClassDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptCoercionHandler.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptCommand.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptCommandDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptExecutionContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptKeyValueCoding.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptObjectSpecifiers.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptStandardSuiteCommands.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptSuiteRegistry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScriptWhoseTests.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSpellServer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserScriptTask.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationLegacySwiftCompatibility.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDebug.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/IOSurface-298P2J4L4DUCJ.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceAPI.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceRef.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceObjC.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/OpenGL-3IMU1JTTPVTBE.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/OpenGL.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/OpenGLAvailability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLCurrent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/gltypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLRenderers.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLIOSurface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/gl3.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/gl3ext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/gl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/glext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/glu.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/gluContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/CGLContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/gliContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers/gliDispatch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/Metal-12TFHXZAHM30N.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBlitCommandEncoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandEncoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResourceStateCommandEncoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTexture.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPixelFormat.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFence.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLLibrary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionConstantValues.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCounters.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResourceStatePass.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPass.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBlitPass.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputeCommandEncoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputePass.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandQueue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDepthStencil.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDrawable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputePipeline.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLStageInputOutputDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPipeline.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLLinkedFunctions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPipeline.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderCommandEncoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionHandle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLVisibleFunctionTable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLVertexDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLParallelRenderCommandEncoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLSampler.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLHeap.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgumentEncoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureScope.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandEncoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionLog.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLAccelerationStructureCommandEncoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLAccelerationStructure.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLAccelerationStructureTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRasterizationRate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDynamicLibrary.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBinaryArchive.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIntersectionFunctionTable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionStitching.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/CoreVideo-1UYXAKB0UN3LT.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CoreVideo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVReturn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVImageBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferIOSurface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferPool.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLBuffer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLBufferPool.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLTexture.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLTextureCache.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelFormatDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTexture.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTextureCache.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVHostTime.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/ImageIO-2DLIEL013SSNG.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIO.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIOBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageSource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageMetadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageDestination.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageProperties.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageAnimation.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/CoreImage-288IVEB6DDVM0.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImageDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIVector.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIColor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterConstructor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIDetector.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFeature.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProcessor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageAccumulator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterShape.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CISampler.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRAWFilter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRenderDestination.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIBarcodeDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIPlugIn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernelMetalLib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterBuiltins.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/CoreText-14E9KS9SDY7E9.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFont.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontTraits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontCollection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManagerErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFrame.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFramesetter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTypesetter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTLine.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTGlyphInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTParagraphStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRubyAnnotation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRun.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRunDelegate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTStringAttributes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTextTab.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTLayoutTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/QuartzCore-1IHMB1XP2KSTU.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreVideo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreAnimation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CABase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransform3D.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAAnimation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CALayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTiming.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAConstraintLayoutManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CADisplayLink.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMetalLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEDRMetadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAGradientLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAOpenGLLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CARemoteLayerClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CARemoteLayerServer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CARenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAReplicatorLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAScrollLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAShapeLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATextLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATiledLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransaction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransformLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAValueFunction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ColorSync.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/ColorSync-1RL4YDDEEIB4.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ColorSync.framework/Headers/ColorSync.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ColorSync.framework/Headers/ColorSyncBase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ColorSync.framework/Headers/ColorSyncProfile.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ColorSync.framework/Headers/ColorSyncTransform.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ColorSync.framework/Headers/ColorSyncCMM.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ColorSync.framework/Headers/ColorSyncDevice.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/ApplicationServices-1PJEA3VQBKS2E.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Headers/ATS.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Headers/ATSDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Headers/ATSLayoutTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Headers/SFNTLayoutTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Headers/ATSTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Headers/ATSFont.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Headers/SFNTTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/HIServices.framework/Headers/HIServices.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Headers/PrintCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Headers/PMDefinitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Headers/PMCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Headers/PMPrintAETypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Headers/PMPrintSettingsKeys.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Headers/PMErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/QD.framework/Headers/QD.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/QD.framework/Headers/Quickdraw.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/QD.framework/Headers/ColorSyncDeprecated.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/QD.framework/Headers/Fonts.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/QD.framework/Headers/ATSUnicode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATSUI.framework/Headers/ATSUnicode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATSUI.framework/Headers/ATSUnicodeTypes.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATSUI.framework/Headers/ATSUnicodeGlyphs.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATSUI.framework/Headers/ATSUnicodeFlattening.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATSUI.framework/Headers/ATSUnicodeDirectAccess.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/SpeechSynthesis.framework/Headers/SpeechSynthesis.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Modules/module.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/CoreLocation-7OXSPJ1SC3J3.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CoreLocation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLAvailability.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLErrorDomain.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLRegion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLLocation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLCircularRegion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLBeaconRegion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLBeaconIdentityConstraint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLHeading.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLLocationManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLLocationManagerDelegate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLVisit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLLocationManager+CLVisitExtensions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLPlacemark.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLGeocoder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLLocationPushServiceExtension.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLLocationPushServiceError.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/CloudKit-SKO3ZFVD521L.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CloudKit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKAsset.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKContainer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKDatabase.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKSubscription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKRecord.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKReference.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKLocationSortDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKQuery.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKRecordZone.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKRecordID.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKRecordZoneID.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKServerChangeToken.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKDatabaseOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKShare.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKShareParticipant.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKShareMetadata.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKUserIdentity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKUserIdentityLookupInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKAcceptSharesOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKDiscoverAllUserIdentitiesOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKDiscoverUserIdentitiesOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchDatabaseChangesOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchNotificationChangesOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchRecordChangesOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchRecordsOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchRecordZoneChangesOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchRecordZonesOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchShareMetadataOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchShareParticipantsOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchSubscriptionsOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKFetchWebAuthTokenOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKMarkNotificationsReadOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKModifyBadgeOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKModifyRecordsOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKModifyRecordZonesOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKModifySubscriptionsOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKOperationGroup.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CloudKit.framework/Headers/CKQueryOperation.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/CoreData-3V2ED99TEVZON.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreDataDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreDataErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSAttributeDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPropertyDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSDerivedAttributeDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSEntityDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchedPropertyDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSExpressionDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSRelationshipDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchIndexDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchIndexElementDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStoreRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObject.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObjectID.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequestExpression.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObjectModel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObjectContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStoreCoordinator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSAtomicStore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSAtomicStoreCacheNode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSEntityMigrationPolicy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSMappingModel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSEntityMapping.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPropertyMapping.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSMigrationManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSIncrementalStore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSIncrementalStoreNode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStoreResult.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSSaveChangesRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSBatchUpdateRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSBatchDeleteRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSBatchInsertRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSMergePolicy.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchedResultsController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSQueryGenerationToken.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentStoreDescription.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentContainer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentHistoryChange.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentHistoryChangeRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentHistoryToken.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentHistoryTransaction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentCloudKitContainer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentCloudKitContainerOptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentCloudKitContainerEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSPersistentCloudKitContainerEventRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSCoreDataCoreSpotlightDelegate.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/AppKit-1CGX9MIHA1TT4.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKitDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKitErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGraphicsContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGraphics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAccessibility.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSErrors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAccessibilityConstants.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAccessibilityProtocols.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAccessibilityCustomAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAccessibilityElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAccessibilityCustomRotor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWorkspace.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSActionCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSText.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAnimation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDragging.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSResponder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTouch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSUserInterfaceItemIdentification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSUserInterfaceLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSpellProtocol.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSParagraphStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAlert.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSUserInterfaceValidation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSRunningApplication.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSUserActivity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSNib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSNibDeclarations.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSMenu.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSMenuItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPrintInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPrinter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSKeyValueBinding.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSHelpManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAnimationContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAppleScriptExtensions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSBox.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSButton.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSButtonCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSUserInterfaceCompression.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCandidateListTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTouchBar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSClipView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCollectionView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopover.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStoryboard.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStoryboardSegue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCollectionViewLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCollectionViewCompositionalLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCollectionViewFlowLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCollectionViewGridLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCollectionViewTransitionLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColorSampler.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDiffableDataSource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDockTile.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFont.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFontDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFontAssetRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFontCollection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFontManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFontPanel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPanel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWindow.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSForm.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSMatrix.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFormCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColorList.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColorSpace.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSBitmapImageRep.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImageRep.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSBrowser.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSBrowserCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCachedImageRep.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCIImageRep.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColorPanel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColorPicking.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColorPicker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColorPickerTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColorWell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCursor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCustomImageRep.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCustomTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDocumentController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDraggingItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDraggingSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFilePromiseProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFilePromiseReceiver.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSEPSImageRep.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSFileWrapperExtensions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGradient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGroupTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSClickGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPanGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPressGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSMagnificationGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSRotationGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSLayoutConstraint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSLayoutAnchor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSLayoutGuide.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImageCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImageView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSNibLoading.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSScrubber.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSScrubberItemView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSScrubberLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSharingServicePickerTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSharingService.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSliderAccessory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSliderTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSpeechRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSpeechSynthesizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSpellChecker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSplitView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSplitViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSplitViewItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSOpenPanel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSavePanel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPageLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboardItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopoverTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopUpButton.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSMenuItemCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPrintOperation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPrintPanel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPDFInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPDFPanel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSMediaLibraryBrowserController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSScreen.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSScrollView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSScroller.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextFinder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSegmentedControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSegmentedCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSlider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSliderCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStackView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSwitch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGridView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextCheckingClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextInputClient.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextCheckingController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextField.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextFieldCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextContent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTokenField.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextContainer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSLayoutManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextStorage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAttributedString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGlyphGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTokenFieldCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTrackingArea.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTrackingSeparatorToolbarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWindowTab.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWindowTabGroup.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWindowController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSComboBox.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSComboBoxCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableCellView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSInputManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextAttachment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextAttachmentCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableColumn.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableHeaderCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableHeaderView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableRowView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableViewDiffableDataSource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableViewRowAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSOutlineView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSInputServer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStringDrawing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSRulerMarker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSRulerView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSecureTextField.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSInterfaceStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSProgressIndicator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTabView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTabViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTabViewItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPopUpButtonCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAffineTransform.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSBezierPath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPICTImageRep.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStatusBar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStatusBarButton.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStatusItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSound.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSMovie.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPDFImageRep.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDrawer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSOpenGL.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSOpenGLLayer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSOpenGLView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplicationScripting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDocumentScripting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextStorageScripting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSToolbarItemGroup.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSMenuToolbarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSharingServicePickerToolbarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWindowScripting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStepper.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStepperCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGlyphInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSShadow.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSATSTypesetter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTypesetter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSearchField.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSearchFieldCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSObjectController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSArrayController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDictionaryController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTreeNode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTreeController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSUserDefaultsController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextList.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextTable.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDatePickerCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDatePicker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSLevelIndicatorCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSLevelIndicator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPersistentDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSRuleEditor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPredicateEditor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPredicateEditorRowTemplate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPathCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPathControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPathComponentCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPathControlItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPageController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextInputContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSUserInterfaceItemSearching.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWindowRestoration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextAlternatives.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSVisualEffectView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSItemProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTitlebarAccessoryViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSDataAsset.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAlignmentFeedbackFilter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSHapticFeedback.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPressureConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSButtonTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPickerTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStepperTouchBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTintConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSearchToolbarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextRange.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextSelection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextSelectionNavigation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextContentManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextLayoutFragment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextLayoutManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextLineFragment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextViewportLayoutController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/FileProvider-9WOYK8K2OOVL.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/FileProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDomain.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderExtension.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderEnumerating.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderActions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderService.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderThumbnailing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItemDecoration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderReplicatedExtension.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderTesting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Modules/module.modulemap \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/UserNotifications-1U9RH5TCDVS3G.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/NSString+UserNotifications.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationActionIcon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAttachment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationCategory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationContent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationRequest.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationResponse.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSettings.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSound.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationTrigger.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNUserNotificationCenter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationServiceExtension.h \ + /Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/2K2L5DP5VJW4J/UIKit-1U3ISKK4IMSII.pcm \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitDefines.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityConstants.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGeometry.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFont.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFontDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFontMetrics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphics.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSItemProvider+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImageConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImageSymbolConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSDataAsset.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILocalNotification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSAttributedString.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSParagraphStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSText.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSShadow.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSStringDrawing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccelerometer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICommand.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenuElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenu.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKeyCommand.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfigurationSupporting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIUserActivity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocus.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusGuide.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusAnimationCoordinator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIRefreshControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContainer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomRotor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextInput.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAlert.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActionSheet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStringDrawing.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDragging.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDropInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewAnimating.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDropping.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDropProposal.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteConfigurationSupporting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteDelegate.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategoryAdjusting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneDefinitions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStateRestoration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerLockState.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScene.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteractionSupporting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityZoom.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccess.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityLocationDescriptor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContentSizeCategoryImageAdjusting.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIButtonConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBackgroundConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIConfigurationColorTransformer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSToolbar+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowScene.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneOptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfigurationReading.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTouchBar+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarCommon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemGroup.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSIndexPath+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDataSourceTranslating.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewFlowLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewUpdateItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewTransitionLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCompositionalLayout.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICellAccessory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewListCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDiffableDataSource.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISwipeActionsConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContextualAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSDiffableDataSourceSectionSnapshot.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewItemRegistration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollectionLayoutList.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIListSeparatorConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIConfigurationState.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewConfigurationState.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICellConfigurationState.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIContentConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIListContentConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIListContentImageProperties.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIListContentTextProperties.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKey.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKeyConstants.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDataDetectors.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDatePicker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentMenuViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerExtensionViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICloudSharingController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSFileProviderExtension.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBlurEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIVibrancyEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewControllerConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsImageRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsPDFRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImageAsset.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImagePickerController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPanGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITapGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIInputView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIInputViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILexicon.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILargeContentViewer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIApplicationShortcutItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusSystem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusDebugger.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusMovementHint.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIHoverGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILocalizedIndexedCollation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UILongPressGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIManagedDocument.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenuController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMotionEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINavigationItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINib.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINibLoading.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINibDeclarations.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPageControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPageViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPasteboard.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPinchGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverSupport.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverBackgroundView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPress.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPressesEvent.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrinter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrinterPickerController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintError.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintFormatter.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInfo.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInteractionController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPageRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPaper.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPrintServiceExtension.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIProgressView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIReferenceLibraryViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIRotationGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScreenEdgePanGestureRecognizer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScreenMode.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchContainerViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPresentationController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitionCoordinator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitioning.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITimingParameters.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITimingCurveProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchDisplayController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchTextField.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISegmentedControl.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISlider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISplitViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStepper.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboard.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardPopoverSegue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardSegue.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISwitch.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITabBar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITabBarController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITabBarItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITableViewHeaderFooterView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextChecker.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextItemInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIToolbar.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIVideoEditorController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWebView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragItem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreview.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreviewParameters.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewParameters.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDragSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITargetedDragPreview.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITargetedPreview.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBarAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIToolbarAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITabBarAppearance.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIResponder+UIActivityItemsConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISearchSuggestion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScribbleInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIIndirectScribbleInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKeyboardLayoutGuide.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITrackingLayoutGuide.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextStorage.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextContainer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISheetPresentationController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverPresentationController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicAnimator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPushBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISnapBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicItemBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFieldBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGravityBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAttachmentBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UICollisionBehavior.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIRegion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDragPreviewRenderer.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextDragURLPreviews.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewPropertyAnimator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFeedbackGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISelectionFeedbackGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIImpactFeedbackGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINotificationFeedbackGenerator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccessRestrictions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizerSubclass.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRendererSubclass.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPencilInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneEnhancedStateRestoration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneSession.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UISceneActivationConditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIOpenURLContext.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStatusBarManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScreenshotService.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSUserActivity+NSItemProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UNNotificationResponse+UIKitAdditions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenuBuilder.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDeferredMenuElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIMenuSystem.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITextFormattingCoordinator.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerRegion.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBandSelectionInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPointerAccessory.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIColorWell.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIColorPickerViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIEventAttribution.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIEventAttributionView.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBehavioralStyle.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowSceneActivationRequestOptions.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowSceneActivationConfiguration.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowSceneActivationAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIWindowSceneActivationInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFocusEffect.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIToolTipInteraction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIFoundation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextRange.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextSelection.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextSelectionNavigation.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextViewportLayoutController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextContentManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextElement.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextLayoutFragment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextLayoutManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/NSTextLineFragment.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/DocumentManager.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserAction.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/ShareSheet.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivity.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemProvider.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIActivityViewController.h \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentInteractionController.h diff --git a/iphone/build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.dia b/iphone/build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.dia differ diff --git a/iphone/build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch b/iphone/build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch new file mode 100644 index 0000000..816a841 Binary files /dev/null and b/iphone/build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch differ diff --git a/iphone/build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.d b/iphone/build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.d new file mode 100644 index 0000000..51627e1 --- /dev/null +++ b/iphone/build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.d @@ -0,0 +1,3 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch diff --git a/iphone/build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.dia b/iphone/build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.dia differ diff --git a/iphone/build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch b/iphone/build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch new file mode 100644 index 0000000..afd32ec Binary files /dev/null and b/iphone/build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch differ diff --git a/iphone/build/Intermediates.noindex/XCBuildData/29138f45139e06efd35ba82da29ee3e0-buildRequest.json b/iphone/build/Intermediates.noindex/XCBuildData/29138f45139e06efd35ba82da29ee3e0-buildRequest.json new file mode 100644 index 0000000..311626b --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/29138f45139e06efd35ba82da29ee3e0-buildRequest.json @@ -0,0 +1,60 @@ +{ + "buildCommand" : "prepareForIndexing", + "configuredTargets" : [ + { + "guid" : "d1d02f3c366ce2d9916f628a00f841ffa09fb951c034171470b90f08d9b4d082" + } + ], + "continueBuildingAfterErrors" : true, + "enableIndexBuildArena" : false, + "hideShellScriptEnvironment" : false, + "parameters" : { + "action" : "build", + "activeArchitecture" : "arm64", + "activeRunDestination" : { + "disableOnlyActiveArch" : false, + "platform" : "iphoneos", + "sdk" : "iphoneos14.5", + "sdkVariant" : "iphoneos", + "supportedArchitectures" : [ + "arm64e", + "arm64v8", + "arm64", + "armv8" + ], + "targetArchitecture" : "arm64" + }, + "arenaInfo" : { + "buildIntermediatesPath" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex", + "buildProductsPath" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products", + "derivedDataPath" : "/Users/marcbender/Library/Developer/Xcode/DerivedData", + "indexDataStoreFolderPath" : "/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore", + "indexEnableDataStore" : true, + "indexPCHPath" : "/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/PrecompiledHeaders", + "pchPath" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders" + }, + "configurationName" : "Debug", + "overrides" : { + "synthesized" : { + "table" : { + "ASSETCATALOG_FILTER_FOR_DEVICE_MODEL" : "iPhone13,4", + "ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION" : "15.0", + "BUILD_ACTIVE_RESOURCES_ONLY" : "YES", + "ENABLE_PREVIEWS" : "NO", + "TARGET_DEVICE_IDENTIFIER" : "00008101-000815D60210001E", + "TARGET_DEVICE_MODEL" : "iPhone13,4", + "TARGET_DEVICE_OS_VERSION" : "15.0", + "TARGET_DEVICE_PLATFORM_NAME" : "iphoneos" + } + } + } + }, + "qos" : "default", + "schemeCommand" : "launch", + "shouldCollectMetrics" : false, + "showNonLoggedProgress" : true, + "useDryRun" : true, + "useImplicitDependencies" : true, + "useLegacyBuildLocations" : false, + "useParallelTargets" : true +} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/29138f45139e06efd35ba82da29ee3e0-targetGraph.txt b/iphone/build/Intermediates.noindex/XCBuildData/29138f45139e06efd35ba82da29ee3e0-targetGraph.txt new file mode 100644 index 0000000..9d9742f --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/29138f45139e06efd35ba82da29ee3e0-targetGraph.txt @@ -0,0 +1,2 @@ +Target dependency graph (1 target) +tipop in tipop \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/46de5a78300e12dae215889330c7b71f-buildRequest.json b/iphone/build/Intermediates.noindex/XCBuildData/46de5a78300e12dae215889330c7b71f-buildRequest.json new file mode 100644 index 0000000..12be909 --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/46de5a78300e12dae215889330c7b71f-buildRequest.json @@ -0,0 +1,59 @@ +{ + "buildCommand" : "prepareForIndexing", + "configuredTargets" : [ + { + "guid" : "d1d02f3c366ce2d9916f628a00f841ffa09fb951c034171470b90f08d9b4d082" + } + ], + "continueBuildingAfterErrors" : true, + "enableIndexBuildArena" : false, + "hideShellScriptEnvironment" : false, + "parameters" : { + "action" : "build", + "activeArchitecture" : "arm64", + "activeRunDestination" : { + "disableOnlyActiveArch" : false, + "platform" : "iphoneos", + "sdk" : "iphoneos14.5", + "sdkVariant" : "iphoneos", + "supportedArchitectures" : [ + "arm64e", + "arm64v8", + "arm64", + "armv8" + ], + "targetArchitecture" : "arm64" + }, + "arenaInfo" : { + "buildIntermediatesPath" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex", + "buildProductsPath" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products", + "derivedDataPath" : "/Users/marcbender/Library/Developer/Xcode/DerivedData", + "indexDataStoreFolderPath" : "/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore", + "indexEnableDataStore" : true, + "indexPCHPath" : "/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/PrecompiledHeaders", + "pchPath" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders" + }, + "configurationName" : "Debug", + "overrides" : { + "synthesized" : { + "table" : { + "ASSETCATALOG_FILTER_FOR_DEVICE_MODEL" : "iPhone13,4", + "ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION" : "15.0", + "BUILD_ACTIVE_RESOURCES_ONLY" : "YES", + "ENABLE_PREVIEWS" : "NO", + "TARGET_DEVICE_IDENTIFIER" : "00008101-000815D60210001E", + "TARGET_DEVICE_MODEL" : "iPhone13,4", + "TARGET_DEVICE_OS_VERSION" : "15.0", + "TARGET_DEVICE_PLATFORM_NAME" : "iphoneos" + } + } + } + }, + "schemeCommand" : "launch", + "shouldCollectMetrics" : false, + "showNonLoggedProgress" : true, + "useDryRun" : false, + "useImplicitDependencies" : true, + "useLegacyBuildLocations" : false, + "useParallelTargets" : true +} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/46de5a78300e12dae215889330c7b71f-targetGraph.txt b/iphone/build/Intermediates.noindex/XCBuildData/46de5a78300e12dae215889330c7b71f-targetGraph.txt new file mode 100644 index 0000000..9d9742f --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/46de5a78300e12dae215889330c7b71f-targetGraph.txt @@ -0,0 +1,2 @@ +Target dependency graph (1 target) +tipop in tipop \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/4e67dd689fcdcfc8a7671afad01afd34-buildRequest.json b/iphone/build/Intermediates.noindex/XCBuildData/4e67dd689fcdcfc8a7671afad01afd34-buildRequest.json new file mode 100644 index 0000000..7f41c81 --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/4e67dd689fcdcfc8a7671afad01afd34-buildRequest.json @@ -0,0 +1,57 @@ +{ + "_buildCommand2" : { + "command" : "build", + "skipDependencies" : false, + "style" : "buildOnly" + }, + "buildCommand" : "build", + "configuredTargets" : [ + { + "guid" : "2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082" + } + ], + "containerPath" : "/Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj", + "continueBuildingAfterErrors" : false, + "enableIndexBuildArena" : false, + "hideShellScriptEnvironment" : false, + "parameters" : { + "action" : "build", + "activeArchitecture" : "x86_64", + "activeRunDestination" : { + "disableOnlyActiveArch" : false, + "platform" : "macosx", + "sdk" : "macosx12.0", + "sdkVariant" : "iosmac", + "supportedArchitectures" : [ + "x86_64h", + "x86_64" + ], + "targetArchitecture" : "x86_64" + }, + "arenaInfo" : { + "buildIntermediatesPath" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex", + "buildProductsPath" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products", + "derivedDataPath" : "/Users/marcbender/Library/Developer/Xcode/DerivedData", + "indexDataStoreFolderPath" : "/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore", + "indexEnableDataStore" : true, + "indexPCHPath" : "/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/PrecompiledHeaders", + "pchPath" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders" + }, + "configurationName" : "Debug", + "overrides" : { + "synthesized" : { + "table" : { + "ENABLE_PREVIEWS" : "NO" + } + } + } + }, + "schemeCommand" : "launch", + "schemeCommand2" : "launch", + "shouldCollectMetrics" : false, + "showNonLoggedProgress" : true, + "useDryRun" : false, + "useImplicitDependencies" : true, + "useLegacyBuildLocations" : false, + "useParallelTargets" : true +} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/4e67dd689fcdcfc8a7671afad01afd34-desc.xcbuild b/iphone/build/Intermediates.noindex/XCBuildData/4e67dd689fcdcfc8a7671afad01afd34-desc.xcbuild new file mode 100644 index 0000000..5b68e2a Binary files /dev/null and b/iphone/build/Intermediates.noindex/XCBuildData/4e67dd689fcdcfc8a7671afad01afd34-desc.xcbuild differ diff --git a/iphone/build/Intermediates.noindex/XCBuildData/4e67dd689fcdcfc8a7671afad01afd34-manifest.xcbuild b/iphone/build/Intermediates.noindex/XCBuildData/4e67dd689fcdcfc8a7671afad01afd34-manifest.xcbuild new file mode 100644 index 0000000..6107a62 --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/4e67dd689fcdcfc8a7671afad01afd34-manifest.xcbuild @@ -0,0 +1,91 @@ +client: + name: basic + version: 0 + file-system: default + +targets: + "": [""] + +nodes: + "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex": {"is-mutated":true} + "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products": {"is-mutated":true} + "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst": {"is-mutated":true} + +commands: + "::CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex","inputs":[],"outputs":["","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex"]} + "::CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products","inputs":[],"outputs":["","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products"]} + "::CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products"],"outputs":["","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst"]} + "": {"tool":"phony","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/libGuyMcdoooooTipop.a","",""],"outputs":[""]} + "": {"tool":"stale-file-removal","expectedOutputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/libGuyMcdoooooTipop.a","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/all-product-headers.yaml"],"roots":["/tmp/GuyMcdoooooTipop.dst","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products"],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-ChangePermissions": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-CodeSign": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-CopyAside": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-RegisterProduct": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-StripSymbols": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-Validate": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--CopySwiftPackageResourcesTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--DocumentationTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--HeadermapTaskProducer": {"tool":"phony","inputs":["","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/all-product-headers.yaml"],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--InfoPlistTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--ModuleMapTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["","","","","","","","","","","","","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--ProductStructureTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--SanitizerTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--StubBinaryTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--SwiftABIBaselineGenerationTaskProducer": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--SwiftFrameworkABICheckerTaskProducer": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--TestHostTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--TestTargetTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--VersionPlistTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--begin-compiling": {"tool":"phony","inputs":["","","","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--copy-headers-completion": {"tool":"phony","inputs":[""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--end": {"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/all-product-headers.yaml"],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--entry": {"tool":"phony","inputs":["","","","","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--generated-headers": {"tool":"phony","inputs":[""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--immediate": {"tool":"phony","inputs":["","","","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--modules-ready": {"tool":"phony","inputs":[""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--package-copy-files-phase": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--phase0-copy-headers": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--phase1-compile-sources": {"tool":"phony","inputs":["","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList"],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--unsigned-product-ready": {"tool":"phony","inputs":["","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList"],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--will-sign": {"tool":"phony","inputs":[""],"outputs":[""]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.d"],"deps-style":"makefile","signature":"76821c364e5f792ec816e7255d15ec09"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.d"],"deps-style":"makefile","signature":"74a7acca422d623a3bfcc924b6ce45f2"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.d"],"deps-style":"makefile","signature":"17e69bc138952544d0576f0429df708f"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.d"],"deps-style":"makefile","signature":"f5524122e0b5d420cf622557b4f0a7e9"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.d"],"deps-style":"makefile","signature":"7a4cbd7940c1e0404f57a648edf7d2c6"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.d"],"deps-style":"makefile","signature":"da2ca52a3548b4f7c1164ce7c48fac6a"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.d"],"deps-style":"makefile","signature":"e56fa36d18deb9f0920ad833a9948288"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.d"],"deps-style":"makefile","signature":"1b18e391d2f3e2304078d62e0ac71f36"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.d"],"deps-style":"makefile","signature":"44722890aa3e10fcfad27ea0be21bd9c"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.d"],"deps-style":"makefile","signature":"0986c75e2ef89934169df98ac5ca7147"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.d"],"deps-style":"makefile","signature":"fafe7616326b4cff0c8e3775a7beb37d"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.d"],"deps-style":"makefile","signature":"9c472d47f848cab63b8ffc8ed86ec3b5"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.d"],"deps-style":"makefile","signature":"9736a7e568e601a7decf6df0c9e18ad1"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.d"],"deps-style":"makefile","signature":"0ee96fa6f77459b2a307c387da65b2b0"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.d"],"deps-style":"makefile","signature":"6e9788eeb619284a593fcaf913810e52"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.d"],"deps-style":"makefile","signature":"4299594ae592513a2c60d01977c11bf7"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.d"],"deps-style":"makefile","signature":"113e3a125dcc914d8708a5758ff4ff88"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.d"],"deps-style":"makefile","signature":"5856dc90d9532461f0d5f57ad7782f2d"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.d"],"deps-style":"makefile","signature":"b901bb137b5608dc605f08af58cefe5d"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.d"],"deps-style":"makefile","signature":"6bb67693d8875f76663ea73d30614caf"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.d"],"deps-style":"makefile","signature":"7d3192d2169aae6e493e67702438cd0c"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-DTI_VERSION=","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.d"],"deps-style":"makefile","signature":"5618a9d8cba9d71a9282022f604444bd"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:Libtool /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/libGuyMcdoooooTipop.a normal": {"tool":"shell","description":"Libtool /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/libGuyMcdoooooTipop.a normal","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/libGuyMcdoooooTipop.a",""],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool","-static","-arch_only","x86_64","-D","-syslibroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-L/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-L/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/lib","-L/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/maccatalyst","-filelist","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList","-framework","Foundation","-framework","SceneKit","-dependency_info","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop_libtool_dependency_info.dat","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/libGuyMcdoooooTipop.a"],"env":{"MACOSX_DEPLOYMENT_TARGET":"10.15"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop_libtool_dependency_info.dat"],"deps-style":"dependency-info","signature":"5ecbe432f81496dfee8a2ba81817a546"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:ProcessPCH /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"ProcessPCH /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c-header","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","-MD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.d","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.dia"],"env":{},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.d"],"deps-style":"makefile","signature":"643ceb0ca9c18c0e11022223635a44c9"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++-header","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","-MD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.d","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.dia"],"env":{},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.d"],"deps-style":"makefile","signature":"974dae6966b9bdbe06c6067593e1bd9d"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++-header","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-DTI_VERSION=","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","-MD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.d","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.dia"],"env":{},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.d"],"deps-style":"makefile","signature":"4aa6ce2a894ab42df88d3b9e87b660c0"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/all-product-headers.yaml","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/all-product-headers.yaml"]} + diff --git a/iphone/build/Intermediates.noindex/XCBuildData/4e67dd689fcdcfc8a7671afad01afd34-targetGraph.txt b/iphone/build/Intermediates.noindex/XCBuildData/4e67dd689fcdcfc8a7671afad01afd34-targetGraph.txt new file mode 100644 index 0000000..c15bcff --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/4e67dd689fcdcfc8a7671afad01afd34-targetGraph.txt @@ -0,0 +1,2 @@ +Target dependency graph (1 target) +tipop in tipop, no dependencies \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/BuildDescriptionCacheIndex-8170c099381690cf4927789cd79fafdc b/iphone/build/Intermediates.noindex/XCBuildData/BuildDescriptionCacheIndex-8170c099381690cf4927789cd79fafdc new file mode 100644 index 0000000..b6fd4a4 Binary files /dev/null and b/iphone/build/Intermediates.noindex/XCBuildData/BuildDescriptionCacheIndex-8170c099381690cf4927789cd79fafdc differ diff --git a/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/project/PROJECT@v11_mod=1625697734.0_hash=d1d02f3c366ce2d9916f628a00f841ff-json b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/project/PROJECT@v11_mod=1625697734.0_hash=d1d02f3c366ce2d9916f628a00f841ff-json new file mode 100644 index 0000000..4375a1c --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/project/PROJECT@v11_mod=1625697734.0_hash=d1d02f3c366ce2d9916f628a00f841ff-json @@ -0,0 +1 @@ +{"appPreferencesBuildSettings":{},"buildConfigurations":[{"baseConfigurationFileReference":"d1d02f3c366ce2d9916f628a00f841ff1ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED":"YES","CLANG_CXX_LIBRARY":"compiler-default","CLANG_ENABLE_MODULES":"YES","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"iPhone Developer","DSTROOT":"/tmp/GuyMcdoooooTipop.dst","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","FRAMEWORK_SEARCH_PATHS[arch=*]":"/Users/logicdesign/Library/Developer/Xcode/DerivedData/tipop-cvetucwqxuhcoddipwtykqjcrwep/Build/Products/Debug-iphoneos/pop.framework","GCC_C_LANGUAGE_STANDARD":"c99","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PRECOMPILE_PREFIX_HEADER":"YES","GCC_PREFIX_HEADER":"GuyMcdoooooTipop_Prefix.pch","GCC_PREPROCESSOR_DEFINITIONS":"TI_VERSION=$(TI_VERSION)","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"NO","GCC_WARN_MISSING_PARENTHESES":"NO","GCC_WARN_SHADOW":"NO","GCC_WARN_STRICT_SELECTOR_MATCH":"NO","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_PARAMETER":"NO","GCC_WARN_UNUSED_VALUE":"NO","GCC_WARN_UNUSED_VARIABLE":"NO","INSTALL_PATH":"/usr/local/lib","IPHONEOS_DEPLOYMENT_TARGET":"11.0","ONLY_ACTIVE_ARCH":"YES","OTHER_CFLAGS":"-DDEBUG -DTI_POST_1_2","OTHER_LDFLAGS":"-ObjC","PRODUCT_NAME":"GuyMcdoooooTipop","PROVISIONING_PROFILE":"","PROVISIONING_PROFILE[sdk=iphoneos*]":"","RUN_CLANG_STATIC_ANALYZER":"NO","SDKROOT":"iphoneos","USER_HEADER_SEARCH_PATHS":""},"guid":"d1d02f3c366ce2d9916f628a00f841ff9b81f74252e7abd9be0737b64348d4fc","name":"Debug"},{"baseConfigurationFileReference":"d1d02f3c366ce2d9916f628a00f841ff1ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"ALWAYS_SEARCH_USER_PATHS":"NO","CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED":"YES","CLANG_CXX_LIBRARY":"compiler-default","CLANG_ENABLE_MODULES":"YES","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","DSTROOT":"/tmp/GuyMcdoooooTipop.dst","ENABLE_STRICT_OBJC_MSGSEND":"YES","FRAMEWORK_SEARCH_PATHS[arch=*]":"/Users/logicdesign/Library/Developer/Xcode/DerivedData/tipop-cvetucwqxuhcoddipwtykqjcrwep/Build/Products/Debug-iphoneos/pop.framework","GCC_C_LANGUAGE_STANDARD":"c99","GCC_MODEL_TUNING":"G5","GCC_NO_COMMON_BLOCKS":"YES","GCC_PRECOMPILE_PREFIX_HEADER":"YES","GCC_PREFIX_HEADER":"GuyMcdoooooTipop_Prefix.pch","GCC_PREPROCESSOR_DEFINITIONS":"TI_VERSION=$(TI_VERSION)","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"NO","GCC_WARN_MISSING_PARENTHESES":"NO","GCC_WARN_SHADOW":"NO","GCC_WARN_STRICT_SELECTOR_MATCH":"NO","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_PARAMETER":"NO","GCC_WARN_UNUSED_VALUE":"NO","GCC_WARN_UNUSED_VARIABLE":"NO","INSTALL_PATH":"/usr/local/lib","IPHONEOS_DEPLOYMENT_TARGET":"11.0","OTHER_CFLAGS":"-DTI_POST_1_2","OTHER_LDFLAGS":"-ObjC","PRODUCT_NAME":"GuyMcdoooooTipop","RUN_CLANG_STATIC_ANALYZER":"NO","SDKROOT":"iphoneos","USER_HEADER_SEARCH_PATHS":""},"guid":"d1d02f3c366ce2d9916f628a00f841ff88a1d6c2cbaed3b0491d934bbe3aa9b7","name":"Release"}],"classPrefix":"","defaultConfigurationName":"Release","developmentRegion":"en","groupTree":{"children":[{"children":[{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841fff9d8a543bfd9637634355540398ec668","path":"Classes/GuyMcdoooooTipopModule.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"d1d02f3c366ce2d9916f628a00f841ff9a5f6703969a438fdc8077bfd70cab33","path":"Classes/GuyMcdoooooTipopModule.m","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff6ce41782d0c55573a951df6133791578","path":"Classes/FBPOPAnimator.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"d1d02f3c366ce2d9916f628a00f841ff2e746add1b9afee556bcdd4ff4bdf74d","path":"Classes/FBPOPAnimator.m","sourceTree":"","type":"file"}],"guid":"d1d02f3c366ce2d9916f628a00f841ffb748d7204cf9352f6693bcd286455709","name":"Classes","path":"","sourceTree":"","type":"group"},{"children":[{"children":[{"children":[{"fileType":"text.plist.strings","guid":"d1d02f3c366ce2d9916f628a00f841ffa10578cfe5955fa6edc64e36bea332f9","path":"en.lproj/InfoPlist.strings","regionVariantName":"en","sourceTree":"","type":"file"}],"guid":"d1d02f3c366ce2d9916f628a00f841ff84eacf1e3bcc80a6be2e7eef352bb833","name":"InfoPlist.strings","path":"","sourceTree":"","type":"variantGroup"},{"fileTextEncoding":"utf-8","fileType":"text.plist.xml","guid":"d1d02f3c366ce2d9916f628a00f841ff00fa33800b74bb6cde2ab1f20b63e3a9","path":"pop-Info.plist","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ffc5cd440e66c5ba5b551e2ea12c3ff034","path":"POP.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff6f5bc0a826474816e4e3e2db881fb807","path":"POPAction.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff2d6d7c330d27717ae7da1a00a4e4a394","path":"POPAnimatableProperty.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ffa437a5c1876546e4c2a97017e0a8d699","path":"POPAnimatableProperty.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff5ebd6e9b4b04d97350eebbe8d4fc8330","path":"POPAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ff4dce39f349fcef423b223088c8116766","path":"POPAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ffea1db49d0bdbfda0f0e98119d6d998b5","path":"POPAnimationEvent.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ffb8197eae91db67e4f81670931e8ba271","path":"POPAnimationEvent.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff136ac9054312b32582489ab9cd500a46","path":"POPAnimationEventInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff2a7f9b1decc44cac8ffa1feb9d4ad82f","path":"POPAnimationExtras.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ff2db44f1e1110bd8d7179aece991f46f5","path":"POPAnimationExtras.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ffa7c72589194c16802a82644d98115dcd","path":"POPAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff520ff038c6bd84fc87f0ea86e85b0d7c","path":"POPAnimationPrivate.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ffa9c0334876dbec31dce9c5ece27d60ff","path":"POPAnimationRuntime.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ff68348bfcc41a9adeec183138d7ba1021","path":"POPAnimationRuntime.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff0eb88a4cff41a652298a1bdf640ba70a","path":"POPAnimationTracer.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ffacc437135f2a65e2f0b4bf8090fe3562","path":"POPAnimationTracer.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff8310d5d3c4fd50e4d6f800a8db44d850","path":"POPAnimationTracerInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff4027ebd78ca0daa1361f3fc13a5747b5","path":"POPAnimator.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ffca3936be73ea75285f61bfb6504fb399","path":"POPAnimator.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff195a5f202853b8dc2e2fb8559eb15e15","path":"POPAnimatorPrivate.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff374344d2537d80b040f7476758bd0576","path":"POPBasicAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ff2e43c6e69934c450019618d2ff5ccaaa","path":"POPBasicAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff1f9a027de3985f1f170f00cb42faefac","path":"POPBasicAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff8eff51c89b978fad6d1c0a30c6c53d58","path":"POPCGUtils.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841fff947849271008e56914118ad0b23b7a1","path":"POPCGUtils.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ffb78ca7d61c59e169eea5bd6b3d46950e","path":"POPCustomAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841fff0b1a30d7c8a834ce54af0c8a259967d","path":"POPCustomAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff94eaba89e978ef7502723be10bc4b56e","path":"POPDecayAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ff2de9a1c3c89fb9ee6056f28911131c9f","path":"POPDecayAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ffbedfedfe9199ebf2ae5f22ca93ad4fb6","path":"POPDecayAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff4a673e5e989bd68063506581d0c3f82b","path":"POPDefines.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff6394e27bde1fd4f96ce86201e3f113fe","path":"POPGeometry.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ffac6d2bd335c0c3b2e76c01da6f338a77","path":"POPGeometry.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff992f6951c5ba1eb7ef2fc78577d8df87","path":"POPLayerExtras.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ff707051f6c8df34108e6c9b67c38e3e8f","path":"POPLayerExtras.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff1af1c6cdb0da165487f68e0cf50436fd","path":"POPMath.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ff02f26f062aadd0434ac0d5ed9cf436a4","path":"POPMath.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff6eb330cd7367c88c9c45cd9e100ac8f2","path":"POPPropertyAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ff953953e697feb363fe0393d3d53ebef4","path":"POPPropertyAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff6e68a455bc5477b10924198db537a7c1","path":"POPPropertyAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff2a1eda3d285193f25fc35ebaf28d2188","path":"POPSpringAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ffb9f083e8cee2e7a9cf2d954a9aa9a7e7","path":"POPSpringAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ffb9958b8fb761ff5ab5d7d53fdfde237d","path":"POPSpringAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff9f48c6b6738e75afba9f02f13782ad53","path":"POPSpringSolver.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff79bac3f89460b76ce1e2182e1a9441cd","path":"POPVector.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ff08971d8ad2719c4e2a6ecad2e10315c0","path":"POPVector.mm","sourceTree":"","type":"file"},{"children":[{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff6db70696d85c1b739973c59d77ed4ce1","path":"FloatConversion.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.cpp","guid":"d1d02f3c366ce2d9916f628a00f841ff490f8d5b3aedf0c5a655d70000b05cd8","path":"TransformationMatrix.cpp","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff0477cf0eefe6dc0273a15133daf27952","path":"TransformationMatrix.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff128a04207983005889f50ae5ed409bcc","path":"UnitBezier.h","sourceTree":"","type":"file"}],"guid":"d1d02f3c366ce2d9916f628a00f841ffa477123f5733bb559744cca01cce5bbd","name":"WebCore","path":"WebCore","sourceTree":"","type":"group"}],"guid":"d1d02f3c366ce2d9916f628a00f841ffb5421fff39afc8b6a7813c4eeaa6a572","name":"pop","path":"Classes/pop","sourceTree":"","type":"group"},{"children":[{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ffdf89afd2351f08331708ce72d67a9f13","path":"Classes/CAMediaTimingFunction+ExtendedFunc.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"d1d02f3c366ce2d9916f628a00f841ff85de645dc90624f9c0d0917bcd5a2afd","path":"Classes/CAMediaTimingFunction+ExtendedFunc.m","sourceTree":"","type":"file"}],"guid":"d1d02f3c366ce2d9916f628a00f841ff70c6f9072ecbaadcc0fd04ecd1feda31","name":"CAMediaTimingFunction+ExtendedFunc","path":"","sourceTree":"","type":"group"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff8b1a1cfd30650ef9ca46d3b2ba748132","path":"GuyMcdoooooTipop_Prefix.pch","sourceTree":"SOURCE_ROOT","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ffca8baead07dfcbbd1d389cebc5a949b4","path":"Classes/GuyMcdoooooTipopModuleAssets.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"d1d02f3c366ce2d9916f628a00f841ff3053bab69af10591ea831e1e6e159868","path":"Classes/GuyMcdoooooTipopModuleAssets.m","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"text.xcconfig","guid":"d1d02f3c366ce2d9916f628a00f841ff1ab9ad58b4eeed64a1fca40bbfdec1f1","path":"titanium.xcconfig","sourceTree":"","type":"file"}],"guid":"d1d02f3c366ce2d9916f628a00f841ff56e17473ed6ca51563a84bae8d1d010c","name":"Other Sources","path":"","sourceTree":"","type":"group"},{"children":[{"fileType":"wrapper.xcframework","guid":"d1d02f3c366ce2d9916f628a00f841ffa52f51432572caf0199eb1da1389d918","path":"../../../../../Library/Application Support/Titanium/mobilesdk/osx/10.0.0/iphone/Frameworks/TitaniumKit.xcframework","sourceTree":"","type":"file"},{"fileType":"wrapper.framework","guid":"d1d02f3c366ce2d9916f628a00f841ff9261c44e8adf51c81b9bf505497c0b33","path":"System/Library/Frameworks/Foundation.framework","sourceTree":"SDKROOT","type":"file"},{"fileType":"wrapper.framework","guid":"d1d02f3c366ce2d9916f628a00f841ff931d6996d0a4fb6be6a97f040381db06","path":"System/Library/Frameworks/SceneKit.framework","sourceTree":"SDKROOT","type":"file"}],"guid":"d1d02f3c366ce2d9916f628a00f841ff5980b504713f9c12fa2d45628f2e2ebc","name":"Frameworks","path":"","sourceTree":"","type":"group"},{"guid":"d1d02f3c366ce2d9916f628a00f841ffc92b5c8146d259580683b2251576f075","name":"Products","path":"","sourceTree":"","type":"group"}],"guid":"d1d02f3c366ce2d9916f628a00f841ffca4e1a48decbe404ed2be3b332bfe67e","name":"tipop","path":"","sourceTree":"","type":"group"},"guid":"d1d02f3c366ce2d9916f628a00f841ff","path":"/Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj","projectDirectory":"/Users/marcbender/Downloads/tipop-master-2/iphone","targets":["TARGET@v11_hash=354a02b1c0dd65ac7dab82df2d1e63f8","TARGET@v11_hash=c4608d83621ff22e68d1a0c9e8feb2db"]} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/project/PROJECT@v11_mod=1631551692.830932_hash=2a4102536f17908285d1029bcab67367-json b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/project/PROJECT@v11_mod=1631551692.830932_hash=2a4102536f17908285d1029bcab67367-json new file mode 100644 index 0000000..6027981 --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/project/PROJECT@v11_mod=1631551692.830932_hash=2a4102536f17908285d1029bcab67367-json @@ -0,0 +1 @@ +{"appPreferencesBuildSettings":{},"buildConfigurations":[{"baseConfigurationFileReference":"2a4102536f17908285d1029bcab673671ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED":"YES","CLANG_CXX_LIBRARY":"compiler-default","CLANG_ENABLE_MODULES":"YES","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"iPhone Developer","DSTROOT":"/tmp/GuyMcdoooooTipop.dst","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","FRAMEWORK_SEARCH_PATHS[arch=*]":"/Users/logicdesign/Library/Developer/Xcode/DerivedData/tipop-cvetucwqxuhcoddipwtykqjcrwep/Build/Products/Debug-iphoneos/pop.framework","GCC_C_LANGUAGE_STANDARD":"c99","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PRECOMPILE_PREFIX_HEADER":"YES","GCC_PREFIX_HEADER":"GuyMcdoooooTipop_Prefix.pch","GCC_PREPROCESSOR_DEFINITIONS":"TI_VERSION=$(TI_VERSION)","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"NO","GCC_WARN_MISSING_PARENTHESES":"NO","GCC_WARN_SHADOW":"NO","GCC_WARN_STRICT_SELECTOR_MATCH":"NO","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_PARAMETER":"NO","GCC_WARN_UNUSED_VALUE":"NO","GCC_WARN_UNUSED_VARIABLE":"NO","INSTALL_PATH":"/usr/local/lib","IPHONEOS_DEPLOYMENT_TARGET":"12.1","ONLY_ACTIVE_ARCH":"YES","OTHER_CFLAGS":"-DDEBUG -DTI_POST_1_2","OTHER_LDFLAGS":"-ObjC","PRODUCT_NAME":"GuyMcdoooooTipop","PROVISIONING_PROFILE":"","PROVISIONING_PROFILE[sdk=iphoneos*]":"","RUN_CLANG_STATIC_ANALYZER":"NO","SDKROOT":"iphoneos","USER_HEADER_SEARCH_PATHS":""},"guid":"2a4102536f17908285d1029bcab673679b81f74252e7abd9be0737b64348d4fc","name":"Debug"},{"baseConfigurationFileReference":"2a4102536f17908285d1029bcab673671ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"ALWAYS_SEARCH_USER_PATHS":"NO","CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED":"YES","CLANG_CXX_LIBRARY":"compiler-default","CLANG_ENABLE_MODULES":"YES","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","DSTROOT":"/tmp/GuyMcdoooooTipop.dst","ENABLE_STRICT_OBJC_MSGSEND":"YES","FRAMEWORK_SEARCH_PATHS[arch=*]":"/Users/logicdesign/Library/Developer/Xcode/DerivedData/tipop-cvetucwqxuhcoddipwtykqjcrwep/Build/Products/Debug-iphoneos/pop.framework","GCC_C_LANGUAGE_STANDARD":"c99","GCC_MODEL_TUNING":"G5","GCC_NO_COMMON_BLOCKS":"YES","GCC_PRECOMPILE_PREFIX_HEADER":"YES","GCC_PREFIX_HEADER":"GuyMcdoooooTipop_Prefix.pch","GCC_PREPROCESSOR_DEFINITIONS":"TI_VERSION=$(TI_VERSION)","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"NO","GCC_WARN_MISSING_PARENTHESES":"NO","GCC_WARN_SHADOW":"NO","GCC_WARN_STRICT_SELECTOR_MATCH":"NO","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_PARAMETER":"NO","GCC_WARN_UNUSED_VALUE":"NO","GCC_WARN_UNUSED_VARIABLE":"NO","INSTALL_PATH":"/usr/local/lib","IPHONEOS_DEPLOYMENT_TARGET":"12.1","OTHER_CFLAGS":"-DTI_POST_1_2","OTHER_LDFLAGS":"-ObjC","PRODUCT_NAME":"GuyMcdoooooTipop","RUN_CLANG_STATIC_ANALYZER":"NO","SDKROOT":"iphoneos","USER_HEADER_SEARCH_PATHS":""},"guid":"2a4102536f17908285d1029bcab6736788a1d6c2cbaed3b0491d934bbe3aa9b7","name":"Release"}],"classPrefix":"","defaultConfigurationName":"Release","developmentRegion":"en","groupTree":{"children":[{"children":[{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367f9d8a543bfd9637634355540398ec668","path":"Classes/GuyMcdoooooTipopModule.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"2a4102536f17908285d1029bcab673679a5f6703969a438fdc8077bfd70cab33","path":"Classes/GuyMcdoooooTipopModule.m","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676ce41782d0c55573a951df6133791578","path":"Classes/FBPOPAnimator.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"2a4102536f17908285d1029bcab673672e746add1b9afee556bcdd4ff4bdf74d","path":"Classes/FBPOPAnimator.m","sourceTree":"","type":"file"}],"guid":"2a4102536f17908285d1029bcab67367b748d7204cf9352f6693bcd286455709","name":"Classes","path":"","sourceTree":"","type":"group"},{"children":[{"children":[{"children":[{"fileType":"text.plist.strings","guid":"2a4102536f17908285d1029bcab67367a10578cfe5955fa6edc64e36bea332f9","path":"en.lproj/InfoPlist.strings","regionVariantName":"en","sourceTree":"","type":"file"}],"guid":"2a4102536f17908285d1029bcab6736784eacf1e3bcc80a6be2e7eef352bb833","name":"InfoPlist.strings","path":"","sourceTree":"","type":"variantGroup"},{"fileTextEncoding":"utf-8","fileType":"text.plist.xml","guid":"2a4102536f17908285d1029bcab6736700fa33800b74bb6cde2ab1f20b63e3a9","path":"pop-Info.plist","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367c5cd440e66c5ba5b551e2ea12c3ff034","path":"POP.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676f5bc0a826474816e4e3e2db881fb807","path":"POPAction.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673672d6d7c330d27717ae7da1a00a4e4a394","path":"POPAnimatableProperty.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367a437a5c1876546e4c2a97017e0a8d699","path":"POPAnimatableProperty.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673675ebd6e9b4b04d97350eebbe8d4fc8330","path":"POPAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab673674dce39f349fcef423b223088c8116766","path":"POPAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367ea1db49d0bdbfda0f0e98119d6d998b5","path":"POPAnimationEvent.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367b8197eae91db67e4f81670931e8ba271","path":"POPAnimationEvent.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367136ac9054312b32582489ab9cd500a46","path":"POPAnimationEventInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673672a7f9b1decc44cac8ffa1feb9d4ad82f","path":"POPAnimationExtras.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab673672db44f1e1110bd8d7179aece991f46f5","path":"POPAnimationExtras.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367a7c72589194c16802a82644d98115dcd","path":"POPAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367520ff038c6bd84fc87f0ea86e85b0d7c","path":"POPAnimationPrivate.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367a9c0334876dbec31dce9c5ece27d60ff","path":"POPAnimationRuntime.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab6736768348bfcc41a9adeec183138d7ba1021","path":"POPAnimationRuntime.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673670eb88a4cff41a652298a1bdf640ba70a","path":"POPAnimationTracer.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367acc437135f2a65e2f0b4bf8090fe3562","path":"POPAnimationTracer.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673678310d5d3c4fd50e4d6f800a8db44d850","path":"POPAnimationTracerInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673674027ebd78ca0daa1361f3fc13a5747b5","path":"POPAnimator.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367ca3936be73ea75285f61bfb6504fb399","path":"POPAnimator.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367195a5f202853b8dc2e2fb8559eb15e15","path":"POPAnimatorPrivate.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367374344d2537d80b040f7476758bd0576","path":"POPBasicAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab673672e43c6e69934c450019618d2ff5ccaaa","path":"POPBasicAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673671f9a027de3985f1f170f00cb42faefac","path":"POPBasicAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673678eff51c89b978fad6d1c0a30c6c53d58","path":"POPCGUtils.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367f947849271008e56914118ad0b23b7a1","path":"POPCGUtils.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367b78ca7d61c59e169eea5bd6b3d46950e","path":"POPCustomAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367f0b1a30d7c8a834ce54af0c8a259967d","path":"POPCustomAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab6736794eaba89e978ef7502723be10bc4b56e","path":"POPDecayAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab673672de9a1c3c89fb9ee6056f28911131c9f","path":"POPDecayAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367bedfedfe9199ebf2ae5f22ca93ad4fb6","path":"POPDecayAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673674a673e5e989bd68063506581d0c3f82b","path":"POPDefines.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676394e27bde1fd4f96ce86201e3f113fe","path":"POPGeometry.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367ac6d2bd335c0c3b2e76c01da6f338a77","path":"POPGeometry.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367992f6951c5ba1eb7ef2fc78577d8df87","path":"POPLayerExtras.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367707051f6c8df34108e6c9b67c38e3e8f","path":"POPLayerExtras.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673671af1c6cdb0da165487f68e0cf50436fd","path":"POPMath.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab6736702f26f062aadd0434ac0d5ed9cf436a4","path":"POPMath.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676eb330cd7367c88c9c45cd9e100ac8f2","path":"POPPropertyAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367953953e697feb363fe0393d3d53ebef4","path":"POPPropertyAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676e68a455bc5477b10924198db537a7c1","path":"POPPropertyAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673672a1eda3d285193f25fc35ebaf28d2188","path":"POPSpringAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367b9f083e8cee2e7a9cf2d954a9aa9a7e7","path":"POPSpringAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367b9958b8fb761ff5ab5d7d53fdfde237d","path":"POPSpringAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673679f48c6b6738e75afba9f02f13782ad53","path":"POPSpringSolver.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab6736779bac3f89460b76ce1e2182e1a9441cd","path":"POPVector.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab6736708971d8ad2719c4e2a6ecad2e10315c0","path":"POPVector.mm","sourceTree":"","type":"file"},{"children":[{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676db70696d85c1b739973c59d77ed4ce1","path":"FloatConversion.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.cpp","guid":"2a4102536f17908285d1029bcab67367490f8d5b3aedf0c5a655d70000b05cd8","path":"TransformationMatrix.cpp","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673670477cf0eefe6dc0273a15133daf27952","path":"TransformationMatrix.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367128a04207983005889f50ae5ed409bcc","path":"UnitBezier.h","sourceTree":"","type":"file"}],"guid":"2a4102536f17908285d1029bcab67367a477123f5733bb559744cca01cce5bbd","name":"WebCore","path":"WebCore","sourceTree":"","type":"group"}],"guid":"2a4102536f17908285d1029bcab67367b5421fff39afc8b6a7813c4eeaa6a572","name":"pop","path":"Classes/pop","sourceTree":"","type":"group"},{"children":[{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367df89afd2351f08331708ce72d67a9f13","path":"Classes/CAMediaTimingFunction+ExtendedFunc.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"2a4102536f17908285d1029bcab6736785de645dc90624f9c0d0917bcd5a2afd","path":"Classes/CAMediaTimingFunction+ExtendedFunc.m","sourceTree":"","type":"file"}],"guid":"2a4102536f17908285d1029bcab6736770c6f9072ecbaadcc0fd04ecd1feda31","name":"CAMediaTimingFunction+ExtendedFunc","path":"","sourceTree":"","type":"group"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673678b1a1cfd30650ef9ca46d3b2ba748132","path":"GuyMcdoooooTipop_Prefix.pch","sourceTree":"SOURCE_ROOT","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367ca8baead07dfcbbd1d389cebc5a949b4","path":"Classes/GuyMcdoooooTipopModuleAssets.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"2a4102536f17908285d1029bcab673673053bab69af10591ea831e1e6e159868","path":"Classes/GuyMcdoooooTipopModuleAssets.m","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"text.xcconfig","guid":"2a4102536f17908285d1029bcab673671ab9ad58b4eeed64a1fca40bbfdec1f1","path":"titanium.xcconfig","sourceTree":"","type":"file"}],"guid":"2a4102536f17908285d1029bcab6736756e17473ed6ca51563a84bae8d1d010c","name":"Other Sources","path":"","sourceTree":"","type":"group"},{"children":[{"fileType":"wrapper.xcframework","guid":"2a4102536f17908285d1029bcab67367a52f51432572caf0199eb1da1389d918","path":"../../../../../Library/Application Support/Titanium/mobilesdk/osx/10.0.0/iphone/Frameworks/TitaniumKit.xcframework","sourceTree":"","type":"file"},{"fileType":"wrapper.framework","guid":"2a4102536f17908285d1029bcab673679261c44e8adf51c81b9bf505497c0b33","path":"System/Library/Frameworks/Foundation.framework","sourceTree":"SDKROOT","type":"file"},{"fileType":"wrapper.framework","guid":"2a4102536f17908285d1029bcab67367931d6996d0a4fb6be6a97f040381db06","path":"System/Library/Frameworks/SceneKit.framework","sourceTree":"SDKROOT","type":"file"}],"guid":"2a4102536f17908285d1029bcab673675980b504713f9c12fa2d45628f2e2ebc","name":"Frameworks","path":"","sourceTree":"","type":"group"},{"guid":"2a4102536f17908285d1029bcab67367c92b5c8146d259580683b2251576f075","name":"Products","path":"","sourceTree":"","type":"group"}],"guid":"2a4102536f17908285d1029bcab67367ca4e1a48decbe404ed2be3b332bfe67e","name":"tipop","path":"","sourceTree":"","type":"group"},"guid":"2a4102536f17908285d1029bcab67367","path":"/Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj","projectDirectory":"/Users/marcbender/Downloads/tipop-master-2/iphone","targets":["TARGET@v11_hash=ecc319e6bd06417275c329a9403eadad","TARGET@v11_hash=0eb15ecb24c134556c87a3eb4d010918"]} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/project/PROJECT@v11_mod=1631551692.830932_hash=d1d02f3c366ce2d9916f628a00f841ff-json b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/project/PROJECT@v11_mod=1631551692.830932_hash=d1d02f3c366ce2d9916f628a00f841ff-json new file mode 100644 index 0000000..5d5f9d6 --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/project/PROJECT@v11_mod=1631551692.830932_hash=d1d02f3c366ce2d9916f628a00f841ff-json @@ -0,0 +1 @@ +{"appPreferencesBuildSettings":{},"buildConfigurations":[{"baseConfigurationFileReference":"d1d02f3c366ce2d9916f628a00f841ff1ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED":"YES","CLANG_CXX_LIBRARY":"compiler-default","CLANG_ENABLE_MODULES":"YES","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"iPhone Developer","DSTROOT":"/tmp/GuyMcdoooooTipop.dst","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","FRAMEWORK_SEARCH_PATHS[arch=*]":"/Users/logicdesign/Library/Developer/Xcode/DerivedData/tipop-cvetucwqxuhcoddipwtykqjcrwep/Build/Products/Debug-iphoneos/pop.framework","GCC_C_LANGUAGE_STANDARD":"c99","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PRECOMPILE_PREFIX_HEADER":"YES","GCC_PREFIX_HEADER":"GuyMcdoooooTipop_Prefix.pch","GCC_PREPROCESSOR_DEFINITIONS":"TI_VERSION=$(TI_VERSION)","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"NO","GCC_WARN_MISSING_PARENTHESES":"NO","GCC_WARN_SHADOW":"NO","GCC_WARN_STRICT_SELECTOR_MATCH":"NO","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_PARAMETER":"NO","GCC_WARN_UNUSED_VALUE":"NO","GCC_WARN_UNUSED_VARIABLE":"NO","INSTALL_PATH":"/usr/local/lib","IPHONEOS_DEPLOYMENT_TARGET":"12.1","ONLY_ACTIVE_ARCH":"YES","OTHER_CFLAGS":"-DDEBUG -DTI_POST_1_2","OTHER_LDFLAGS":"-ObjC","PRODUCT_NAME":"GuyMcdoooooTipop","PROVISIONING_PROFILE":"","PROVISIONING_PROFILE[sdk=iphoneos*]":"","RUN_CLANG_STATIC_ANALYZER":"NO","SDKROOT":"iphoneos","USER_HEADER_SEARCH_PATHS":""},"guid":"d1d02f3c366ce2d9916f628a00f841ff9b81f74252e7abd9be0737b64348d4fc","name":"Debug"},{"baseConfigurationFileReference":"d1d02f3c366ce2d9916f628a00f841ff1ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"ALWAYS_SEARCH_USER_PATHS":"NO","CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED":"YES","CLANG_CXX_LIBRARY":"compiler-default","CLANG_ENABLE_MODULES":"YES","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","DSTROOT":"/tmp/GuyMcdoooooTipop.dst","ENABLE_STRICT_OBJC_MSGSEND":"YES","FRAMEWORK_SEARCH_PATHS[arch=*]":"/Users/logicdesign/Library/Developer/Xcode/DerivedData/tipop-cvetucwqxuhcoddipwtykqjcrwep/Build/Products/Debug-iphoneos/pop.framework","GCC_C_LANGUAGE_STANDARD":"c99","GCC_MODEL_TUNING":"G5","GCC_NO_COMMON_BLOCKS":"YES","GCC_PRECOMPILE_PREFIX_HEADER":"YES","GCC_PREFIX_HEADER":"GuyMcdoooooTipop_Prefix.pch","GCC_PREPROCESSOR_DEFINITIONS":"TI_VERSION=$(TI_VERSION)","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"NO","GCC_WARN_MISSING_PARENTHESES":"NO","GCC_WARN_SHADOW":"NO","GCC_WARN_STRICT_SELECTOR_MATCH":"NO","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_PARAMETER":"NO","GCC_WARN_UNUSED_VALUE":"NO","GCC_WARN_UNUSED_VARIABLE":"NO","INSTALL_PATH":"/usr/local/lib","IPHONEOS_DEPLOYMENT_TARGET":"12.1","OTHER_CFLAGS":"-DTI_POST_1_2","OTHER_LDFLAGS":"-ObjC","PRODUCT_NAME":"GuyMcdoooooTipop","RUN_CLANG_STATIC_ANALYZER":"NO","SDKROOT":"iphoneos","USER_HEADER_SEARCH_PATHS":""},"guid":"d1d02f3c366ce2d9916f628a00f841ff88a1d6c2cbaed3b0491d934bbe3aa9b7","name":"Release"}],"classPrefix":"","defaultConfigurationName":"Release","developmentRegion":"en","groupTree":{"children":[{"children":[{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841fff9d8a543bfd9637634355540398ec668","path":"Classes/GuyMcdoooooTipopModule.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"d1d02f3c366ce2d9916f628a00f841ff9a5f6703969a438fdc8077bfd70cab33","path":"Classes/GuyMcdoooooTipopModule.m","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff6ce41782d0c55573a951df6133791578","path":"Classes/FBPOPAnimator.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"d1d02f3c366ce2d9916f628a00f841ff2e746add1b9afee556bcdd4ff4bdf74d","path":"Classes/FBPOPAnimator.m","sourceTree":"","type":"file"}],"guid":"d1d02f3c366ce2d9916f628a00f841ffb748d7204cf9352f6693bcd286455709","name":"Classes","path":"","sourceTree":"","type":"group"},{"children":[{"children":[{"children":[{"fileType":"text.plist.strings","guid":"d1d02f3c366ce2d9916f628a00f841ffa10578cfe5955fa6edc64e36bea332f9","path":"en.lproj/InfoPlist.strings","regionVariantName":"en","sourceTree":"","type":"file"}],"guid":"d1d02f3c366ce2d9916f628a00f841ff84eacf1e3bcc80a6be2e7eef352bb833","name":"InfoPlist.strings","path":"","sourceTree":"","type":"variantGroup"},{"fileTextEncoding":"utf-8","fileType":"text.plist.xml","guid":"d1d02f3c366ce2d9916f628a00f841ff00fa33800b74bb6cde2ab1f20b63e3a9","path":"pop-Info.plist","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ffc5cd440e66c5ba5b551e2ea12c3ff034","path":"POP.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff6f5bc0a826474816e4e3e2db881fb807","path":"POPAction.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff2d6d7c330d27717ae7da1a00a4e4a394","path":"POPAnimatableProperty.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ffa437a5c1876546e4c2a97017e0a8d699","path":"POPAnimatableProperty.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff5ebd6e9b4b04d97350eebbe8d4fc8330","path":"POPAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ff4dce39f349fcef423b223088c8116766","path":"POPAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ffea1db49d0bdbfda0f0e98119d6d998b5","path":"POPAnimationEvent.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ffb8197eae91db67e4f81670931e8ba271","path":"POPAnimationEvent.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff136ac9054312b32582489ab9cd500a46","path":"POPAnimationEventInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff2a7f9b1decc44cac8ffa1feb9d4ad82f","path":"POPAnimationExtras.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ff2db44f1e1110bd8d7179aece991f46f5","path":"POPAnimationExtras.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ffa7c72589194c16802a82644d98115dcd","path":"POPAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff520ff038c6bd84fc87f0ea86e85b0d7c","path":"POPAnimationPrivate.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ffa9c0334876dbec31dce9c5ece27d60ff","path":"POPAnimationRuntime.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ff68348bfcc41a9adeec183138d7ba1021","path":"POPAnimationRuntime.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff0eb88a4cff41a652298a1bdf640ba70a","path":"POPAnimationTracer.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ffacc437135f2a65e2f0b4bf8090fe3562","path":"POPAnimationTracer.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff8310d5d3c4fd50e4d6f800a8db44d850","path":"POPAnimationTracerInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff4027ebd78ca0daa1361f3fc13a5747b5","path":"POPAnimator.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ffca3936be73ea75285f61bfb6504fb399","path":"POPAnimator.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff195a5f202853b8dc2e2fb8559eb15e15","path":"POPAnimatorPrivate.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff374344d2537d80b040f7476758bd0576","path":"POPBasicAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ff2e43c6e69934c450019618d2ff5ccaaa","path":"POPBasicAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff1f9a027de3985f1f170f00cb42faefac","path":"POPBasicAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff8eff51c89b978fad6d1c0a30c6c53d58","path":"POPCGUtils.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841fff947849271008e56914118ad0b23b7a1","path":"POPCGUtils.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ffb78ca7d61c59e169eea5bd6b3d46950e","path":"POPCustomAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841fff0b1a30d7c8a834ce54af0c8a259967d","path":"POPCustomAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff94eaba89e978ef7502723be10bc4b56e","path":"POPDecayAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ff2de9a1c3c89fb9ee6056f28911131c9f","path":"POPDecayAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ffbedfedfe9199ebf2ae5f22ca93ad4fb6","path":"POPDecayAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff4a673e5e989bd68063506581d0c3f82b","path":"POPDefines.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff6394e27bde1fd4f96ce86201e3f113fe","path":"POPGeometry.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ffac6d2bd335c0c3b2e76c01da6f338a77","path":"POPGeometry.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff992f6951c5ba1eb7ef2fc78577d8df87","path":"POPLayerExtras.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ff707051f6c8df34108e6c9b67c38e3e8f","path":"POPLayerExtras.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff1af1c6cdb0da165487f68e0cf50436fd","path":"POPMath.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ff02f26f062aadd0434ac0d5ed9cf436a4","path":"POPMath.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff6eb330cd7367c88c9c45cd9e100ac8f2","path":"POPPropertyAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ff953953e697feb363fe0393d3d53ebef4","path":"POPPropertyAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff6e68a455bc5477b10924198db537a7c1","path":"POPPropertyAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff2a1eda3d285193f25fc35ebaf28d2188","path":"POPSpringAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ffb9f083e8cee2e7a9cf2d954a9aa9a7e7","path":"POPSpringAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ffb9958b8fb761ff5ab5d7d53fdfde237d","path":"POPSpringAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff9f48c6b6738e75afba9f02f13782ad53","path":"POPSpringSolver.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff79bac3f89460b76ce1e2182e1a9441cd","path":"POPVector.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ff08971d8ad2719c4e2a6ecad2e10315c0","path":"POPVector.mm","sourceTree":"","type":"file"},{"children":[{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff6db70696d85c1b739973c59d77ed4ce1","path":"FloatConversion.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.cpp","guid":"d1d02f3c366ce2d9916f628a00f841ff490f8d5b3aedf0c5a655d70000b05cd8","path":"TransformationMatrix.cpp","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff0477cf0eefe6dc0273a15133daf27952","path":"TransformationMatrix.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff128a04207983005889f50ae5ed409bcc","path":"UnitBezier.h","sourceTree":"","type":"file"}],"guid":"d1d02f3c366ce2d9916f628a00f841ffa477123f5733bb559744cca01cce5bbd","name":"WebCore","path":"WebCore","sourceTree":"","type":"group"}],"guid":"d1d02f3c366ce2d9916f628a00f841ffb5421fff39afc8b6a7813c4eeaa6a572","name":"pop","path":"Classes/pop","sourceTree":"","type":"group"},{"children":[{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ffdf89afd2351f08331708ce72d67a9f13","path":"Classes/CAMediaTimingFunction+ExtendedFunc.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"d1d02f3c366ce2d9916f628a00f841ff85de645dc90624f9c0d0917bcd5a2afd","path":"Classes/CAMediaTimingFunction+ExtendedFunc.m","sourceTree":"","type":"file"}],"guid":"d1d02f3c366ce2d9916f628a00f841ff70c6f9072ecbaadcc0fd04ecd1feda31","name":"CAMediaTimingFunction+ExtendedFunc","path":"","sourceTree":"","type":"group"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff8b1a1cfd30650ef9ca46d3b2ba748132","path":"GuyMcdoooooTipop_Prefix.pch","sourceTree":"SOURCE_ROOT","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ffca8baead07dfcbbd1d389cebc5a949b4","path":"Classes/GuyMcdoooooTipopModuleAssets.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"d1d02f3c366ce2d9916f628a00f841ff3053bab69af10591ea831e1e6e159868","path":"Classes/GuyMcdoooooTipopModuleAssets.m","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"text.xcconfig","guid":"d1d02f3c366ce2d9916f628a00f841ff1ab9ad58b4eeed64a1fca40bbfdec1f1","path":"titanium.xcconfig","sourceTree":"","type":"file"}],"guid":"d1d02f3c366ce2d9916f628a00f841ff56e17473ed6ca51563a84bae8d1d010c","name":"Other Sources","path":"","sourceTree":"","type":"group"},{"children":[{"fileType":"wrapper.xcframework","guid":"d1d02f3c366ce2d9916f628a00f841ffa52f51432572caf0199eb1da1389d918","path":"../../../../../Library/Application Support/Titanium/mobilesdk/osx/10.0.0/iphone/Frameworks/TitaniumKit.xcframework","sourceTree":"","type":"file"},{"fileType":"wrapper.framework","guid":"d1d02f3c366ce2d9916f628a00f841ff9261c44e8adf51c81b9bf505497c0b33","path":"System/Library/Frameworks/Foundation.framework","sourceTree":"SDKROOT","type":"file"},{"fileType":"wrapper.framework","guid":"d1d02f3c366ce2d9916f628a00f841ff931d6996d0a4fb6be6a97f040381db06","path":"System/Library/Frameworks/SceneKit.framework","sourceTree":"SDKROOT","type":"file"}],"guid":"d1d02f3c366ce2d9916f628a00f841ff5980b504713f9c12fa2d45628f2e2ebc","name":"Frameworks","path":"","sourceTree":"","type":"group"},{"guid":"d1d02f3c366ce2d9916f628a00f841ffc92b5c8146d259580683b2251576f075","name":"Products","path":"","sourceTree":"","type":"group"}],"guid":"d1d02f3c366ce2d9916f628a00f841ffca4e1a48decbe404ed2be3b332bfe67e","name":"tipop","path":"","sourceTree":"","type":"group"},"guid":"d1d02f3c366ce2d9916f628a00f841ff","path":"/Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj","projectDirectory":"/Users/marcbender/Downloads/tipop-master-2/iphone","targets":["TARGET@v11_hash=6edabf8023f3b72c8e39c38c4c77484e","TARGET@v11_hash=c4608d83621ff22e68d1a0c9e8feb2db"]} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/project/PROJECT@v11_mod=1631551839.4828591_hash=2a4102536f17908285d1029bcab67367-json b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/project/PROJECT@v11_mod=1631551839.4828591_hash=2a4102536f17908285d1029bcab67367-json new file mode 100644 index 0000000..a124459 --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/project/PROJECT@v11_mod=1631551839.4828591_hash=2a4102536f17908285d1029bcab67367-json @@ -0,0 +1 @@ +{"appPreferencesBuildSettings":{},"buildConfigurations":[{"baseConfigurationFileReference":"2a4102536f17908285d1029bcab673671ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED":"YES","CLANG_CXX_LIBRARY":"compiler-default","CLANG_ENABLE_MODULES":"YES","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"iPhone Developer","DSTROOT":"/tmp/GuyMcdoooooTipop.dst","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","FRAMEWORK_SEARCH_PATHS[arch=*]":"/Users/logicdesign/Library/Developer/Xcode/DerivedData/tipop-cvetucwqxuhcoddipwtykqjcrwep/Build/Products/Debug-iphoneos/pop.framework","GCC_C_LANGUAGE_STANDARD":"c99","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PRECOMPILE_PREFIX_HEADER":"YES","GCC_PREFIX_HEADER":"GuyMcdoooooTipop_Prefix.pch","GCC_PREPROCESSOR_DEFINITIONS":"TI_VERSION=$(TI_VERSION)","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"NO","GCC_WARN_MISSING_PARENTHESES":"NO","GCC_WARN_SHADOW":"NO","GCC_WARN_STRICT_SELECTOR_MATCH":"NO","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_PARAMETER":"NO","GCC_WARN_UNUSED_VALUE":"NO","GCC_WARN_UNUSED_VARIABLE":"NO","INSTALL_PATH":"/usr/local/lib","IPHONEOS_DEPLOYMENT_TARGET":"12.1","ONLY_ACTIVE_ARCH":"YES","OTHER_CFLAGS":"-DDEBUG -DTI_POST_1_2","OTHER_LDFLAGS":"-ObjC","PRODUCT_NAME":"GuyMcdoooooTipop","PROVISIONING_PROFILE":"","PROVISIONING_PROFILE[sdk=iphoneos*]":"","RUN_CLANG_STATIC_ANALYZER":"NO","SDKROOT":"iphoneos","USER_HEADER_SEARCH_PATHS":""},"guid":"2a4102536f17908285d1029bcab673679b81f74252e7abd9be0737b64348d4fc","name":"Debug"},{"baseConfigurationFileReference":"2a4102536f17908285d1029bcab673671ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"ALWAYS_SEARCH_USER_PATHS":"NO","CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED":"YES","CLANG_CXX_LIBRARY":"compiler-default","CLANG_ENABLE_MODULES":"YES","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","DSTROOT":"/tmp/GuyMcdoooooTipop.dst","ENABLE_STRICT_OBJC_MSGSEND":"YES","FRAMEWORK_SEARCH_PATHS[arch=*]":"/Users/logicdesign/Library/Developer/Xcode/DerivedData/tipop-cvetucwqxuhcoddipwtykqjcrwep/Build/Products/Debug-iphoneos/pop.framework","GCC_C_LANGUAGE_STANDARD":"c99","GCC_MODEL_TUNING":"G5","GCC_NO_COMMON_BLOCKS":"YES","GCC_PRECOMPILE_PREFIX_HEADER":"YES","GCC_PREFIX_HEADER":"GuyMcdoooooTipop_Prefix.pch","GCC_PREPROCESSOR_DEFINITIONS":"TI_VERSION=$(TI_VERSION)","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"NO","GCC_WARN_MISSING_PARENTHESES":"NO","GCC_WARN_SHADOW":"NO","GCC_WARN_STRICT_SELECTOR_MATCH":"NO","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_PARAMETER":"NO","GCC_WARN_UNUSED_VALUE":"NO","GCC_WARN_UNUSED_VARIABLE":"NO","INSTALL_PATH":"/usr/local/lib","IPHONEOS_DEPLOYMENT_TARGET":"12.1","OTHER_CFLAGS":"-DTI_POST_1_2","OTHER_LDFLAGS":"-ObjC","PRODUCT_NAME":"GuyMcdoooooTipop","RUN_CLANG_STATIC_ANALYZER":"NO","SDKROOT":"iphoneos","USER_HEADER_SEARCH_PATHS":""},"guid":"2a4102536f17908285d1029bcab6736788a1d6c2cbaed3b0491d934bbe3aa9b7","name":"Release"}],"classPrefix":"","defaultConfigurationName":"Release","developmentRegion":"en","groupTree":{"children":[{"children":[{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367f9d8a543bfd9637634355540398ec668","path":"Classes/GuyMcdoooooTipopModule.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"2a4102536f17908285d1029bcab673679a5f6703969a438fdc8077bfd70cab33","path":"Classes/GuyMcdoooooTipopModule.m","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676ce41782d0c55573a951df6133791578","path":"Classes/FBPOPAnimator.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"2a4102536f17908285d1029bcab673672e746add1b9afee556bcdd4ff4bdf74d","path":"Classes/FBPOPAnimator.m","sourceTree":"","type":"file"}],"guid":"2a4102536f17908285d1029bcab67367b748d7204cf9352f6693bcd286455709","name":"Classes","path":"","sourceTree":"","type":"group"},{"children":[{"children":[{"children":[{"fileType":"text.plist.strings","guid":"2a4102536f17908285d1029bcab67367a10578cfe5955fa6edc64e36bea332f9","path":"en.lproj/InfoPlist.strings","regionVariantName":"en","sourceTree":"","type":"file"}],"guid":"2a4102536f17908285d1029bcab6736784eacf1e3bcc80a6be2e7eef352bb833","name":"InfoPlist.strings","path":"","sourceTree":"","type":"variantGroup"},{"fileTextEncoding":"utf-8","fileType":"text.plist.xml","guid":"2a4102536f17908285d1029bcab6736700fa33800b74bb6cde2ab1f20b63e3a9","path":"pop-Info.plist","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367c5cd440e66c5ba5b551e2ea12c3ff034","path":"POP.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676f5bc0a826474816e4e3e2db881fb807","path":"POPAction.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673672d6d7c330d27717ae7da1a00a4e4a394","path":"POPAnimatableProperty.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367a437a5c1876546e4c2a97017e0a8d699","path":"POPAnimatableProperty.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673675ebd6e9b4b04d97350eebbe8d4fc8330","path":"POPAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab673674dce39f349fcef423b223088c8116766","path":"POPAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367ea1db49d0bdbfda0f0e98119d6d998b5","path":"POPAnimationEvent.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367b8197eae91db67e4f81670931e8ba271","path":"POPAnimationEvent.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367136ac9054312b32582489ab9cd500a46","path":"POPAnimationEventInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673672a7f9b1decc44cac8ffa1feb9d4ad82f","path":"POPAnimationExtras.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab673672db44f1e1110bd8d7179aece991f46f5","path":"POPAnimationExtras.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367a7c72589194c16802a82644d98115dcd","path":"POPAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367520ff038c6bd84fc87f0ea86e85b0d7c","path":"POPAnimationPrivate.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367a9c0334876dbec31dce9c5ece27d60ff","path":"POPAnimationRuntime.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab6736768348bfcc41a9adeec183138d7ba1021","path":"POPAnimationRuntime.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673670eb88a4cff41a652298a1bdf640ba70a","path":"POPAnimationTracer.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367acc437135f2a65e2f0b4bf8090fe3562","path":"POPAnimationTracer.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673678310d5d3c4fd50e4d6f800a8db44d850","path":"POPAnimationTracerInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673674027ebd78ca0daa1361f3fc13a5747b5","path":"POPAnimator.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367ca3936be73ea75285f61bfb6504fb399","path":"POPAnimator.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367195a5f202853b8dc2e2fb8559eb15e15","path":"POPAnimatorPrivate.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367374344d2537d80b040f7476758bd0576","path":"POPBasicAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab673672e43c6e69934c450019618d2ff5ccaaa","path":"POPBasicAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673671f9a027de3985f1f170f00cb42faefac","path":"POPBasicAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673678eff51c89b978fad6d1c0a30c6c53d58","path":"POPCGUtils.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367f947849271008e56914118ad0b23b7a1","path":"POPCGUtils.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367b78ca7d61c59e169eea5bd6b3d46950e","path":"POPCustomAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367f0b1a30d7c8a834ce54af0c8a259967d","path":"POPCustomAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab6736794eaba89e978ef7502723be10bc4b56e","path":"POPDecayAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab673672de9a1c3c89fb9ee6056f28911131c9f","path":"POPDecayAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367bedfedfe9199ebf2ae5f22ca93ad4fb6","path":"POPDecayAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673674a673e5e989bd68063506581d0c3f82b","path":"POPDefines.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676394e27bde1fd4f96ce86201e3f113fe","path":"POPGeometry.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367ac6d2bd335c0c3b2e76c01da6f338a77","path":"POPGeometry.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367992f6951c5ba1eb7ef2fc78577d8df87","path":"POPLayerExtras.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367707051f6c8df34108e6c9b67c38e3e8f","path":"POPLayerExtras.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673671af1c6cdb0da165487f68e0cf50436fd","path":"POPMath.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab6736702f26f062aadd0434ac0d5ed9cf436a4","path":"POPMath.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676eb330cd7367c88c9c45cd9e100ac8f2","path":"POPPropertyAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367953953e697feb363fe0393d3d53ebef4","path":"POPPropertyAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676e68a455bc5477b10924198db537a7c1","path":"POPPropertyAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673672a1eda3d285193f25fc35ebaf28d2188","path":"POPSpringAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367b9f083e8cee2e7a9cf2d954a9aa9a7e7","path":"POPSpringAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367b9958b8fb761ff5ab5d7d53fdfde237d","path":"POPSpringAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673679f48c6b6738e75afba9f02f13782ad53","path":"POPSpringSolver.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab6736779bac3f89460b76ce1e2182e1a9441cd","path":"POPVector.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab6736708971d8ad2719c4e2a6ecad2e10315c0","path":"POPVector.mm","sourceTree":"","type":"file"},{"children":[{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676db70696d85c1b739973c59d77ed4ce1","path":"FloatConversion.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.cpp","guid":"2a4102536f17908285d1029bcab67367490f8d5b3aedf0c5a655d70000b05cd8","path":"TransformationMatrix.cpp","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673670477cf0eefe6dc0273a15133daf27952","path":"TransformationMatrix.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367128a04207983005889f50ae5ed409bcc","path":"UnitBezier.h","sourceTree":"","type":"file"}],"guid":"2a4102536f17908285d1029bcab67367a477123f5733bb559744cca01cce5bbd","name":"WebCore","path":"WebCore","sourceTree":"","type":"group"}],"guid":"2a4102536f17908285d1029bcab67367b5421fff39afc8b6a7813c4eeaa6a572","name":"pop","path":"Classes/pop","sourceTree":"","type":"group"},{"children":[{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367df89afd2351f08331708ce72d67a9f13","path":"Classes/CAMediaTimingFunction+ExtendedFunc.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"2a4102536f17908285d1029bcab6736785de645dc90624f9c0d0917bcd5a2afd","path":"Classes/CAMediaTimingFunction+ExtendedFunc.m","sourceTree":"","type":"file"}],"guid":"2a4102536f17908285d1029bcab6736770c6f9072ecbaadcc0fd04ecd1feda31","name":"CAMediaTimingFunction+ExtendedFunc","path":"","sourceTree":"","type":"group"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673678b1a1cfd30650ef9ca46d3b2ba748132","path":"GuyMcdoooooTipop_Prefix.pch","sourceTree":"SOURCE_ROOT","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367ca8baead07dfcbbd1d389cebc5a949b4","path":"Classes/GuyMcdoooooTipopModuleAssets.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"2a4102536f17908285d1029bcab673673053bab69af10591ea831e1e6e159868","path":"Classes/GuyMcdoooooTipopModuleAssets.m","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"text.xcconfig","guid":"2a4102536f17908285d1029bcab673671ab9ad58b4eeed64a1fca40bbfdec1f1","path":"titanium.xcconfig","sourceTree":"","type":"file"}],"guid":"2a4102536f17908285d1029bcab6736756e17473ed6ca51563a84bae8d1d010c","name":"Other Sources","path":"","sourceTree":"","type":"group"},{"children":[{"fileType":"wrapper.framework","guid":"2a4102536f17908285d1029bcab673679261c44e8adf51c81b9bf505497c0b33","path":"System/Library/Frameworks/Foundation.framework","sourceTree":"SDKROOT","type":"file"},{"fileType":"wrapper.framework","guid":"2a4102536f17908285d1029bcab67367931d6996d0a4fb6be6a97f040381db06","path":"System/Library/Frameworks/SceneKit.framework","sourceTree":"SDKROOT","type":"file"}],"guid":"2a4102536f17908285d1029bcab673675980b504713f9c12fa2d45628f2e2ebc","name":"Frameworks","path":"","sourceTree":"","type":"group"},{"guid":"2a4102536f17908285d1029bcab67367c92b5c8146d259580683b2251576f075","name":"Products","path":"","sourceTree":"","type":"group"}],"guid":"2a4102536f17908285d1029bcab67367ca4e1a48decbe404ed2be3b332bfe67e","name":"tipop","path":"","sourceTree":"","type":"group"},"guid":"2a4102536f17908285d1029bcab67367","path":"/Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj","projectDirectory":"/Users/marcbender/Downloads/tipop-master-2/iphone","targets":["TARGET@v11_hash=0f923968f29a11289f3d0497331ff26b","TARGET@v11_hash=0eb15ecb24c134556c87a3eb4d010918"]} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/project/PROJECT@v11_mod=1631551839.4828591_hash=d1d02f3c366ce2d9916f628a00f841ff-json b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/project/PROJECT@v11_mod=1631551839.4828591_hash=d1d02f3c366ce2d9916f628a00f841ff-json new file mode 100644 index 0000000..5a75a3c --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/project/PROJECT@v11_mod=1631551839.4828591_hash=d1d02f3c366ce2d9916f628a00f841ff-json @@ -0,0 +1 @@ +{"appPreferencesBuildSettings":{},"buildConfigurations":[{"baseConfigurationFileReference":"d1d02f3c366ce2d9916f628a00f841ff1ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED":"YES","CLANG_CXX_LIBRARY":"compiler-default","CLANG_ENABLE_MODULES":"YES","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"iPhone Developer","DSTROOT":"/tmp/GuyMcdoooooTipop.dst","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","FRAMEWORK_SEARCH_PATHS[arch=*]":"/Users/logicdesign/Library/Developer/Xcode/DerivedData/tipop-cvetucwqxuhcoddipwtykqjcrwep/Build/Products/Debug-iphoneos/pop.framework","GCC_C_LANGUAGE_STANDARD":"c99","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PRECOMPILE_PREFIX_HEADER":"YES","GCC_PREFIX_HEADER":"GuyMcdoooooTipop_Prefix.pch","GCC_PREPROCESSOR_DEFINITIONS":"TI_VERSION=$(TI_VERSION)","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"NO","GCC_WARN_MISSING_PARENTHESES":"NO","GCC_WARN_SHADOW":"NO","GCC_WARN_STRICT_SELECTOR_MATCH":"NO","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_PARAMETER":"NO","GCC_WARN_UNUSED_VALUE":"NO","GCC_WARN_UNUSED_VARIABLE":"NO","INSTALL_PATH":"/usr/local/lib","IPHONEOS_DEPLOYMENT_TARGET":"12.1","ONLY_ACTIVE_ARCH":"YES","OTHER_CFLAGS":"-DDEBUG -DTI_POST_1_2","OTHER_LDFLAGS":"-ObjC","PRODUCT_NAME":"GuyMcdoooooTipop","PROVISIONING_PROFILE":"","PROVISIONING_PROFILE[sdk=iphoneos*]":"","RUN_CLANG_STATIC_ANALYZER":"NO","SDKROOT":"iphoneos","USER_HEADER_SEARCH_PATHS":""},"guid":"d1d02f3c366ce2d9916f628a00f841ff9b81f74252e7abd9be0737b64348d4fc","name":"Debug"},{"baseConfigurationFileReference":"d1d02f3c366ce2d9916f628a00f841ff1ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"ALWAYS_SEARCH_USER_PATHS":"NO","CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED":"YES","CLANG_CXX_LIBRARY":"compiler-default","CLANG_ENABLE_MODULES":"YES","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","DSTROOT":"/tmp/GuyMcdoooooTipop.dst","ENABLE_STRICT_OBJC_MSGSEND":"YES","FRAMEWORK_SEARCH_PATHS[arch=*]":"/Users/logicdesign/Library/Developer/Xcode/DerivedData/tipop-cvetucwqxuhcoddipwtykqjcrwep/Build/Products/Debug-iphoneos/pop.framework","GCC_C_LANGUAGE_STANDARD":"c99","GCC_MODEL_TUNING":"G5","GCC_NO_COMMON_BLOCKS":"YES","GCC_PRECOMPILE_PREFIX_HEADER":"YES","GCC_PREFIX_HEADER":"GuyMcdoooooTipop_Prefix.pch","GCC_PREPROCESSOR_DEFINITIONS":"TI_VERSION=$(TI_VERSION)","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"NO","GCC_WARN_MISSING_PARENTHESES":"NO","GCC_WARN_SHADOW":"NO","GCC_WARN_STRICT_SELECTOR_MATCH":"NO","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_PARAMETER":"NO","GCC_WARN_UNUSED_VALUE":"NO","GCC_WARN_UNUSED_VARIABLE":"NO","INSTALL_PATH":"/usr/local/lib","IPHONEOS_DEPLOYMENT_TARGET":"12.1","OTHER_CFLAGS":"-DTI_POST_1_2","OTHER_LDFLAGS":"-ObjC","PRODUCT_NAME":"GuyMcdoooooTipop","RUN_CLANG_STATIC_ANALYZER":"NO","SDKROOT":"iphoneos","USER_HEADER_SEARCH_PATHS":""},"guid":"d1d02f3c366ce2d9916f628a00f841ff88a1d6c2cbaed3b0491d934bbe3aa9b7","name":"Release"}],"classPrefix":"","defaultConfigurationName":"Release","developmentRegion":"en","groupTree":{"children":[{"children":[{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841fff9d8a543bfd9637634355540398ec668","path":"Classes/GuyMcdoooooTipopModule.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"d1d02f3c366ce2d9916f628a00f841ff9a5f6703969a438fdc8077bfd70cab33","path":"Classes/GuyMcdoooooTipopModule.m","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff6ce41782d0c55573a951df6133791578","path":"Classes/FBPOPAnimator.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"d1d02f3c366ce2d9916f628a00f841ff2e746add1b9afee556bcdd4ff4bdf74d","path":"Classes/FBPOPAnimator.m","sourceTree":"","type":"file"}],"guid":"d1d02f3c366ce2d9916f628a00f841ffb748d7204cf9352f6693bcd286455709","name":"Classes","path":"","sourceTree":"","type":"group"},{"children":[{"children":[{"children":[{"fileType":"text.plist.strings","guid":"d1d02f3c366ce2d9916f628a00f841ffa10578cfe5955fa6edc64e36bea332f9","path":"en.lproj/InfoPlist.strings","regionVariantName":"en","sourceTree":"","type":"file"}],"guid":"d1d02f3c366ce2d9916f628a00f841ff84eacf1e3bcc80a6be2e7eef352bb833","name":"InfoPlist.strings","path":"","sourceTree":"","type":"variantGroup"},{"fileTextEncoding":"utf-8","fileType":"text.plist.xml","guid":"d1d02f3c366ce2d9916f628a00f841ff00fa33800b74bb6cde2ab1f20b63e3a9","path":"pop-Info.plist","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ffc5cd440e66c5ba5b551e2ea12c3ff034","path":"POP.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff6f5bc0a826474816e4e3e2db881fb807","path":"POPAction.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff2d6d7c330d27717ae7da1a00a4e4a394","path":"POPAnimatableProperty.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ffa437a5c1876546e4c2a97017e0a8d699","path":"POPAnimatableProperty.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff5ebd6e9b4b04d97350eebbe8d4fc8330","path":"POPAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ff4dce39f349fcef423b223088c8116766","path":"POPAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ffea1db49d0bdbfda0f0e98119d6d998b5","path":"POPAnimationEvent.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ffb8197eae91db67e4f81670931e8ba271","path":"POPAnimationEvent.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff136ac9054312b32582489ab9cd500a46","path":"POPAnimationEventInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff2a7f9b1decc44cac8ffa1feb9d4ad82f","path":"POPAnimationExtras.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ff2db44f1e1110bd8d7179aece991f46f5","path":"POPAnimationExtras.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ffa7c72589194c16802a82644d98115dcd","path":"POPAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff520ff038c6bd84fc87f0ea86e85b0d7c","path":"POPAnimationPrivate.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ffa9c0334876dbec31dce9c5ece27d60ff","path":"POPAnimationRuntime.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ff68348bfcc41a9adeec183138d7ba1021","path":"POPAnimationRuntime.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff0eb88a4cff41a652298a1bdf640ba70a","path":"POPAnimationTracer.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ffacc437135f2a65e2f0b4bf8090fe3562","path":"POPAnimationTracer.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff8310d5d3c4fd50e4d6f800a8db44d850","path":"POPAnimationTracerInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff4027ebd78ca0daa1361f3fc13a5747b5","path":"POPAnimator.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ffca3936be73ea75285f61bfb6504fb399","path":"POPAnimator.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff195a5f202853b8dc2e2fb8559eb15e15","path":"POPAnimatorPrivate.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff374344d2537d80b040f7476758bd0576","path":"POPBasicAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ff2e43c6e69934c450019618d2ff5ccaaa","path":"POPBasicAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff1f9a027de3985f1f170f00cb42faefac","path":"POPBasicAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff8eff51c89b978fad6d1c0a30c6c53d58","path":"POPCGUtils.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841fff947849271008e56914118ad0b23b7a1","path":"POPCGUtils.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ffb78ca7d61c59e169eea5bd6b3d46950e","path":"POPCustomAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841fff0b1a30d7c8a834ce54af0c8a259967d","path":"POPCustomAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff94eaba89e978ef7502723be10bc4b56e","path":"POPDecayAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ff2de9a1c3c89fb9ee6056f28911131c9f","path":"POPDecayAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ffbedfedfe9199ebf2ae5f22ca93ad4fb6","path":"POPDecayAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff4a673e5e989bd68063506581d0c3f82b","path":"POPDefines.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff6394e27bde1fd4f96ce86201e3f113fe","path":"POPGeometry.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ffac6d2bd335c0c3b2e76c01da6f338a77","path":"POPGeometry.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff992f6951c5ba1eb7ef2fc78577d8df87","path":"POPLayerExtras.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ff707051f6c8df34108e6c9b67c38e3e8f","path":"POPLayerExtras.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff1af1c6cdb0da165487f68e0cf50436fd","path":"POPMath.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ff02f26f062aadd0434ac0d5ed9cf436a4","path":"POPMath.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff6eb330cd7367c88c9c45cd9e100ac8f2","path":"POPPropertyAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ff953953e697feb363fe0393d3d53ebef4","path":"POPPropertyAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff6e68a455bc5477b10924198db537a7c1","path":"POPPropertyAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff2a1eda3d285193f25fc35ebaf28d2188","path":"POPSpringAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ffb9f083e8cee2e7a9cf2d954a9aa9a7e7","path":"POPSpringAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ffb9958b8fb761ff5ab5d7d53fdfde237d","path":"POPSpringAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff9f48c6b6738e75afba9f02f13782ad53","path":"POPSpringSolver.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff79bac3f89460b76ce1e2182e1a9441cd","path":"POPVector.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"d1d02f3c366ce2d9916f628a00f841ff08971d8ad2719c4e2a6ecad2e10315c0","path":"POPVector.mm","sourceTree":"","type":"file"},{"children":[{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff6db70696d85c1b739973c59d77ed4ce1","path":"FloatConversion.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.cpp","guid":"d1d02f3c366ce2d9916f628a00f841ff490f8d5b3aedf0c5a655d70000b05cd8","path":"TransformationMatrix.cpp","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff0477cf0eefe6dc0273a15133daf27952","path":"TransformationMatrix.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff128a04207983005889f50ae5ed409bcc","path":"UnitBezier.h","sourceTree":"","type":"file"}],"guid":"d1d02f3c366ce2d9916f628a00f841ffa477123f5733bb559744cca01cce5bbd","name":"WebCore","path":"WebCore","sourceTree":"","type":"group"}],"guid":"d1d02f3c366ce2d9916f628a00f841ffb5421fff39afc8b6a7813c4eeaa6a572","name":"pop","path":"Classes/pop","sourceTree":"","type":"group"},{"children":[{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ffdf89afd2351f08331708ce72d67a9f13","path":"Classes/CAMediaTimingFunction+ExtendedFunc.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"d1d02f3c366ce2d9916f628a00f841ff85de645dc90624f9c0d0917bcd5a2afd","path":"Classes/CAMediaTimingFunction+ExtendedFunc.m","sourceTree":"","type":"file"}],"guid":"d1d02f3c366ce2d9916f628a00f841ff70c6f9072ecbaadcc0fd04ecd1feda31","name":"CAMediaTimingFunction+ExtendedFunc","path":"","sourceTree":"","type":"group"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ff8b1a1cfd30650ef9ca46d3b2ba748132","path":"GuyMcdoooooTipop_Prefix.pch","sourceTree":"SOURCE_ROOT","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"d1d02f3c366ce2d9916f628a00f841ffca8baead07dfcbbd1d389cebc5a949b4","path":"Classes/GuyMcdoooooTipopModuleAssets.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"d1d02f3c366ce2d9916f628a00f841ff3053bab69af10591ea831e1e6e159868","path":"Classes/GuyMcdoooooTipopModuleAssets.m","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"text.xcconfig","guid":"d1d02f3c366ce2d9916f628a00f841ff1ab9ad58b4eeed64a1fca40bbfdec1f1","path":"titanium.xcconfig","sourceTree":"","type":"file"}],"guid":"d1d02f3c366ce2d9916f628a00f841ff56e17473ed6ca51563a84bae8d1d010c","name":"Other Sources","path":"","sourceTree":"","type":"group"},{"children":[{"fileType":"wrapper.framework","guid":"d1d02f3c366ce2d9916f628a00f841ff9261c44e8adf51c81b9bf505497c0b33","path":"System/Library/Frameworks/Foundation.framework","sourceTree":"SDKROOT","type":"file"},{"fileType":"wrapper.framework","guid":"d1d02f3c366ce2d9916f628a00f841ff931d6996d0a4fb6be6a97f040381db06","path":"System/Library/Frameworks/SceneKit.framework","sourceTree":"SDKROOT","type":"file"}],"guid":"d1d02f3c366ce2d9916f628a00f841ff5980b504713f9c12fa2d45628f2e2ebc","name":"Frameworks","path":"","sourceTree":"","type":"group"},{"guid":"d1d02f3c366ce2d9916f628a00f841ffc92b5c8146d259580683b2251576f075","name":"Products","path":"","sourceTree":"","type":"group"}],"guid":"d1d02f3c366ce2d9916f628a00f841ffca4e1a48decbe404ed2be3b332bfe67e","name":"tipop","path":"","sourceTree":"","type":"group"},"guid":"d1d02f3c366ce2d9916f628a00f841ff","path":"/Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj","projectDirectory":"/Users/marcbender/Downloads/tipop-master-2/iphone","targets":["TARGET@v11_hash=0e66b5b1499a37133bdf69bca490e663","TARGET@v11_hash=c4608d83621ff22e68d1a0c9e8feb2db"]} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/project/PROJECT@v11_mod=1631552056.9528859_hash=2a4102536f17908285d1029bcab67367-json b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/project/PROJECT@v11_mod=1631552056.9528859_hash=2a4102536f17908285d1029bcab67367-json new file mode 100644 index 0000000..a5ecc70 --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/project/PROJECT@v11_mod=1631552056.9528859_hash=2a4102536f17908285d1029bcab67367-json @@ -0,0 +1 @@ +{"appPreferencesBuildSettings":{},"buildConfigurations":[{"baseConfigurationFileReference":"2a4102536f17908285d1029bcab673671ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED":"YES","CLANG_CXX_LIBRARY":"compiler-default","CLANG_ENABLE_MODULES":"YES","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"iPhone Developer","DSTROOT":"/tmp/GuyMcdoooooTipop.dst","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","FRAMEWORK_SEARCH_PATHS[arch=*]":"/Users/logicdesign/Library/Developer/Xcode/DerivedData/tipop-cvetucwqxuhcoddipwtykqjcrwep/Build/Products/Debug-iphoneos/pop.framework","GCC_C_LANGUAGE_STANDARD":"c99","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PRECOMPILE_PREFIX_HEADER":"YES","GCC_PREFIX_HEADER":"GuyMcdoooooTipop_Prefix.pch","GCC_PREPROCESSOR_DEFINITIONS":"TI_VERSION=$(TI_VERSION)","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"NO","GCC_WARN_MISSING_PARENTHESES":"NO","GCC_WARN_SHADOW":"NO","GCC_WARN_STRICT_SELECTOR_MATCH":"NO","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_PARAMETER":"NO","GCC_WARN_UNUSED_VALUE":"NO","GCC_WARN_UNUSED_VARIABLE":"NO","INSTALL_PATH":"/usr/local/lib","IPHONEOS_DEPLOYMENT_TARGET":"12.1","ONLY_ACTIVE_ARCH":"YES","OTHER_CFLAGS":"-DDEBUG -DTI_POST_1_2","OTHER_LDFLAGS":"-ObjC","PRODUCT_NAME":"GuyMcdoooooTipop","PROVISIONING_PROFILE":"","PROVISIONING_PROFILE[sdk=iphoneos*]":"","RUN_CLANG_STATIC_ANALYZER":"NO","SDKROOT":"iphoneos","USER_HEADER_SEARCH_PATHS":""},"guid":"2a4102536f17908285d1029bcab673679b81f74252e7abd9be0737b64348d4fc","name":"Debug"},{"baseConfigurationFileReference":"2a4102536f17908285d1029bcab673671ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"ALWAYS_SEARCH_USER_PATHS":"NO","CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED":"YES","CLANG_CXX_LIBRARY":"compiler-default","CLANG_ENABLE_MODULES":"YES","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","DSTROOT":"/tmp/GuyMcdoooooTipop.dst","ENABLE_STRICT_OBJC_MSGSEND":"YES","FRAMEWORK_SEARCH_PATHS[arch=*]":"/Users/logicdesign/Library/Developer/Xcode/DerivedData/tipop-cvetucwqxuhcoddipwtykqjcrwep/Build/Products/Debug-iphoneos/pop.framework","GCC_C_LANGUAGE_STANDARD":"c99","GCC_MODEL_TUNING":"G5","GCC_NO_COMMON_BLOCKS":"YES","GCC_PRECOMPILE_PREFIX_HEADER":"YES","GCC_PREFIX_HEADER":"GuyMcdoooooTipop_Prefix.pch","GCC_PREPROCESSOR_DEFINITIONS":"TI_VERSION=$(TI_VERSION)","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"NO","GCC_WARN_MISSING_PARENTHESES":"NO","GCC_WARN_SHADOW":"NO","GCC_WARN_STRICT_SELECTOR_MATCH":"NO","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_PARAMETER":"NO","GCC_WARN_UNUSED_VALUE":"NO","GCC_WARN_UNUSED_VARIABLE":"NO","INSTALL_PATH":"/usr/local/lib","IPHONEOS_DEPLOYMENT_TARGET":"12.1","OTHER_CFLAGS":"-DTI_POST_1_2","OTHER_LDFLAGS":"-ObjC","PRODUCT_NAME":"GuyMcdoooooTipop","RUN_CLANG_STATIC_ANALYZER":"NO","SDKROOT":"iphoneos","USER_HEADER_SEARCH_PATHS":""},"guid":"2a4102536f17908285d1029bcab6736788a1d6c2cbaed3b0491d934bbe3aa9b7","name":"Release"}],"classPrefix":"","defaultConfigurationName":"Release","developmentRegion":"en","groupTree":{"children":[{"children":[{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367f9d8a543bfd9637634355540398ec668","path":"Classes/GuyMcdoooooTipopModule.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"2a4102536f17908285d1029bcab673679a5f6703969a438fdc8077bfd70cab33","path":"Classes/GuyMcdoooooTipopModule.m","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676ce41782d0c55573a951df6133791578","path":"Classes/FBPOPAnimator.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"2a4102536f17908285d1029bcab673672e746add1b9afee556bcdd4ff4bdf74d","path":"Classes/FBPOPAnimator.m","sourceTree":"","type":"file"}],"guid":"2a4102536f17908285d1029bcab67367b748d7204cf9352f6693bcd286455709","name":"Classes","path":"","sourceTree":"","type":"group"},{"children":[{"children":[{"children":[{"fileType":"text.plist.strings","guid":"2a4102536f17908285d1029bcab67367a10578cfe5955fa6edc64e36bea332f9","path":"en.lproj/InfoPlist.strings","regionVariantName":"en","sourceTree":"","type":"file"}],"guid":"2a4102536f17908285d1029bcab6736784eacf1e3bcc80a6be2e7eef352bb833","name":"InfoPlist.strings","path":"","sourceTree":"","type":"variantGroup"},{"fileTextEncoding":"utf-8","fileType":"text.plist.xml","guid":"2a4102536f17908285d1029bcab6736700fa33800b74bb6cde2ab1f20b63e3a9","path":"pop-Info.plist","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367c5cd440e66c5ba5b551e2ea12c3ff034","path":"POP.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676f5bc0a826474816e4e3e2db881fb807","path":"POPAction.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673672d6d7c330d27717ae7da1a00a4e4a394","path":"POPAnimatableProperty.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367a437a5c1876546e4c2a97017e0a8d699","path":"POPAnimatableProperty.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673675ebd6e9b4b04d97350eebbe8d4fc8330","path":"POPAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab673674dce39f349fcef423b223088c8116766","path":"POPAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367ea1db49d0bdbfda0f0e98119d6d998b5","path":"POPAnimationEvent.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367b8197eae91db67e4f81670931e8ba271","path":"POPAnimationEvent.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367136ac9054312b32582489ab9cd500a46","path":"POPAnimationEventInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673672a7f9b1decc44cac8ffa1feb9d4ad82f","path":"POPAnimationExtras.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab673672db44f1e1110bd8d7179aece991f46f5","path":"POPAnimationExtras.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367a7c72589194c16802a82644d98115dcd","path":"POPAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367520ff038c6bd84fc87f0ea86e85b0d7c","path":"POPAnimationPrivate.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367a9c0334876dbec31dce9c5ece27d60ff","path":"POPAnimationRuntime.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab6736768348bfcc41a9adeec183138d7ba1021","path":"POPAnimationRuntime.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673670eb88a4cff41a652298a1bdf640ba70a","path":"POPAnimationTracer.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367acc437135f2a65e2f0b4bf8090fe3562","path":"POPAnimationTracer.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673678310d5d3c4fd50e4d6f800a8db44d850","path":"POPAnimationTracerInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673674027ebd78ca0daa1361f3fc13a5747b5","path":"POPAnimator.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367ca3936be73ea75285f61bfb6504fb399","path":"POPAnimator.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367195a5f202853b8dc2e2fb8559eb15e15","path":"POPAnimatorPrivate.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367374344d2537d80b040f7476758bd0576","path":"POPBasicAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab673672e43c6e69934c450019618d2ff5ccaaa","path":"POPBasicAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673671f9a027de3985f1f170f00cb42faefac","path":"POPBasicAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673678eff51c89b978fad6d1c0a30c6c53d58","path":"POPCGUtils.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367f947849271008e56914118ad0b23b7a1","path":"POPCGUtils.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367b78ca7d61c59e169eea5bd6b3d46950e","path":"POPCustomAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367f0b1a30d7c8a834ce54af0c8a259967d","path":"POPCustomAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab6736794eaba89e978ef7502723be10bc4b56e","path":"POPDecayAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab673672de9a1c3c89fb9ee6056f28911131c9f","path":"POPDecayAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367bedfedfe9199ebf2ae5f22ca93ad4fb6","path":"POPDecayAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673674a673e5e989bd68063506581d0c3f82b","path":"POPDefines.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676394e27bde1fd4f96ce86201e3f113fe","path":"POPGeometry.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367ac6d2bd335c0c3b2e76c01da6f338a77","path":"POPGeometry.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367992f6951c5ba1eb7ef2fc78577d8df87","path":"POPLayerExtras.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367707051f6c8df34108e6c9b67c38e3e8f","path":"POPLayerExtras.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673671af1c6cdb0da165487f68e0cf50436fd","path":"POPMath.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab6736702f26f062aadd0434ac0d5ed9cf436a4","path":"POPMath.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676eb330cd7367c88c9c45cd9e100ac8f2","path":"POPPropertyAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367953953e697feb363fe0393d3d53ebef4","path":"POPPropertyAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676e68a455bc5477b10924198db537a7c1","path":"POPPropertyAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673672a1eda3d285193f25fc35ebaf28d2188","path":"POPSpringAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367b9f083e8cee2e7a9cf2d954a9aa9a7e7","path":"POPSpringAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367b9958b8fb761ff5ab5d7d53fdfde237d","path":"POPSpringAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673679f48c6b6738e75afba9f02f13782ad53","path":"POPSpringSolver.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab6736779bac3f89460b76ce1e2182e1a9441cd","path":"POPVector.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab6736708971d8ad2719c4e2a6ecad2e10315c0","path":"POPVector.mm","sourceTree":"","type":"file"},{"children":[{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676db70696d85c1b739973c59d77ed4ce1","path":"FloatConversion.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.cpp","guid":"2a4102536f17908285d1029bcab67367490f8d5b3aedf0c5a655d70000b05cd8","path":"TransformationMatrix.cpp","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673670477cf0eefe6dc0273a15133daf27952","path":"TransformationMatrix.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367128a04207983005889f50ae5ed409bcc","path":"UnitBezier.h","sourceTree":"","type":"file"}],"guid":"2a4102536f17908285d1029bcab67367a477123f5733bb559744cca01cce5bbd","name":"WebCore","path":"WebCore","sourceTree":"","type":"group"}],"guid":"2a4102536f17908285d1029bcab67367b5421fff39afc8b6a7813c4eeaa6a572","name":"pop","path":"Classes/pop","sourceTree":"","type":"group"},{"children":[{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367df89afd2351f08331708ce72d67a9f13","path":"Classes/CAMediaTimingFunction+ExtendedFunc.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"2a4102536f17908285d1029bcab6736785de645dc90624f9c0d0917bcd5a2afd","path":"Classes/CAMediaTimingFunction+ExtendedFunc.m","sourceTree":"","type":"file"}],"guid":"2a4102536f17908285d1029bcab6736770c6f9072ecbaadcc0fd04ecd1feda31","name":"CAMediaTimingFunction+ExtendedFunc","path":"","sourceTree":"","type":"group"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673678b1a1cfd30650ef9ca46d3b2ba748132","path":"GuyMcdoooooTipop_Prefix.pch","sourceTree":"SOURCE_ROOT","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367ca8baead07dfcbbd1d389cebc5a949b4","path":"Classes/GuyMcdoooooTipopModuleAssets.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"2a4102536f17908285d1029bcab673673053bab69af10591ea831e1e6e159868","path":"Classes/GuyMcdoooooTipopModuleAssets.m","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"text.xcconfig","guid":"2a4102536f17908285d1029bcab673671ab9ad58b4eeed64a1fca40bbfdec1f1","path":"titanium.xcconfig","sourceTree":"","type":"file"}],"guid":"2a4102536f17908285d1029bcab6736756e17473ed6ca51563a84bae8d1d010c","name":"Other Sources","path":"","sourceTree":"","type":"group"},{"children":[{"fileType":"wrapper.xcframework","guid":"2a4102536f17908285d1029bcab67367c7dd94f5ddae56a646898cd9e43f12af","path":"../../GuyMcdoooooTipop/ios/$(TITANIUM_SDK)/iphone/Frameworks/TitaniumKit.xcframework","sourceTree":"","type":"file"},{"fileType":"wrapper.framework","guid":"2a4102536f17908285d1029bcab673679261c44e8adf51c81b9bf505497c0b33","path":"System/Library/Frameworks/Foundation.framework","sourceTree":"SDKROOT","type":"file"},{"fileType":"wrapper.framework","guid":"2a4102536f17908285d1029bcab67367931d6996d0a4fb6be6a97f040381db06","path":"System/Library/Frameworks/SceneKit.framework","sourceTree":"SDKROOT","type":"file"}],"guid":"2a4102536f17908285d1029bcab673675980b504713f9c12fa2d45628f2e2ebc","name":"Frameworks","path":"","sourceTree":"","type":"group"},{"guid":"2a4102536f17908285d1029bcab67367c92b5c8146d259580683b2251576f075","name":"Products","path":"","sourceTree":"","type":"group"}],"guid":"2a4102536f17908285d1029bcab67367ca4e1a48decbe404ed2be3b332bfe67e","name":"tipop","path":"","sourceTree":"","type":"group"},"guid":"2a4102536f17908285d1029bcab67367","path":"/Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj","projectDirectory":"/Users/marcbender/Downloads/tipop-master-2/iphone","targets":["TARGET@v11_hash=fcc4133b738b1e22c0f1a28ca0a40c03","TARGET@v11_hash=0eb15ecb24c134556c87a3eb4d010918"]} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/project/PROJECT@v11_mod=1631552567.978825_hash=2a4102536f17908285d1029bcab67367-json b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/project/PROJECT@v11_mod=1631552567.978825_hash=2a4102536f17908285d1029bcab67367-json new file mode 100644 index 0000000..a5ecc70 --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/project/PROJECT@v11_mod=1631552567.978825_hash=2a4102536f17908285d1029bcab67367-json @@ -0,0 +1 @@ +{"appPreferencesBuildSettings":{},"buildConfigurations":[{"baseConfigurationFileReference":"2a4102536f17908285d1029bcab673671ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED":"YES","CLANG_CXX_LIBRARY":"compiler-default","CLANG_ENABLE_MODULES":"YES","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"iPhone Developer","DSTROOT":"/tmp/GuyMcdoooooTipop.dst","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","FRAMEWORK_SEARCH_PATHS[arch=*]":"/Users/logicdesign/Library/Developer/Xcode/DerivedData/tipop-cvetucwqxuhcoddipwtykqjcrwep/Build/Products/Debug-iphoneos/pop.framework","GCC_C_LANGUAGE_STANDARD":"c99","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PRECOMPILE_PREFIX_HEADER":"YES","GCC_PREFIX_HEADER":"GuyMcdoooooTipop_Prefix.pch","GCC_PREPROCESSOR_DEFINITIONS":"TI_VERSION=$(TI_VERSION)","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"NO","GCC_WARN_MISSING_PARENTHESES":"NO","GCC_WARN_SHADOW":"NO","GCC_WARN_STRICT_SELECTOR_MATCH":"NO","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_PARAMETER":"NO","GCC_WARN_UNUSED_VALUE":"NO","GCC_WARN_UNUSED_VARIABLE":"NO","INSTALL_PATH":"/usr/local/lib","IPHONEOS_DEPLOYMENT_TARGET":"12.1","ONLY_ACTIVE_ARCH":"YES","OTHER_CFLAGS":"-DDEBUG -DTI_POST_1_2","OTHER_LDFLAGS":"-ObjC","PRODUCT_NAME":"GuyMcdoooooTipop","PROVISIONING_PROFILE":"","PROVISIONING_PROFILE[sdk=iphoneos*]":"","RUN_CLANG_STATIC_ANALYZER":"NO","SDKROOT":"iphoneos","USER_HEADER_SEARCH_PATHS":""},"guid":"2a4102536f17908285d1029bcab673679b81f74252e7abd9be0737b64348d4fc","name":"Debug"},{"baseConfigurationFileReference":"2a4102536f17908285d1029bcab673671ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"ALWAYS_SEARCH_USER_PATHS":"NO","CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED":"YES","CLANG_CXX_LIBRARY":"compiler-default","CLANG_ENABLE_MODULES":"YES","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","DSTROOT":"/tmp/GuyMcdoooooTipop.dst","ENABLE_STRICT_OBJC_MSGSEND":"YES","FRAMEWORK_SEARCH_PATHS[arch=*]":"/Users/logicdesign/Library/Developer/Xcode/DerivedData/tipop-cvetucwqxuhcoddipwtykqjcrwep/Build/Products/Debug-iphoneos/pop.framework","GCC_C_LANGUAGE_STANDARD":"c99","GCC_MODEL_TUNING":"G5","GCC_NO_COMMON_BLOCKS":"YES","GCC_PRECOMPILE_PREFIX_HEADER":"YES","GCC_PREFIX_HEADER":"GuyMcdoooooTipop_Prefix.pch","GCC_PREPROCESSOR_DEFINITIONS":"TI_VERSION=$(TI_VERSION)","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"NO","GCC_WARN_MISSING_PARENTHESES":"NO","GCC_WARN_SHADOW":"NO","GCC_WARN_STRICT_SELECTOR_MATCH":"NO","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_PARAMETER":"NO","GCC_WARN_UNUSED_VALUE":"NO","GCC_WARN_UNUSED_VARIABLE":"NO","INSTALL_PATH":"/usr/local/lib","IPHONEOS_DEPLOYMENT_TARGET":"12.1","OTHER_CFLAGS":"-DTI_POST_1_2","OTHER_LDFLAGS":"-ObjC","PRODUCT_NAME":"GuyMcdoooooTipop","RUN_CLANG_STATIC_ANALYZER":"NO","SDKROOT":"iphoneos","USER_HEADER_SEARCH_PATHS":""},"guid":"2a4102536f17908285d1029bcab6736788a1d6c2cbaed3b0491d934bbe3aa9b7","name":"Release"}],"classPrefix":"","defaultConfigurationName":"Release","developmentRegion":"en","groupTree":{"children":[{"children":[{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367f9d8a543bfd9637634355540398ec668","path":"Classes/GuyMcdoooooTipopModule.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"2a4102536f17908285d1029bcab673679a5f6703969a438fdc8077bfd70cab33","path":"Classes/GuyMcdoooooTipopModule.m","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676ce41782d0c55573a951df6133791578","path":"Classes/FBPOPAnimator.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"2a4102536f17908285d1029bcab673672e746add1b9afee556bcdd4ff4bdf74d","path":"Classes/FBPOPAnimator.m","sourceTree":"","type":"file"}],"guid":"2a4102536f17908285d1029bcab67367b748d7204cf9352f6693bcd286455709","name":"Classes","path":"","sourceTree":"","type":"group"},{"children":[{"children":[{"children":[{"fileType":"text.plist.strings","guid":"2a4102536f17908285d1029bcab67367a10578cfe5955fa6edc64e36bea332f9","path":"en.lproj/InfoPlist.strings","regionVariantName":"en","sourceTree":"","type":"file"}],"guid":"2a4102536f17908285d1029bcab6736784eacf1e3bcc80a6be2e7eef352bb833","name":"InfoPlist.strings","path":"","sourceTree":"","type":"variantGroup"},{"fileTextEncoding":"utf-8","fileType":"text.plist.xml","guid":"2a4102536f17908285d1029bcab6736700fa33800b74bb6cde2ab1f20b63e3a9","path":"pop-Info.plist","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367c5cd440e66c5ba5b551e2ea12c3ff034","path":"POP.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676f5bc0a826474816e4e3e2db881fb807","path":"POPAction.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673672d6d7c330d27717ae7da1a00a4e4a394","path":"POPAnimatableProperty.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367a437a5c1876546e4c2a97017e0a8d699","path":"POPAnimatableProperty.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673675ebd6e9b4b04d97350eebbe8d4fc8330","path":"POPAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab673674dce39f349fcef423b223088c8116766","path":"POPAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367ea1db49d0bdbfda0f0e98119d6d998b5","path":"POPAnimationEvent.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367b8197eae91db67e4f81670931e8ba271","path":"POPAnimationEvent.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367136ac9054312b32582489ab9cd500a46","path":"POPAnimationEventInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673672a7f9b1decc44cac8ffa1feb9d4ad82f","path":"POPAnimationExtras.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab673672db44f1e1110bd8d7179aece991f46f5","path":"POPAnimationExtras.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367a7c72589194c16802a82644d98115dcd","path":"POPAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367520ff038c6bd84fc87f0ea86e85b0d7c","path":"POPAnimationPrivate.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367a9c0334876dbec31dce9c5ece27d60ff","path":"POPAnimationRuntime.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab6736768348bfcc41a9adeec183138d7ba1021","path":"POPAnimationRuntime.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673670eb88a4cff41a652298a1bdf640ba70a","path":"POPAnimationTracer.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367acc437135f2a65e2f0b4bf8090fe3562","path":"POPAnimationTracer.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673678310d5d3c4fd50e4d6f800a8db44d850","path":"POPAnimationTracerInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673674027ebd78ca0daa1361f3fc13a5747b5","path":"POPAnimator.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367ca3936be73ea75285f61bfb6504fb399","path":"POPAnimator.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367195a5f202853b8dc2e2fb8559eb15e15","path":"POPAnimatorPrivate.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367374344d2537d80b040f7476758bd0576","path":"POPBasicAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab673672e43c6e69934c450019618d2ff5ccaaa","path":"POPBasicAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673671f9a027de3985f1f170f00cb42faefac","path":"POPBasicAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673678eff51c89b978fad6d1c0a30c6c53d58","path":"POPCGUtils.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367f947849271008e56914118ad0b23b7a1","path":"POPCGUtils.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367b78ca7d61c59e169eea5bd6b3d46950e","path":"POPCustomAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367f0b1a30d7c8a834ce54af0c8a259967d","path":"POPCustomAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab6736794eaba89e978ef7502723be10bc4b56e","path":"POPDecayAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab673672de9a1c3c89fb9ee6056f28911131c9f","path":"POPDecayAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367bedfedfe9199ebf2ae5f22ca93ad4fb6","path":"POPDecayAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673674a673e5e989bd68063506581d0c3f82b","path":"POPDefines.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676394e27bde1fd4f96ce86201e3f113fe","path":"POPGeometry.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367ac6d2bd335c0c3b2e76c01da6f338a77","path":"POPGeometry.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367992f6951c5ba1eb7ef2fc78577d8df87","path":"POPLayerExtras.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367707051f6c8df34108e6c9b67c38e3e8f","path":"POPLayerExtras.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673671af1c6cdb0da165487f68e0cf50436fd","path":"POPMath.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab6736702f26f062aadd0434ac0d5ed9cf436a4","path":"POPMath.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676eb330cd7367c88c9c45cd9e100ac8f2","path":"POPPropertyAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367953953e697feb363fe0393d3d53ebef4","path":"POPPropertyAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676e68a455bc5477b10924198db537a7c1","path":"POPPropertyAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673672a1eda3d285193f25fc35ebaf28d2188","path":"POPSpringAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367b9f083e8cee2e7a9cf2d954a9aa9a7e7","path":"POPSpringAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367b9958b8fb761ff5ab5d7d53fdfde237d","path":"POPSpringAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673679f48c6b6738e75afba9f02f13782ad53","path":"POPSpringSolver.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab6736779bac3f89460b76ce1e2182e1a9441cd","path":"POPVector.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab6736708971d8ad2719c4e2a6ecad2e10315c0","path":"POPVector.mm","sourceTree":"","type":"file"},{"children":[{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676db70696d85c1b739973c59d77ed4ce1","path":"FloatConversion.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.cpp","guid":"2a4102536f17908285d1029bcab67367490f8d5b3aedf0c5a655d70000b05cd8","path":"TransformationMatrix.cpp","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673670477cf0eefe6dc0273a15133daf27952","path":"TransformationMatrix.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367128a04207983005889f50ae5ed409bcc","path":"UnitBezier.h","sourceTree":"","type":"file"}],"guid":"2a4102536f17908285d1029bcab67367a477123f5733bb559744cca01cce5bbd","name":"WebCore","path":"WebCore","sourceTree":"","type":"group"}],"guid":"2a4102536f17908285d1029bcab67367b5421fff39afc8b6a7813c4eeaa6a572","name":"pop","path":"Classes/pop","sourceTree":"","type":"group"},{"children":[{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367df89afd2351f08331708ce72d67a9f13","path":"Classes/CAMediaTimingFunction+ExtendedFunc.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"2a4102536f17908285d1029bcab6736785de645dc90624f9c0d0917bcd5a2afd","path":"Classes/CAMediaTimingFunction+ExtendedFunc.m","sourceTree":"","type":"file"}],"guid":"2a4102536f17908285d1029bcab6736770c6f9072ecbaadcc0fd04ecd1feda31","name":"CAMediaTimingFunction+ExtendedFunc","path":"","sourceTree":"","type":"group"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673678b1a1cfd30650ef9ca46d3b2ba748132","path":"GuyMcdoooooTipop_Prefix.pch","sourceTree":"SOURCE_ROOT","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367ca8baead07dfcbbd1d389cebc5a949b4","path":"Classes/GuyMcdoooooTipopModuleAssets.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"2a4102536f17908285d1029bcab673673053bab69af10591ea831e1e6e159868","path":"Classes/GuyMcdoooooTipopModuleAssets.m","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"text.xcconfig","guid":"2a4102536f17908285d1029bcab673671ab9ad58b4eeed64a1fca40bbfdec1f1","path":"titanium.xcconfig","sourceTree":"","type":"file"}],"guid":"2a4102536f17908285d1029bcab6736756e17473ed6ca51563a84bae8d1d010c","name":"Other Sources","path":"","sourceTree":"","type":"group"},{"children":[{"fileType":"wrapper.xcframework","guid":"2a4102536f17908285d1029bcab67367c7dd94f5ddae56a646898cd9e43f12af","path":"../../GuyMcdoooooTipop/ios/$(TITANIUM_SDK)/iphone/Frameworks/TitaniumKit.xcframework","sourceTree":"","type":"file"},{"fileType":"wrapper.framework","guid":"2a4102536f17908285d1029bcab673679261c44e8adf51c81b9bf505497c0b33","path":"System/Library/Frameworks/Foundation.framework","sourceTree":"SDKROOT","type":"file"},{"fileType":"wrapper.framework","guid":"2a4102536f17908285d1029bcab67367931d6996d0a4fb6be6a97f040381db06","path":"System/Library/Frameworks/SceneKit.framework","sourceTree":"SDKROOT","type":"file"}],"guid":"2a4102536f17908285d1029bcab673675980b504713f9c12fa2d45628f2e2ebc","name":"Frameworks","path":"","sourceTree":"","type":"group"},{"guid":"2a4102536f17908285d1029bcab67367c92b5c8146d259580683b2251576f075","name":"Products","path":"","sourceTree":"","type":"group"}],"guid":"2a4102536f17908285d1029bcab67367ca4e1a48decbe404ed2be3b332bfe67e","name":"tipop","path":"","sourceTree":"","type":"group"},"guid":"2a4102536f17908285d1029bcab67367","path":"/Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj","projectDirectory":"/Users/marcbender/Downloads/tipop-master-2/iphone","targets":["TARGET@v11_hash=fcc4133b738b1e22c0f1a28ca0a40c03","TARGET@v11_hash=0eb15ecb24c134556c87a3eb4d010918"]} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/project/PROJECT@v11_mod=1631552761.470097_hash=2a4102536f17908285d1029bcab67367-json b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/project/PROJECT@v11_mod=1631552761.470097_hash=2a4102536f17908285d1029bcab67367-json new file mode 100644 index 0000000..51763de --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/project/PROJECT@v11_mod=1631552761.470097_hash=2a4102536f17908285d1029bcab67367-json @@ -0,0 +1 @@ +{"appPreferencesBuildSettings":{},"buildConfigurations":[{"baseConfigurationFileReference":"2a4102536f17908285d1029bcab673671ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED":"YES","CLANG_CXX_LIBRARY":"compiler-default","CLANG_ENABLE_MODULES":"YES","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"iPhone Developer","DSTROOT":"/tmp/GuyMcdoooooTipop.dst","ENABLE_STRICT_OBJC_MSGSEND":"YES","ENABLE_TESTABILITY":"YES","FRAMEWORK_SEARCH_PATHS[arch=*]":"/Users/logicdesign/Library/Developer/Xcode/DerivedData/tipop-cvetucwqxuhcoddipwtykqjcrwep/Build/Products/Debug-iphoneos/pop.framework","GCC_C_LANGUAGE_STANDARD":"c99","GCC_NO_COMMON_BLOCKS":"YES","GCC_OPTIMIZATION_LEVEL":"0","GCC_PRECOMPILE_PREFIX_HEADER":"YES","GCC_PREFIX_HEADER":"GuyMcdoooooTipop_Prefix.pch","GCC_PREPROCESSOR_DEFINITIONS":"TI_VERSION=$(TI_VERSION)","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"NO","GCC_WARN_MISSING_PARENTHESES":"NO","GCC_WARN_SHADOW":"NO","GCC_WARN_STRICT_SELECTOR_MATCH":"NO","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_PARAMETER":"NO","GCC_WARN_UNUSED_VALUE":"NO","GCC_WARN_UNUSED_VARIABLE":"NO","INSTALL_PATH":"/usr/local/lib","IPHONEOS_DEPLOYMENT_TARGET":"12.1","ONLY_ACTIVE_ARCH":"YES","OTHER_CFLAGS":"-DDEBUG -DTI_POST_1_2","OTHER_LDFLAGS":"-ObjC","PRODUCT_NAME":"GuyMcdoooooTipop","PROVISIONING_PROFILE":"","PROVISIONING_PROFILE[sdk=iphoneos*]":"","RUN_CLANG_STATIC_ANALYZER":"NO","SDKROOT":"iphoneos","USER_HEADER_SEARCH_PATHS":""},"guid":"2a4102536f17908285d1029bcab673679b81f74252e7abd9be0737b64348d4fc","name":"Debug"},{"baseConfigurationFileReference":"2a4102536f17908285d1029bcab673671ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"ALWAYS_SEARCH_USER_PATHS":"NO","CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED":"YES","CLANG_CXX_LIBRARY":"compiler-default","CLANG_ENABLE_MODULES":"YES","CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING":"YES","CLANG_WARN_BOOL_CONVERSION":"YES","CLANG_WARN_COMMA":"YES","CLANG_WARN_CONSTANT_CONVERSION":"YES","CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS":"YES","CLANG_WARN_EMPTY_BODY":"YES","CLANG_WARN_ENUM_CONVERSION":"YES","CLANG_WARN_INFINITE_RECURSION":"YES","CLANG_WARN_INT_CONVERSION":"YES","CLANG_WARN_NON_LITERAL_NULL_CONVERSION":"YES","CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF":"YES","CLANG_WARN_OBJC_LITERAL_CONVERSION":"YES","CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER":"YES","CLANG_WARN_RANGE_LOOP_ANALYSIS":"YES","CLANG_WARN_STRICT_PROTOTYPES":"YES","CLANG_WARN_SUSPICIOUS_MOVE":"YES","CLANG_WARN_UNREACHABLE_CODE":"YES","CLANG_WARN__DUPLICATE_METHOD_MATCH":"YES","DSTROOT":"/tmp/GuyMcdoooooTipop.dst","ENABLE_STRICT_OBJC_MSGSEND":"YES","FRAMEWORK_SEARCH_PATHS[arch=*]":"/Users/logicdesign/Library/Developer/Xcode/DerivedData/tipop-cvetucwqxuhcoddipwtykqjcrwep/Build/Products/Debug-iphoneos/pop.framework","GCC_C_LANGUAGE_STANDARD":"c99","GCC_MODEL_TUNING":"G5","GCC_NO_COMMON_BLOCKS":"YES","GCC_PRECOMPILE_PREFIX_HEADER":"YES","GCC_PREFIX_HEADER":"GuyMcdoooooTipop_Prefix.pch","GCC_PREPROCESSOR_DEFINITIONS":"TI_VERSION=$(TI_VERSION)","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"","GCC_WARN_64_TO_32_BIT_CONVERSION":"YES","GCC_WARN_ABOUT_RETURN_TYPE":"NO","GCC_WARN_MISSING_PARENTHESES":"NO","GCC_WARN_SHADOW":"NO","GCC_WARN_STRICT_SELECTOR_MATCH":"NO","GCC_WARN_UNDECLARED_SELECTOR":"YES","GCC_WARN_UNINITIALIZED_AUTOS":"YES","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_PARAMETER":"NO","GCC_WARN_UNUSED_VALUE":"NO","GCC_WARN_UNUSED_VARIABLE":"NO","INSTALL_PATH":"/usr/local/lib","IPHONEOS_DEPLOYMENT_TARGET":"12.1","OTHER_CFLAGS":"-DTI_POST_1_2","OTHER_LDFLAGS":"-ObjC","PRODUCT_NAME":"GuyMcdoooooTipop","RUN_CLANG_STATIC_ANALYZER":"NO","SDKROOT":"iphoneos","USER_HEADER_SEARCH_PATHS":""},"guid":"2a4102536f17908285d1029bcab6736788a1d6c2cbaed3b0491d934bbe3aa9b7","name":"Release"}],"classPrefix":"","defaultConfigurationName":"Release","developmentRegion":"en","groupTree":{"children":[{"children":[{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367f9d8a543bfd9637634355540398ec668","path":"Classes/GuyMcdoooooTipopModule.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"2a4102536f17908285d1029bcab673679a5f6703969a438fdc8077bfd70cab33","path":"Classes/GuyMcdoooooTipopModule.m","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676ce41782d0c55573a951df6133791578","path":"Classes/FBPOPAnimator.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"2a4102536f17908285d1029bcab673672e746add1b9afee556bcdd4ff4bdf74d","path":"Classes/FBPOPAnimator.m","sourceTree":"","type":"file"}],"guid":"2a4102536f17908285d1029bcab67367b748d7204cf9352f6693bcd286455709","name":"Classes","path":"","sourceTree":"","type":"group"},{"children":[{"children":[{"children":[{"fileType":"text.plist.strings","guid":"2a4102536f17908285d1029bcab67367a10578cfe5955fa6edc64e36bea332f9","path":"en.lproj/InfoPlist.strings","regionVariantName":"en","sourceTree":"","type":"file"}],"guid":"2a4102536f17908285d1029bcab6736784eacf1e3bcc80a6be2e7eef352bb833","name":"InfoPlist.strings","path":"","sourceTree":"","type":"variantGroup"},{"fileTextEncoding":"utf-8","fileType":"text.plist.xml","guid":"2a4102536f17908285d1029bcab6736700fa33800b74bb6cde2ab1f20b63e3a9","path":"pop-Info.plist","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367c5cd440e66c5ba5b551e2ea12c3ff034","path":"POP.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676f5bc0a826474816e4e3e2db881fb807","path":"POPAction.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673672d6d7c330d27717ae7da1a00a4e4a394","path":"POPAnimatableProperty.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367a437a5c1876546e4c2a97017e0a8d699","path":"POPAnimatableProperty.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673675ebd6e9b4b04d97350eebbe8d4fc8330","path":"POPAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab673674dce39f349fcef423b223088c8116766","path":"POPAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367ea1db49d0bdbfda0f0e98119d6d998b5","path":"POPAnimationEvent.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367b8197eae91db67e4f81670931e8ba271","path":"POPAnimationEvent.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367136ac9054312b32582489ab9cd500a46","path":"POPAnimationEventInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673672a7f9b1decc44cac8ffa1feb9d4ad82f","path":"POPAnimationExtras.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab673672db44f1e1110bd8d7179aece991f46f5","path":"POPAnimationExtras.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367a7c72589194c16802a82644d98115dcd","path":"POPAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367520ff038c6bd84fc87f0ea86e85b0d7c","path":"POPAnimationPrivate.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367a9c0334876dbec31dce9c5ece27d60ff","path":"POPAnimationRuntime.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab6736768348bfcc41a9adeec183138d7ba1021","path":"POPAnimationRuntime.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673670eb88a4cff41a652298a1bdf640ba70a","path":"POPAnimationTracer.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367acc437135f2a65e2f0b4bf8090fe3562","path":"POPAnimationTracer.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673678310d5d3c4fd50e4d6f800a8db44d850","path":"POPAnimationTracerInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673674027ebd78ca0daa1361f3fc13a5747b5","path":"POPAnimator.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367ca3936be73ea75285f61bfb6504fb399","path":"POPAnimator.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367195a5f202853b8dc2e2fb8559eb15e15","path":"POPAnimatorPrivate.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367374344d2537d80b040f7476758bd0576","path":"POPBasicAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab673672e43c6e69934c450019618d2ff5ccaaa","path":"POPBasicAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673671f9a027de3985f1f170f00cb42faefac","path":"POPBasicAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673678eff51c89b978fad6d1c0a30c6c53d58","path":"POPCGUtils.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367f947849271008e56914118ad0b23b7a1","path":"POPCGUtils.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367b78ca7d61c59e169eea5bd6b3d46950e","path":"POPCustomAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367f0b1a30d7c8a834ce54af0c8a259967d","path":"POPCustomAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab6736794eaba89e978ef7502723be10bc4b56e","path":"POPDecayAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab673672de9a1c3c89fb9ee6056f28911131c9f","path":"POPDecayAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367bedfedfe9199ebf2ae5f22ca93ad4fb6","path":"POPDecayAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673674a673e5e989bd68063506581d0c3f82b","path":"POPDefines.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676394e27bde1fd4f96ce86201e3f113fe","path":"POPGeometry.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367ac6d2bd335c0c3b2e76c01da6f338a77","path":"POPGeometry.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367992f6951c5ba1eb7ef2fc78577d8df87","path":"POPLayerExtras.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367707051f6c8df34108e6c9b67c38e3e8f","path":"POPLayerExtras.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673671af1c6cdb0da165487f68e0cf50436fd","path":"POPMath.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab6736702f26f062aadd0434ac0d5ed9cf436a4","path":"POPMath.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676eb330cd7367c88c9c45cd9e100ac8f2","path":"POPPropertyAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367953953e697feb363fe0393d3d53ebef4","path":"POPPropertyAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676e68a455bc5477b10924198db537a7c1","path":"POPPropertyAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673672a1eda3d285193f25fc35ebaf28d2188","path":"POPSpringAnimation.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab67367b9f083e8cee2e7a9cf2d954a9aa9a7e7","path":"POPSpringAnimation.mm","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367b9958b8fb761ff5ab5d7d53fdfde237d","path":"POPSpringAnimationInternal.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673679f48c6b6738e75afba9f02f13782ad53","path":"POPSpringSolver.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab6736779bac3f89460b76ce1e2182e1a9441cd","path":"POPVector.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.objcpp","guid":"2a4102536f17908285d1029bcab6736708971d8ad2719c4e2a6ecad2e10315c0","path":"POPVector.mm","sourceTree":"","type":"file"},{"children":[{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673676db70696d85c1b739973c59d77ed4ce1","path":"FloatConversion.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.cpp.cpp","guid":"2a4102536f17908285d1029bcab67367490f8d5b3aedf0c5a655d70000b05cd8","path":"TransformationMatrix.cpp","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673670477cf0eefe6dc0273a15133daf27952","path":"TransformationMatrix.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367128a04207983005889f50ae5ed409bcc","path":"UnitBezier.h","sourceTree":"","type":"file"}],"guid":"2a4102536f17908285d1029bcab67367a477123f5733bb559744cca01cce5bbd","name":"WebCore","path":"WebCore","sourceTree":"","type":"group"}],"guid":"2a4102536f17908285d1029bcab67367b5421fff39afc8b6a7813c4eeaa6a572","name":"pop","path":"Classes/pop","sourceTree":"","type":"group"},{"children":[{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367df89afd2351f08331708ce72d67a9f13","path":"Classes/CAMediaTimingFunction+ExtendedFunc.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"2a4102536f17908285d1029bcab6736785de645dc90624f9c0d0917bcd5a2afd","path":"Classes/CAMediaTimingFunction+ExtendedFunc.m","sourceTree":"","type":"file"}],"guid":"2a4102536f17908285d1029bcab6736770c6f9072ecbaadcc0fd04ecd1feda31","name":"CAMediaTimingFunction+ExtendedFunc","path":"","sourceTree":"","type":"group"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab673678b1a1cfd30650ef9ca46d3b2ba748132","path":"GuyMcdoooooTipop_Prefix.pch","sourceTree":"SOURCE_ROOT","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.h","guid":"2a4102536f17908285d1029bcab67367ca8baead07dfcbbd1d389cebc5a949b4","path":"Classes/GuyMcdoooooTipopModuleAssets.h","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"sourcecode.c.objc","guid":"2a4102536f17908285d1029bcab673673053bab69af10591ea831e1e6e159868","path":"Classes/GuyMcdoooooTipopModuleAssets.m","sourceTree":"","type":"file"},{"fileTextEncoding":"utf-8","fileType":"text.xcconfig","guid":"2a4102536f17908285d1029bcab673671ab9ad58b4eeed64a1fca40bbfdec1f1","path":"titanium.xcconfig","sourceTree":"","type":"file"}],"guid":"2a4102536f17908285d1029bcab6736756e17473ed6ca51563a84bae8d1d010c","name":"Other Sources","path":"","sourceTree":"","type":"group"},{"children":[{"fileType":"wrapper.xcframework","guid":"2a4102536f17908285d1029bcab67367c7dd94f5ddae56a646898cd9e43f12af","path":"$(TITANIUM_SDK)/iphone/Frameworks/TitaniumKit.xcframework","sourceTree":"","type":"file"},{"fileType":"wrapper.framework","guid":"2a4102536f17908285d1029bcab673679261c44e8adf51c81b9bf505497c0b33","path":"System/Library/Frameworks/Foundation.framework","sourceTree":"SDKROOT","type":"file"},{"fileType":"wrapper.framework","guid":"2a4102536f17908285d1029bcab67367931d6996d0a4fb6be6a97f040381db06","path":"System/Library/Frameworks/SceneKit.framework","sourceTree":"SDKROOT","type":"file"}],"guid":"2a4102536f17908285d1029bcab673675980b504713f9c12fa2d45628f2e2ebc","name":"Frameworks","path":"","sourceTree":"","type":"group"},{"guid":"2a4102536f17908285d1029bcab67367c92b5c8146d259580683b2251576f075","name":"Products","path":"","sourceTree":"","type":"group"}],"guid":"2a4102536f17908285d1029bcab67367ca4e1a48decbe404ed2be3b332bfe67e","name":"tipop","path":"","sourceTree":"","type":"group"},"guid":"2a4102536f17908285d1029bcab67367","path":"/Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj","projectDirectory":"/Users/marcbender/Downloads/tipop-master-2/iphone","targets":["TARGET@v11_hash=fcc4133b738b1e22c0f1a28ca0a40c03","TARGET@v11_hash=0eb15ecb24c134556c87a3eb4d010918"]} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=0e66b5b1499a37133bdf69bca490e663-json b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=0e66b5b1499a37133bdf69bca490e663-json new file mode 100644 index 0000000..9e08ad3 --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=0e66b5b1499a37133bdf69bca490e663-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"d1d02f3c366ce2d9916f628a00f841ff1ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"NO","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_WARN_BOOL_CONVERSION":"$(CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION)","CLANG_WARN_CONSTANT_CONVERSION":"$(CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION)","CLANG_WARN_EMPTY_BODY":"YES","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"iPhone Developer","DEFINES_MODULE":"NO","DSTROOT":"/tmp/GuyMcdoooooTipop.dst","FRAMEWORK_SEARCH_PATHS":"$(inherited) $(PROJECT_DIR)","FRAMEWORK_SEARCH_PATHS[arch=*]":"","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_OPTIMIZATION_LEVEL":"0","GCC_PRECOMPILE_PREFIX_HEADER":"YES","GCC_PREFIX_HEADER":"GuyMcdoooooTipop_Prefix.pch","GCC_PREPROCESSOR_DEFINITIONS":"TI_VERSION=$(TI_VERSION)","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"","GCC_WARN_ABOUT_RETURN_TYPE":"NO","GCC_WARN_MISSING_PARENTHESES":"NO","GCC_WARN_SHADOW":"NO","GCC_WARN_STRICT_SELECTOR_MATCH":"NO","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_PARAMETER":"NO","GCC_WARN_UNUSED_VALUE":"NO","GCC_WARN_UNUSED_VARIABLE":"NO","INSTALL_PATH":"/usr/local/lib","IPHONEOS_DEPLOYMENT_TARGET":"12.1","LIBRARY_SEARCH_PATHS":"","OTHER_CFLAGS":"-DDEBUG -DTI_POST_1_2","OTHER_LDFLAGS":"","PRODUCT_NAME":"GuyMcdoooooTipop","PROVISIONING_PROFILE":"","PROVISIONING_PROFILE[sdk=iphoneos*]":"","RUN_CLANG_STATIC_ANALYZER":"NO","SDKROOT":"iphoneos","USER_HEADER_SEARCH_PATHS":""},"guid":"d1d02f3c366ce2d9916f628a00f841ff9adc0c73d385a3a1ed109e81423c87dd","name":"Debug"},{"baseConfigurationFileReference":"d1d02f3c366ce2d9916f628a00f841ff1ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"ALWAYS_SEARCH_USER_PATHS":"NO","CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"NO","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_WARN_BOOL_CONVERSION":"$(CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION)","CLANG_WARN_CONSTANT_CONVERSION":"$(CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION)","CLANG_WARN_EMPTY_BODY":"YES","DEFINES_MODULE":"NO","DSTROOT":"/tmp/GuyMcdoooooTipop.dst","FRAMEWORK_SEARCH_PATHS":"$(inherited) $(PROJECT_DIR)","FRAMEWORK_SEARCH_PATHS[arch=*]":"","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_MODEL_TUNING":"G5","GCC_PRECOMPILE_PREFIX_HEADER":"YES","GCC_PREFIX_HEADER":"GuyMcdoooooTipop_Prefix.pch","GCC_PREPROCESSOR_DEFINITIONS":"TI_VERSION=$(TI_VERSION)","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"","GCC_WARN_ABOUT_RETURN_TYPE":"NO","GCC_WARN_MISSING_PARENTHESES":"NO","GCC_WARN_SHADOW":"NO","GCC_WARN_STRICT_SELECTOR_MATCH":"NO","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_PARAMETER":"NO","GCC_WARN_UNUSED_VALUE":"NO","GCC_WARN_UNUSED_VARIABLE":"NO","INSTALL_PATH":"/usr/local/lib","IPHONEOS_DEPLOYMENT_TARGET":"12.1","LIBRARY_SEARCH_PATHS":"","OTHER_CFLAGS":"-DTI_POST_1_2","OTHER_LDFLAGS":"","PRODUCT_NAME":"GuyMcdoooooTipop","RUN_CLANG_STATIC_ANALYZER":"NO","SDKROOT":"iphoneos","USER_HEADER_SEARCH_PATHS":""},"guid":"d1d02f3c366ce2d9916f628a00f841ff55b1ae4b823ccb5f6c7adaf771f732c1","name":"Release"}],"buildPhases":[{"buildFiles":[{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff0477cf0eefe6dc0273a15133daf27952","guid":"d1d02f3c366ce2d9916f628a00f841ff21fd7457182851399ac28aa1e79d16ec"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff2a7f9b1decc44cac8ffa1feb9d4ad82f","guid":"d1d02f3c366ce2d9916f628a00f841ff3a306253e2856ad01a7978ba44b84c18"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff520ff038c6bd84fc87f0ea86e85b0d7c","guid":"d1d02f3c366ce2d9916f628a00f841ffde4c46f53473b59cb34622b58b050b55"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff0eb88a4cff41a652298a1bdf640ba70a","guid":"d1d02f3c366ce2d9916f628a00f841ff94d8b8c7b52489a4557f5d023a4ad304"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffbedfedfe9199ebf2ae5f22ca93ad4fb6","guid":"d1d02f3c366ce2d9916f628a00f841ffaf0f242380459fcb9493437886dd9882"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff6eb330cd7367c88c9c45cd9e100ac8f2","guid":"d1d02f3c366ce2d9916f628a00f841ffd035bf6c8b56d79df76e08e6b99fcf4a"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff79bac3f89460b76ce1e2182e1a9441cd","guid":"d1d02f3c366ce2d9916f628a00f841ffa12c6b47ba183fbf913f213046cc8776"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff6394e27bde1fd4f96ce86201e3f113fe","guid":"d1d02f3c366ce2d9916f628a00f841ff29b0a63f56278bd8c7727b27d0c21b73"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff2a1eda3d285193f25fc35ebaf28d2188","guid":"d1d02f3c366ce2d9916f628a00f841ffb834ed739e1c3c90b679b2d543e7479f"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffa9c0334876dbec31dce9c5ece27d60ff","guid":"d1d02f3c366ce2d9916f628a00f841ff7be831b03b98fbbe00ab664b689916c1"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff9f48c6b6738e75afba9f02f13782ad53","guid":"d1d02f3c366ce2d9916f628a00f841ffea08d036537e25dd4f8834773120efba"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff6f5bc0a826474816e4e3e2db881fb807","guid":"d1d02f3c366ce2d9916f628a00f841ff03c6966cff6ef42fc6ce512b878526c3"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff195a5f202853b8dc2e2fb8559eb15e15","guid":"d1d02f3c366ce2d9916f628a00f841ff427b2a5d9c7b0c662212c1390b2bdff4"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff6ce41782d0c55573a951df6133791578","guid":"d1d02f3c366ce2d9916f628a00f841ff5c2cb92bcd076b8266eeb140b24fef1a"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff2d6d7c330d27717ae7da1a00a4e4a394","guid":"d1d02f3c366ce2d9916f628a00f841fffa5f6e3cb4574b9acb9c5f0b494aec3d"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff992f6951c5ba1eb7ef2fc78577d8df87","guid":"d1d02f3c366ce2d9916f628a00f841ff002d3807654a4007914a6ad379ce6fab"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff6db70696d85c1b739973c59d77ed4ce1","guid":"d1d02f3c366ce2d9916f628a00f841ff7c7167ba03cfcbcc8e5fdf6dfa632d68"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff8b1a1cfd30650ef9ca46d3b2ba748132","guid":"d1d02f3c366ce2d9916f628a00f841ff8dab37e81f9507a1c7ab02c2438712c6"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff374344d2537d80b040f7476758bd0576","guid":"d1d02f3c366ce2d9916f628a00f841ff27119c5f28ebbdaef5904675b1009f08"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff6e68a455bc5477b10924198db537a7c1","guid":"d1d02f3c366ce2d9916f628a00f841ff401f35f0086bb9d395aaa768267e3ab8"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffa7c72589194c16802a82644d98115dcd","guid":"d1d02f3c366ce2d9916f628a00f841ffe254c6d8097bb408736a3320706a2c6b"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffdf89afd2351f08331708ce72d67a9f13","guid":"d1d02f3c366ce2d9916f628a00f841ffb2ae2b13dccb1c32dd11188ff9270691"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff8eff51c89b978fad6d1c0a30c6c53d58","guid":"d1d02f3c366ce2d9916f628a00f841ff060e215f11af3d9742c541f13a826917"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffb9958b8fb761ff5ab5d7d53fdfde237d","guid":"d1d02f3c366ce2d9916f628a00f841ff40254073146319873e77d8ce7e04687e"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff94eaba89e978ef7502723be10bc4b56e","guid":"d1d02f3c366ce2d9916f628a00f841ff8c68de5bd0df0f09f6c365ad3179b386"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffea1db49d0bdbfda0f0e98119d6d998b5","guid":"d1d02f3c366ce2d9916f628a00f841ff7871ee143bce41b62a6e186bd38964d9"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffb78ca7d61c59e169eea5bd6b3d46950e","guid":"d1d02f3c366ce2d9916f628a00f841ffbbd105790085e5fc1c1f09faf9864fd3"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff5ebd6e9b4b04d97350eebbe8d4fc8330","guid":"d1d02f3c366ce2d9916f628a00f841ffc7c76f0a197463b1a5a2ca79a9926a97"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff128a04207983005889f50ae5ed409bcc","guid":"d1d02f3c366ce2d9916f628a00f841ff71e3bd72caea8cf276fc722d06578d33"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff136ac9054312b32582489ab9cd500a46","guid":"d1d02f3c366ce2d9916f628a00f841ff694461fc7aca4e019819ba9cc7f3e191"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841fff9d8a543bfd9637634355540398ec668","guid":"d1d02f3c366ce2d9916f628a00f841ffebfadfbb8c1a48229d39560f3f613654"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff1f9a027de3985f1f170f00cb42faefac","guid":"d1d02f3c366ce2d9916f628a00f841ffb59f99b0796e061cf85e75211dc8c6fd"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffca8baead07dfcbbd1d389cebc5a949b4","guid":"d1d02f3c366ce2d9916f628a00f841ff89aa26f4f2df05a604fa6ce46c104dbc"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff4027ebd78ca0daa1361f3fc13a5747b5","guid":"d1d02f3c366ce2d9916f628a00f841ff5e39b2ee3318fbc43bdc11c93b9444a3"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff1af1c6cdb0da165487f68e0cf50436fd","guid":"d1d02f3c366ce2d9916f628a00f841ff82ab003dd6e91a731b8dc28c89648075"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff4a673e5e989bd68063506581d0c3f82b","guid":"d1d02f3c366ce2d9916f628a00f841fff681d5e32e2ee9d103e8fc1431c23a3a"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffc5cd440e66c5ba5b551e2ea12c3ff034","guid":"d1d02f3c366ce2d9916f628a00f841ff4856488b57f001df0fd9516bd62f2820"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff8310d5d3c4fd50e4d6f800a8db44d850","guid":"d1d02f3c366ce2d9916f628a00f841ff1792cedd72aa9ef1030e909d6ee8503b"}],"guid":"d1d02f3c366ce2d9916f628a00f841ff7ed2a460469186fd4553e7d30d5ba496","type":"com.apple.buildphase.headers"},{"buildFiles":[{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff85de645dc90624f9c0d0917bcd5a2afd","guid":"d1d02f3c366ce2d9916f628a00f841ff81a4c4e49999cfbdee4529df534ccc97"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff9a5f6703969a438fdc8077bfd70cab33","guid":"d1d02f3c366ce2d9916f628a00f841ff3e7c6cfcb2462c36e9e1174ee3b0a1fe"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff68348bfcc41a9adeec183138d7ba1021","guid":"d1d02f3c366ce2d9916f628a00f841ff56d13951a6a41dc1354e03e418867ea7"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff953953e697feb363fe0393d3d53ebef4","guid":"d1d02f3c366ce2d9916f628a00f841ff98d128d6930c731ad3ff48b4a8f1867d"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffb8197eae91db67e4f81670931e8ba271","guid":"d1d02f3c366ce2d9916f628a00f841ff36c9b2b525a4485003f9e227a1fa1b42"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffac6d2bd335c0c3b2e76c01da6f338a77","guid":"d1d02f3c366ce2d9916f628a00f841fff2793a17df0cf5c041aa9b9e827ce5af"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff3053bab69af10591ea831e1e6e159868","guid":"d1d02f3c366ce2d9916f628a00f841ffdfe7764b9d1bcbdd7767ba602b6dc161"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff08971d8ad2719c4e2a6ecad2e10315c0","guid":"d1d02f3c366ce2d9916f628a00f841ff570cea67cf459110bf7648dd309a19a9"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841fff947849271008e56914118ad0b23b7a1","guid":"d1d02f3c366ce2d9916f628a00f841ffb6c7c8ccd640369a11a796e7dab4e78f"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffca3936be73ea75285f61bfb6504fb399","guid":"d1d02f3c366ce2d9916f628a00f841ff48c16606c6b69cde3a4c890136d486c8"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff490f8d5b3aedf0c5a655d70000b05cd8","guid":"d1d02f3c366ce2d9916f628a00f841ffeb1c19e0ad6b3581fbdc8cbd3523ca60"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff707051f6c8df34108e6c9b67c38e3e8f","guid":"d1d02f3c366ce2d9916f628a00f841ffa8be09cfa18f2e3862231198de72829e"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff2de9a1c3c89fb9ee6056f28911131c9f","guid":"d1d02f3c366ce2d9916f628a00f841ff461ccb86cc6be42a98eaab0ae3e32298"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff2e43c6e69934c450019618d2ff5ccaaa","guid":"d1d02f3c366ce2d9916f628a00f841ffce6b9ac5c03a39cd5ef66228364d9d16"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffb9f083e8cee2e7a9cf2d954a9aa9a7e7","guid":"d1d02f3c366ce2d9916f628a00f841ffa811e6a5a3fef67eaf3d8c60432f4cb3"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff2db44f1e1110bd8d7179aece991f46f5","guid":"d1d02f3c366ce2d9916f628a00f841ff52a6498e86b079af822986fa7ba5ef2f"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff2e746add1b9afee556bcdd4ff4bdf74d","guid":"d1d02f3c366ce2d9916f628a00f841ffd5f857a74399a7c3a42871e4274e92ca"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff02f26f062aadd0434ac0d5ed9cf436a4","guid":"d1d02f3c366ce2d9916f628a00f841ffa29adeba9ba831eea2f3e345710ce4fa"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffacc437135f2a65e2f0b4bf8090fe3562","guid":"d1d02f3c366ce2d9916f628a00f841ffd78b5636ebe0c09197c0d79875d237ca"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff4dce39f349fcef423b223088c8116766","guid":"d1d02f3c366ce2d9916f628a00f841fff2782c4b8c41a8fe75ef3019f5d64397"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffa437a5c1876546e4c2a97017e0a8d699","guid":"d1d02f3c366ce2d9916f628a00f841ffa40146f5288293d179b737368f7d4b73"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841fff0b1a30d7c8a834ce54af0c8a259967d","guid":"d1d02f3c366ce2d9916f628a00f841ffa39065c5dbca45342955d83405d67542"}],"guid":"d1d02f3c366ce2d9916f628a00f841ff0d32490aa660aef98646b4898ea1f0cc","type":"com.apple.buildphase.sources"},{"buildFiles":[{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff9261c44e8adf51c81b9bf505497c0b33","guid":"d1d02f3c366ce2d9916f628a00f841ffc275b5e28ee55078473bfa46d1b7c0c4"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff931d6996d0a4fb6be6a97f040381db06","guid":"d1d02f3c366ce2d9916f628a00f841ff9cd8c821160c4415cee7205453728e9d"}],"guid":"d1d02f3c366ce2d9916f628a00f841ff77d87ec464ac6336da843967e13cab40","type":"com.apple.buildphase.frameworks"}],"buildRules":[],"dependencies":[],"guid":"d1d02f3c366ce2d9916f628a00f841ffa09fb951c034171470b90f08d9b4d082","name":"tipop","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Objective-C-Plus-Plus","productReference":{"guid":"d1d02f3c366ce2d9916f628a00f841ffb754e1749123d559fec74bdd7d06ac57","name":"libGuyMcdoooooTipop.a","type":"product"},"productTypeIdentifier":"com.apple.product-type.library.static","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"","configurationName":"Debug","legacyTeamID":"","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"","configurationName":"Release","legacyTeamID":"","provisioningStyle":0}],"type":"standard"} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=0eb15ecb24c134556c87a3eb4d010918-json b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=0eb15ecb24c134556c87a3eb4d010918-json new file mode 100644 index 0000000..2fddeea --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=0eb15ecb24c134556c87a3eb4d010918-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"2a4102536f17908285d1029bcab673671ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"YES","COPY_PHASE_STRIP":"NO","GCC_DYNAMIC_NO_PIC":"NO","GCC_OPTIMIZATION_LEVEL":"0","PRODUCT_NAME":"Build & test"},"guid":"2a4102536f17908285d1029bcab673673bbac2ceba60b14f7890b4a59a4badbf","name":"Debug"},{"baseConfigurationFileReference":"2a4102536f17908285d1029bcab673671ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"YES","COPY_PHASE_STRIP":"YES","DEBUG_INFORMATION_FORMAT":"dwarf-with-dsym","PRODUCT_NAME":"Build & test","ZERO_LINK":"NO"},"guid":"2a4102536f17908285d1029bcab673670c5837586bac039a6c63e2f855a5a717","name":"Release"}],"buildPhases":[{"alwaysOutOfDate":"false","buildFiles":[],"emitEnvironment":"true","guid":"2a4102536f17908285d1029bcab673677d1f5aeb860dfcb40256481bb18b8806","inputFileListPaths":[],"inputFilePaths":[],"name":"Run Script","originalObjectID":"24416B8011C4CA220047AFDD","outputFileListPaths":[],"outputFilePaths":[],"scriptContents":"# shell script goes here\n\npython \"${TITANIUM_SDK}/titanium.py\" run --dir=\"${PROJECT_DIR}\"\nexit $?\n","shellPath":"/bin/sh","type":"com.apple.buildphase.shell-script"}],"buildRules":[],"dependencies":[{"guid":"2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082","name":"tipop"}],"guid":"2a4102536f17908285d1029bcab67367d3fd11790347481c51bc8982edd94220","name":"Build & Test","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"","configurationName":"Debug","legacyTeamID":"","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"","configurationName":"Release","legacyTeamID":"","provisioningStyle":0}],"type":"aggregate"} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=0f923968f29a11289f3d0497331ff26b-json b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=0f923968f29a11289f3d0497331ff26b-json new file mode 100644 index 0000000..bc700a1 --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=0f923968f29a11289f3d0497331ff26b-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"2a4102536f17908285d1029bcab673671ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"NO","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_WARN_BOOL_CONVERSION":"$(CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION)","CLANG_WARN_CONSTANT_CONVERSION":"$(CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION)","CLANG_WARN_EMPTY_BODY":"YES","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"iPhone Developer","DEFINES_MODULE":"NO","DSTROOT":"/tmp/GuyMcdoooooTipop.dst","FRAMEWORK_SEARCH_PATHS":"$(inherited) $(PROJECT_DIR)","FRAMEWORK_SEARCH_PATHS[arch=*]":"","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_OPTIMIZATION_LEVEL":"0","GCC_PRECOMPILE_PREFIX_HEADER":"YES","GCC_PREFIX_HEADER":"GuyMcdoooooTipop_Prefix.pch","GCC_PREPROCESSOR_DEFINITIONS":"TI_VERSION=$(TI_VERSION)","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"","GCC_WARN_ABOUT_RETURN_TYPE":"NO","GCC_WARN_MISSING_PARENTHESES":"NO","GCC_WARN_SHADOW":"NO","GCC_WARN_STRICT_SELECTOR_MATCH":"NO","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_PARAMETER":"NO","GCC_WARN_UNUSED_VALUE":"NO","GCC_WARN_UNUSED_VARIABLE":"NO","INSTALL_PATH":"/usr/local/lib","IPHONEOS_DEPLOYMENT_TARGET":"12.1","LIBRARY_SEARCH_PATHS":"","OTHER_CFLAGS":"-DDEBUG -DTI_POST_1_2","OTHER_LDFLAGS":"","PRODUCT_NAME":"GuyMcdoooooTipop","PROVISIONING_PROFILE":"","PROVISIONING_PROFILE[sdk=iphoneos*]":"","RUN_CLANG_STATIC_ANALYZER":"NO","SDKROOT":"iphoneos","USER_HEADER_SEARCH_PATHS":""},"guid":"2a4102536f17908285d1029bcab673679adc0c73d385a3a1ed109e81423c87dd","name":"Debug"},{"baseConfigurationFileReference":"2a4102536f17908285d1029bcab673671ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"ALWAYS_SEARCH_USER_PATHS":"NO","CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"NO","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_WARN_BOOL_CONVERSION":"$(CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION)","CLANG_WARN_CONSTANT_CONVERSION":"$(CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION)","CLANG_WARN_EMPTY_BODY":"YES","DEFINES_MODULE":"NO","DSTROOT":"/tmp/GuyMcdoooooTipop.dst","FRAMEWORK_SEARCH_PATHS":"$(inherited) $(PROJECT_DIR)","FRAMEWORK_SEARCH_PATHS[arch=*]":"","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_MODEL_TUNING":"G5","GCC_PRECOMPILE_PREFIX_HEADER":"YES","GCC_PREFIX_HEADER":"GuyMcdoooooTipop_Prefix.pch","GCC_PREPROCESSOR_DEFINITIONS":"TI_VERSION=$(TI_VERSION)","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"","GCC_WARN_ABOUT_RETURN_TYPE":"NO","GCC_WARN_MISSING_PARENTHESES":"NO","GCC_WARN_SHADOW":"NO","GCC_WARN_STRICT_SELECTOR_MATCH":"NO","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_PARAMETER":"NO","GCC_WARN_UNUSED_VALUE":"NO","GCC_WARN_UNUSED_VARIABLE":"NO","INSTALL_PATH":"/usr/local/lib","IPHONEOS_DEPLOYMENT_TARGET":"12.1","LIBRARY_SEARCH_PATHS":"","OTHER_CFLAGS":"-DTI_POST_1_2","OTHER_LDFLAGS":"","PRODUCT_NAME":"GuyMcdoooooTipop","RUN_CLANG_STATIC_ANALYZER":"NO","SDKROOT":"iphoneos","USER_HEADER_SEARCH_PATHS":""},"guid":"2a4102536f17908285d1029bcab6736755b1ae4b823ccb5f6c7adaf771f732c1","name":"Release"}],"buildPhases":[{"buildFiles":[{"fileReference":"2a4102536f17908285d1029bcab673670477cf0eefe6dc0273a15133daf27952","guid":"2a4102536f17908285d1029bcab6736721fd7457182851399ac28aa1e79d16ec"},{"fileReference":"2a4102536f17908285d1029bcab673672a7f9b1decc44cac8ffa1feb9d4ad82f","guid":"2a4102536f17908285d1029bcab673673a306253e2856ad01a7978ba44b84c18"},{"fileReference":"2a4102536f17908285d1029bcab67367520ff038c6bd84fc87f0ea86e85b0d7c","guid":"2a4102536f17908285d1029bcab67367de4c46f53473b59cb34622b58b050b55"},{"fileReference":"2a4102536f17908285d1029bcab673670eb88a4cff41a652298a1bdf640ba70a","guid":"2a4102536f17908285d1029bcab6736794d8b8c7b52489a4557f5d023a4ad304"},{"fileReference":"2a4102536f17908285d1029bcab67367bedfedfe9199ebf2ae5f22ca93ad4fb6","guid":"2a4102536f17908285d1029bcab67367af0f242380459fcb9493437886dd9882"},{"fileReference":"2a4102536f17908285d1029bcab673676eb330cd7367c88c9c45cd9e100ac8f2","guid":"2a4102536f17908285d1029bcab67367d035bf6c8b56d79df76e08e6b99fcf4a"},{"fileReference":"2a4102536f17908285d1029bcab6736779bac3f89460b76ce1e2182e1a9441cd","guid":"2a4102536f17908285d1029bcab67367a12c6b47ba183fbf913f213046cc8776"},{"fileReference":"2a4102536f17908285d1029bcab673676394e27bde1fd4f96ce86201e3f113fe","guid":"2a4102536f17908285d1029bcab6736729b0a63f56278bd8c7727b27d0c21b73"},{"fileReference":"2a4102536f17908285d1029bcab673672a1eda3d285193f25fc35ebaf28d2188","guid":"2a4102536f17908285d1029bcab67367b834ed739e1c3c90b679b2d543e7479f"},{"fileReference":"2a4102536f17908285d1029bcab67367a9c0334876dbec31dce9c5ece27d60ff","guid":"2a4102536f17908285d1029bcab673677be831b03b98fbbe00ab664b689916c1"},{"fileReference":"2a4102536f17908285d1029bcab673679f48c6b6738e75afba9f02f13782ad53","guid":"2a4102536f17908285d1029bcab67367ea08d036537e25dd4f8834773120efba"},{"fileReference":"2a4102536f17908285d1029bcab673676f5bc0a826474816e4e3e2db881fb807","guid":"2a4102536f17908285d1029bcab6736703c6966cff6ef42fc6ce512b878526c3"},{"fileReference":"2a4102536f17908285d1029bcab67367195a5f202853b8dc2e2fb8559eb15e15","guid":"2a4102536f17908285d1029bcab67367427b2a5d9c7b0c662212c1390b2bdff4"},{"fileReference":"2a4102536f17908285d1029bcab673676ce41782d0c55573a951df6133791578","guid":"2a4102536f17908285d1029bcab673675c2cb92bcd076b8266eeb140b24fef1a"},{"fileReference":"2a4102536f17908285d1029bcab673672d6d7c330d27717ae7da1a00a4e4a394","guid":"2a4102536f17908285d1029bcab67367fa5f6e3cb4574b9acb9c5f0b494aec3d"},{"fileReference":"2a4102536f17908285d1029bcab67367992f6951c5ba1eb7ef2fc78577d8df87","guid":"2a4102536f17908285d1029bcab67367002d3807654a4007914a6ad379ce6fab"},{"fileReference":"2a4102536f17908285d1029bcab673676db70696d85c1b739973c59d77ed4ce1","guid":"2a4102536f17908285d1029bcab673677c7167ba03cfcbcc8e5fdf6dfa632d68"},{"fileReference":"2a4102536f17908285d1029bcab673678b1a1cfd30650ef9ca46d3b2ba748132","guid":"2a4102536f17908285d1029bcab673678dab37e81f9507a1c7ab02c2438712c6"},{"fileReference":"2a4102536f17908285d1029bcab67367374344d2537d80b040f7476758bd0576","guid":"2a4102536f17908285d1029bcab6736727119c5f28ebbdaef5904675b1009f08"},{"fileReference":"2a4102536f17908285d1029bcab673676e68a455bc5477b10924198db537a7c1","guid":"2a4102536f17908285d1029bcab67367401f35f0086bb9d395aaa768267e3ab8"},{"fileReference":"2a4102536f17908285d1029bcab67367a7c72589194c16802a82644d98115dcd","guid":"2a4102536f17908285d1029bcab67367e254c6d8097bb408736a3320706a2c6b"},{"fileReference":"2a4102536f17908285d1029bcab67367df89afd2351f08331708ce72d67a9f13","guid":"2a4102536f17908285d1029bcab67367b2ae2b13dccb1c32dd11188ff9270691"},{"fileReference":"2a4102536f17908285d1029bcab673678eff51c89b978fad6d1c0a30c6c53d58","guid":"2a4102536f17908285d1029bcab67367060e215f11af3d9742c541f13a826917"},{"fileReference":"2a4102536f17908285d1029bcab67367b9958b8fb761ff5ab5d7d53fdfde237d","guid":"2a4102536f17908285d1029bcab6736740254073146319873e77d8ce7e04687e"},{"fileReference":"2a4102536f17908285d1029bcab6736794eaba89e978ef7502723be10bc4b56e","guid":"2a4102536f17908285d1029bcab673678c68de5bd0df0f09f6c365ad3179b386"},{"fileReference":"2a4102536f17908285d1029bcab67367ea1db49d0bdbfda0f0e98119d6d998b5","guid":"2a4102536f17908285d1029bcab673677871ee143bce41b62a6e186bd38964d9"},{"fileReference":"2a4102536f17908285d1029bcab67367b78ca7d61c59e169eea5bd6b3d46950e","guid":"2a4102536f17908285d1029bcab67367bbd105790085e5fc1c1f09faf9864fd3"},{"fileReference":"2a4102536f17908285d1029bcab673675ebd6e9b4b04d97350eebbe8d4fc8330","guid":"2a4102536f17908285d1029bcab67367c7c76f0a197463b1a5a2ca79a9926a97"},{"fileReference":"2a4102536f17908285d1029bcab67367128a04207983005889f50ae5ed409bcc","guid":"2a4102536f17908285d1029bcab6736771e3bd72caea8cf276fc722d06578d33"},{"fileReference":"2a4102536f17908285d1029bcab67367136ac9054312b32582489ab9cd500a46","guid":"2a4102536f17908285d1029bcab67367694461fc7aca4e019819ba9cc7f3e191"},{"fileReference":"2a4102536f17908285d1029bcab67367f9d8a543bfd9637634355540398ec668","guid":"2a4102536f17908285d1029bcab67367ebfadfbb8c1a48229d39560f3f613654"},{"fileReference":"2a4102536f17908285d1029bcab673671f9a027de3985f1f170f00cb42faefac","guid":"2a4102536f17908285d1029bcab67367b59f99b0796e061cf85e75211dc8c6fd"},{"fileReference":"2a4102536f17908285d1029bcab67367ca8baead07dfcbbd1d389cebc5a949b4","guid":"2a4102536f17908285d1029bcab6736789aa26f4f2df05a604fa6ce46c104dbc"},{"fileReference":"2a4102536f17908285d1029bcab673674027ebd78ca0daa1361f3fc13a5747b5","guid":"2a4102536f17908285d1029bcab673675e39b2ee3318fbc43bdc11c93b9444a3"},{"fileReference":"2a4102536f17908285d1029bcab673671af1c6cdb0da165487f68e0cf50436fd","guid":"2a4102536f17908285d1029bcab6736782ab003dd6e91a731b8dc28c89648075"},{"fileReference":"2a4102536f17908285d1029bcab673674a673e5e989bd68063506581d0c3f82b","guid":"2a4102536f17908285d1029bcab67367f681d5e32e2ee9d103e8fc1431c23a3a"},{"fileReference":"2a4102536f17908285d1029bcab67367c5cd440e66c5ba5b551e2ea12c3ff034","guid":"2a4102536f17908285d1029bcab673674856488b57f001df0fd9516bd62f2820"},{"fileReference":"2a4102536f17908285d1029bcab673678310d5d3c4fd50e4d6f800a8db44d850","guid":"2a4102536f17908285d1029bcab673671792cedd72aa9ef1030e909d6ee8503b"}],"guid":"2a4102536f17908285d1029bcab673677ed2a460469186fd4553e7d30d5ba496","type":"com.apple.buildphase.headers"},{"buildFiles":[{"fileReference":"2a4102536f17908285d1029bcab6736785de645dc90624f9c0d0917bcd5a2afd","guid":"2a4102536f17908285d1029bcab6736781a4c4e49999cfbdee4529df534ccc97"},{"fileReference":"2a4102536f17908285d1029bcab673679a5f6703969a438fdc8077bfd70cab33","guid":"2a4102536f17908285d1029bcab673673e7c6cfcb2462c36e9e1174ee3b0a1fe"},{"fileReference":"2a4102536f17908285d1029bcab6736768348bfcc41a9adeec183138d7ba1021","guid":"2a4102536f17908285d1029bcab6736756d13951a6a41dc1354e03e418867ea7"},{"fileReference":"2a4102536f17908285d1029bcab67367953953e697feb363fe0393d3d53ebef4","guid":"2a4102536f17908285d1029bcab6736798d128d6930c731ad3ff48b4a8f1867d"},{"fileReference":"2a4102536f17908285d1029bcab67367b8197eae91db67e4f81670931e8ba271","guid":"2a4102536f17908285d1029bcab6736736c9b2b525a4485003f9e227a1fa1b42"},{"fileReference":"2a4102536f17908285d1029bcab67367ac6d2bd335c0c3b2e76c01da6f338a77","guid":"2a4102536f17908285d1029bcab67367f2793a17df0cf5c041aa9b9e827ce5af"},{"fileReference":"2a4102536f17908285d1029bcab673673053bab69af10591ea831e1e6e159868","guid":"2a4102536f17908285d1029bcab67367dfe7764b9d1bcbdd7767ba602b6dc161"},{"fileReference":"2a4102536f17908285d1029bcab6736708971d8ad2719c4e2a6ecad2e10315c0","guid":"2a4102536f17908285d1029bcab67367570cea67cf459110bf7648dd309a19a9"},{"fileReference":"2a4102536f17908285d1029bcab67367f947849271008e56914118ad0b23b7a1","guid":"2a4102536f17908285d1029bcab67367b6c7c8ccd640369a11a796e7dab4e78f"},{"fileReference":"2a4102536f17908285d1029bcab67367ca3936be73ea75285f61bfb6504fb399","guid":"2a4102536f17908285d1029bcab6736748c16606c6b69cde3a4c890136d486c8"},{"fileReference":"2a4102536f17908285d1029bcab67367490f8d5b3aedf0c5a655d70000b05cd8","guid":"2a4102536f17908285d1029bcab67367eb1c19e0ad6b3581fbdc8cbd3523ca60"},{"fileReference":"2a4102536f17908285d1029bcab67367707051f6c8df34108e6c9b67c38e3e8f","guid":"2a4102536f17908285d1029bcab67367a8be09cfa18f2e3862231198de72829e"},{"fileReference":"2a4102536f17908285d1029bcab673672de9a1c3c89fb9ee6056f28911131c9f","guid":"2a4102536f17908285d1029bcab67367461ccb86cc6be42a98eaab0ae3e32298"},{"fileReference":"2a4102536f17908285d1029bcab673672e43c6e69934c450019618d2ff5ccaaa","guid":"2a4102536f17908285d1029bcab67367ce6b9ac5c03a39cd5ef66228364d9d16"},{"fileReference":"2a4102536f17908285d1029bcab67367b9f083e8cee2e7a9cf2d954a9aa9a7e7","guid":"2a4102536f17908285d1029bcab67367a811e6a5a3fef67eaf3d8c60432f4cb3"},{"fileReference":"2a4102536f17908285d1029bcab673672db44f1e1110bd8d7179aece991f46f5","guid":"2a4102536f17908285d1029bcab6736752a6498e86b079af822986fa7ba5ef2f"},{"fileReference":"2a4102536f17908285d1029bcab673672e746add1b9afee556bcdd4ff4bdf74d","guid":"2a4102536f17908285d1029bcab67367d5f857a74399a7c3a42871e4274e92ca"},{"fileReference":"2a4102536f17908285d1029bcab6736702f26f062aadd0434ac0d5ed9cf436a4","guid":"2a4102536f17908285d1029bcab67367a29adeba9ba831eea2f3e345710ce4fa"},{"fileReference":"2a4102536f17908285d1029bcab67367acc437135f2a65e2f0b4bf8090fe3562","guid":"2a4102536f17908285d1029bcab67367d78b5636ebe0c09197c0d79875d237ca"},{"fileReference":"2a4102536f17908285d1029bcab673674dce39f349fcef423b223088c8116766","guid":"2a4102536f17908285d1029bcab67367f2782c4b8c41a8fe75ef3019f5d64397"},{"fileReference":"2a4102536f17908285d1029bcab67367a437a5c1876546e4c2a97017e0a8d699","guid":"2a4102536f17908285d1029bcab67367a40146f5288293d179b737368f7d4b73"},{"fileReference":"2a4102536f17908285d1029bcab67367f0b1a30d7c8a834ce54af0c8a259967d","guid":"2a4102536f17908285d1029bcab67367a39065c5dbca45342955d83405d67542"}],"guid":"2a4102536f17908285d1029bcab673670d32490aa660aef98646b4898ea1f0cc","type":"com.apple.buildphase.sources"},{"buildFiles":[{"fileReference":"2a4102536f17908285d1029bcab673679261c44e8adf51c81b9bf505497c0b33","guid":"2a4102536f17908285d1029bcab67367c275b5e28ee55078473bfa46d1b7c0c4"},{"fileReference":"2a4102536f17908285d1029bcab67367931d6996d0a4fb6be6a97f040381db06","guid":"2a4102536f17908285d1029bcab673679cd8c821160c4415cee7205453728e9d"}],"guid":"2a4102536f17908285d1029bcab6736777d87ec464ac6336da843967e13cab40","type":"com.apple.buildphase.frameworks"}],"buildRules":[],"dependencies":[],"guid":"2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082","name":"tipop","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Objective-C-Plus-Plus","productReference":{"guid":"2a4102536f17908285d1029bcab67367b754e1749123d559fec74bdd7d06ac57","name":"libGuyMcdoooooTipop.a","type":"product"},"productTypeIdentifier":"com.apple.product-type.library.static","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"","configurationName":"Debug","legacyTeamID":"","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"","configurationName":"Release","legacyTeamID":"","provisioningStyle":0}],"type":"standard"} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=354a02b1c0dd65ac7dab82df2d1e63f8-json b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=354a02b1c0dd65ac7dab82df2d1e63f8-json new file mode 100644 index 0000000..9e71678 --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=354a02b1c0dd65ac7dab82df2d1e63f8-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"d1d02f3c366ce2d9916f628a00f841ff1ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"NO","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_WARN_BOOL_CONVERSION":"$(CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION)","CLANG_WARN_CONSTANT_CONVERSION":"$(CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION)","CLANG_WARN_EMPTY_BODY":"YES","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"iPhone Developer","DEFINES_MODULE":"NO","DSTROOT":"/tmp/GuyMcdoooooTipop.dst","FRAMEWORK_SEARCH_PATHS":"$(inherited) $(PROJECT_DIR)","FRAMEWORK_SEARCH_PATHS[arch=*]":"","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_OPTIMIZATION_LEVEL":"0","GCC_PRECOMPILE_PREFIX_HEADER":"YES","GCC_PREFIX_HEADER":"GuyMcdoooooTipop_Prefix.pch","GCC_PREPROCESSOR_DEFINITIONS":"TI_VERSION=$(TI_VERSION)","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"","GCC_WARN_ABOUT_RETURN_TYPE":"NO","GCC_WARN_MISSING_PARENTHESES":"NO","GCC_WARN_SHADOW":"NO","GCC_WARN_STRICT_SELECTOR_MATCH":"NO","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_PARAMETER":"NO","GCC_WARN_UNUSED_VALUE":"NO","GCC_WARN_UNUSED_VARIABLE":"NO","INSTALL_PATH":"/usr/local/lib","IPHONEOS_DEPLOYMENT_TARGET":"11.0","LIBRARY_SEARCH_PATHS":"","OTHER_CFLAGS":"-DDEBUG -DTI_POST_1_2","OTHER_LDFLAGS":"","PRODUCT_NAME":"GuyMcdoooooTipop","PROVISIONING_PROFILE":"","PROVISIONING_PROFILE[sdk=iphoneos*]":"","RUN_CLANG_STATIC_ANALYZER":"NO","SDKROOT":"iphoneos","USER_HEADER_SEARCH_PATHS":""},"guid":"d1d02f3c366ce2d9916f628a00f841ff9adc0c73d385a3a1ed109e81423c87dd","name":"Debug"},{"baseConfigurationFileReference":"d1d02f3c366ce2d9916f628a00f841ff1ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"ALWAYS_SEARCH_USER_PATHS":"NO","CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"NO","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_WARN_BOOL_CONVERSION":"$(CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION)","CLANG_WARN_CONSTANT_CONVERSION":"$(CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION)","CLANG_WARN_EMPTY_BODY":"YES","DEFINES_MODULE":"NO","DSTROOT":"/tmp/GuyMcdoooooTipop.dst","FRAMEWORK_SEARCH_PATHS":"$(inherited) $(PROJECT_DIR)","FRAMEWORK_SEARCH_PATHS[arch=*]":"","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_MODEL_TUNING":"G5","GCC_PRECOMPILE_PREFIX_HEADER":"YES","GCC_PREFIX_HEADER":"GuyMcdoooooTipop_Prefix.pch","GCC_PREPROCESSOR_DEFINITIONS":"TI_VERSION=$(TI_VERSION)","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"","GCC_WARN_ABOUT_RETURN_TYPE":"NO","GCC_WARN_MISSING_PARENTHESES":"NO","GCC_WARN_SHADOW":"NO","GCC_WARN_STRICT_SELECTOR_MATCH":"NO","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_PARAMETER":"NO","GCC_WARN_UNUSED_VALUE":"NO","GCC_WARN_UNUSED_VARIABLE":"NO","INSTALL_PATH":"/usr/local/lib","IPHONEOS_DEPLOYMENT_TARGET":"11.0","LIBRARY_SEARCH_PATHS":"","OTHER_CFLAGS":"-DTI_POST_1_2","OTHER_LDFLAGS":"","PRODUCT_NAME":"GuyMcdoooooTipop","RUN_CLANG_STATIC_ANALYZER":"NO","SDKROOT":"iphoneos","USER_HEADER_SEARCH_PATHS":""},"guid":"d1d02f3c366ce2d9916f628a00f841ff55b1ae4b823ccb5f6c7adaf771f732c1","name":"Release"}],"buildPhases":[{"buildFiles":[{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff0477cf0eefe6dc0273a15133daf27952","guid":"d1d02f3c366ce2d9916f628a00f841ff21fd7457182851399ac28aa1e79d16ec"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff2a7f9b1decc44cac8ffa1feb9d4ad82f","guid":"d1d02f3c366ce2d9916f628a00f841ff3a306253e2856ad01a7978ba44b84c18"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff520ff038c6bd84fc87f0ea86e85b0d7c","guid":"d1d02f3c366ce2d9916f628a00f841ffde4c46f53473b59cb34622b58b050b55"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff0eb88a4cff41a652298a1bdf640ba70a","guid":"d1d02f3c366ce2d9916f628a00f841ff94d8b8c7b52489a4557f5d023a4ad304"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffbedfedfe9199ebf2ae5f22ca93ad4fb6","guid":"d1d02f3c366ce2d9916f628a00f841ffaf0f242380459fcb9493437886dd9882"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff6eb330cd7367c88c9c45cd9e100ac8f2","guid":"d1d02f3c366ce2d9916f628a00f841ffd035bf6c8b56d79df76e08e6b99fcf4a"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff79bac3f89460b76ce1e2182e1a9441cd","guid":"d1d02f3c366ce2d9916f628a00f841ffa12c6b47ba183fbf913f213046cc8776"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff6394e27bde1fd4f96ce86201e3f113fe","guid":"d1d02f3c366ce2d9916f628a00f841ff29b0a63f56278bd8c7727b27d0c21b73"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff2a1eda3d285193f25fc35ebaf28d2188","guid":"d1d02f3c366ce2d9916f628a00f841ffb834ed739e1c3c90b679b2d543e7479f"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffa9c0334876dbec31dce9c5ece27d60ff","guid":"d1d02f3c366ce2d9916f628a00f841ff7be831b03b98fbbe00ab664b689916c1"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff9f48c6b6738e75afba9f02f13782ad53","guid":"d1d02f3c366ce2d9916f628a00f841ffea08d036537e25dd4f8834773120efba"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff6f5bc0a826474816e4e3e2db881fb807","guid":"d1d02f3c366ce2d9916f628a00f841ff03c6966cff6ef42fc6ce512b878526c3"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff195a5f202853b8dc2e2fb8559eb15e15","guid":"d1d02f3c366ce2d9916f628a00f841ff427b2a5d9c7b0c662212c1390b2bdff4"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff6ce41782d0c55573a951df6133791578","guid":"d1d02f3c366ce2d9916f628a00f841ff5c2cb92bcd076b8266eeb140b24fef1a"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff2d6d7c330d27717ae7da1a00a4e4a394","guid":"d1d02f3c366ce2d9916f628a00f841fffa5f6e3cb4574b9acb9c5f0b494aec3d"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff992f6951c5ba1eb7ef2fc78577d8df87","guid":"d1d02f3c366ce2d9916f628a00f841ff002d3807654a4007914a6ad379ce6fab"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff6db70696d85c1b739973c59d77ed4ce1","guid":"d1d02f3c366ce2d9916f628a00f841ff7c7167ba03cfcbcc8e5fdf6dfa632d68"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff8b1a1cfd30650ef9ca46d3b2ba748132","guid":"d1d02f3c366ce2d9916f628a00f841ff8dab37e81f9507a1c7ab02c2438712c6"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff374344d2537d80b040f7476758bd0576","guid":"d1d02f3c366ce2d9916f628a00f841ff27119c5f28ebbdaef5904675b1009f08"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff6e68a455bc5477b10924198db537a7c1","guid":"d1d02f3c366ce2d9916f628a00f841ff401f35f0086bb9d395aaa768267e3ab8"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffa7c72589194c16802a82644d98115dcd","guid":"d1d02f3c366ce2d9916f628a00f841ffe254c6d8097bb408736a3320706a2c6b"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffdf89afd2351f08331708ce72d67a9f13","guid":"d1d02f3c366ce2d9916f628a00f841ffb2ae2b13dccb1c32dd11188ff9270691"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff8eff51c89b978fad6d1c0a30c6c53d58","guid":"d1d02f3c366ce2d9916f628a00f841ff060e215f11af3d9742c541f13a826917"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffb9958b8fb761ff5ab5d7d53fdfde237d","guid":"d1d02f3c366ce2d9916f628a00f841ff40254073146319873e77d8ce7e04687e"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff94eaba89e978ef7502723be10bc4b56e","guid":"d1d02f3c366ce2d9916f628a00f841ff8c68de5bd0df0f09f6c365ad3179b386"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffea1db49d0bdbfda0f0e98119d6d998b5","guid":"d1d02f3c366ce2d9916f628a00f841ff7871ee143bce41b62a6e186bd38964d9"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffb78ca7d61c59e169eea5bd6b3d46950e","guid":"d1d02f3c366ce2d9916f628a00f841ffbbd105790085e5fc1c1f09faf9864fd3"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff5ebd6e9b4b04d97350eebbe8d4fc8330","guid":"d1d02f3c366ce2d9916f628a00f841ffc7c76f0a197463b1a5a2ca79a9926a97"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff128a04207983005889f50ae5ed409bcc","guid":"d1d02f3c366ce2d9916f628a00f841ff71e3bd72caea8cf276fc722d06578d33"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff136ac9054312b32582489ab9cd500a46","guid":"d1d02f3c366ce2d9916f628a00f841ff694461fc7aca4e019819ba9cc7f3e191"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841fff9d8a543bfd9637634355540398ec668","guid":"d1d02f3c366ce2d9916f628a00f841ffebfadfbb8c1a48229d39560f3f613654"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff1f9a027de3985f1f170f00cb42faefac","guid":"d1d02f3c366ce2d9916f628a00f841ffb59f99b0796e061cf85e75211dc8c6fd"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffca8baead07dfcbbd1d389cebc5a949b4","guid":"d1d02f3c366ce2d9916f628a00f841ff89aa26f4f2df05a604fa6ce46c104dbc"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff4027ebd78ca0daa1361f3fc13a5747b5","guid":"d1d02f3c366ce2d9916f628a00f841ff5e39b2ee3318fbc43bdc11c93b9444a3"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff1af1c6cdb0da165487f68e0cf50436fd","guid":"d1d02f3c366ce2d9916f628a00f841ff82ab003dd6e91a731b8dc28c89648075"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff4a673e5e989bd68063506581d0c3f82b","guid":"d1d02f3c366ce2d9916f628a00f841fff681d5e32e2ee9d103e8fc1431c23a3a"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffc5cd440e66c5ba5b551e2ea12c3ff034","guid":"d1d02f3c366ce2d9916f628a00f841ff4856488b57f001df0fd9516bd62f2820"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff8310d5d3c4fd50e4d6f800a8db44d850","guid":"d1d02f3c366ce2d9916f628a00f841ff1792cedd72aa9ef1030e909d6ee8503b"}],"guid":"d1d02f3c366ce2d9916f628a00f841ff7ed2a460469186fd4553e7d30d5ba496","type":"com.apple.buildphase.headers"},{"buildFiles":[{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff85de645dc90624f9c0d0917bcd5a2afd","guid":"d1d02f3c366ce2d9916f628a00f841ff81a4c4e49999cfbdee4529df534ccc97"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff9a5f6703969a438fdc8077bfd70cab33","guid":"d1d02f3c366ce2d9916f628a00f841ff3e7c6cfcb2462c36e9e1174ee3b0a1fe"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff68348bfcc41a9adeec183138d7ba1021","guid":"d1d02f3c366ce2d9916f628a00f841ff56d13951a6a41dc1354e03e418867ea7"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff953953e697feb363fe0393d3d53ebef4","guid":"d1d02f3c366ce2d9916f628a00f841ff98d128d6930c731ad3ff48b4a8f1867d"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffb8197eae91db67e4f81670931e8ba271","guid":"d1d02f3c366ce2d9916f628a00f841ff36c9b2b525a4485003f9e227a1fa1b42"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffac6d2bd335c0c3b2e76c01da6f338a77","guid":"d1d02f3c366ce2d9916f628a00f841fff2793a17df0cf5c041aa9b9e827ce5af"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff3053bab69af10591ea831e1e6e159868","guid":"d1d02f3c366ce2d9916f628a00f841ffdfe7764b9d1bcbdd7767ba602b6dc161"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff08971d8ad2719c4e2a6ecad2e10315c0","guid":"d1d02f3c366ce2d9916f628a00f841ff570cea67cf459110bf7648dd309a19a9"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841fff947849271008e56914118ad0b23b7a1","guid":"d1d02f3c366ce2d9916f628a00f841ffb6c7c8ccd640369a11a796e7dab4e78f"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffca3936be73ea75285f61bfb6504fb399","guid":"d1d02f3c366ce2d9916f628a00f841ff48c16606c6b69cde3a4c890136d486c8"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff490f8d5b3aedf0c5a655d70000b05cd8","guid":"d1d02f3c366ce2d9916f628a00f841ffeb1c19e0ad6b3581fbdc8cbd3523ca60"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff707051f6c8df34108e6c9b67c38e3e8f","guid":"d1d02f3c366ce2d9916f628a00f841ffa8be09cfa18f2e3862231198de72829e"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff2de9a1c3c89fb9ee6056f28911131c9f","guid":"d1d02f3c366ce2d9916f628a00f841ff461ccb86cc6be42a98eaab0ae3e32298"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff2e43c6e69934c450019618d2ff5ccaaa","guid":"d1d02f3c366ce2d9916f628a00f841ffce6b9ac5c03a39cd5ef66228364d9d16"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffb9f083e8cee2e7a9cf2d954a9aa9a7e7","guid":"d1d02f3c366ce2d9916f628a00f841ffa811e6a5a3fef67eaf3d8c60432f4cb3"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff2db44f1e1110bd8d7179aece991f46f5","guid":"d1d02f3c366ce2d9916f628a00f841ff52a6498e86b079af822986fa7ba5ef2f"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff2e746add1b9afee556bcdd4ff4bdf74d","guid":"d1d02f3c366ce2d9916f628a00f841ffd5f857a74399a7c3a42871e4274e92ca"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff02f26f062aadd0434ac0d5ed9cf436a4","guid":"d1d02f3c366ce2d9916f628a00f841ffa29adeba9ba831eea2f3e345710ce4fa"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffacc437135f2a65e2f0b4bf8090fe3562","guid":"d1d02f3c366ce2d9916f628a00f841ffd78b5636ebe0c09197c0d79875d237ca"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff4dce39f349fcef423b223088c8116766","guid":"d1d02f3c366ce2d9916f628a00f841fff2782c4b8c41a8fe75ef3019f5d64397"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffa437a5c1876546e4c2a97017e0a8d699","guid":"d1d02f3c366ce2d9916f628a00f841ffa40146f5288293d179b737368f7d4b73"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841fff0b1a30d7c8a834ce54af0c8a259967d","guid":"d1d02f3c366ce2d9916f628a00f841ffa39065c5dbca45342955d83405d67542"}],"guid":"d1d02f3c366ce2d9916f628a00f841ff0d32490aa660aef98646b4898ea1f0cc","type":"com.apple.buildphase.sources"},{"buildFiles":[{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffa52f51432572caf0199eb1da1389d918","guid":"d1d02f3c366ce2d9916f628a00f841ffa332bea0459d8a404db7280652209555"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff9261c44e8adf51c81b9bf505497c0b33","guid":"d1d02f3c366ce2d9916f628a00f841ffc275b5e28ee55078473bfa46d1b7c0c4"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff931d6996d0a4fb6be6a97f040381db06","guid":"d1d02f3c366ce2d9916f628a00f841ff9cd8c821160c4415cee7205453728e9d"}],"guid":"d1d02f3c366ce2d9916f628a00f841ff77d87ec464ac6336da843967e13cab40","type":"com.apple.buildphase.frameworks"}],"buildRules":[],"dependencies":[],"guid":"d1d02f3c366ce2d9916f628a00f841ffa09fb951c034171470b90f08d9b4d082","name":"tipop","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Objective-C-Plus-Plus","productReference":{"guid":"d1d02f3c366ce2d9916f628a00f841ffb754e1749123d559fec74bdd7d06ac57","name":"libGuyMcdoooooTipop.a","type":"product"},"productTypeIdentifier":"com.apple.product-type.library.static","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"","configurationName":"Debug","legacyTeamID":"","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"","configurationName":"Release","legacyTeamID":"","provisioningStyle":0}],"type":"standard"} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=6edabf8023f3b72c8e39c38c4c77484e-json b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=6edabf8023f3b72c8e39c38c4c77484e-json new file mode 100644 index 0000000..11c6a95 --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=6edabf8023f3b72c8e39c38c4c77484e-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"d1d02f3c366ce2d9916f628a00f841ff1ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"NO","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_WARN_BOOL_CONVERSION":"$(CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION)","CLANG_WARN_CONSTANT_CONVERSION":"$(CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION)","CLANG_WARN_EMPTY_BODY":"YES","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"iPhone Developer","DEFINES_MODULE":"NO","DSTROOT":"/tmp/GuyMcdoooooTipop.dst","FRAMEWORK_SEARCH_PATHS":"$(inherited) $(PROJECT_DIR)","FRAMEWORK_SEARCH_PATHS[arch=*]":"","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_OPTIMIZATION_LEVEL":"0","GCC_PRECOMPILE_PREFIX_HEADER":"YES","GCC_PREFIX_HEADER":"GuyMcdoooooTipop_Prefix.pch","GCC_PREPROCESSOR_DEFINITIONS":"TI_VERSION=$(TI_VERSION)","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"","GCC_WARN_ABOUT_RETURN_TYPE":"NO","GCC_WARN_MISSING_PARENTHESES":"NO","GCC_WARN_SHADOW":"NO","GCC_WARN_STRICT_SELECTOR_MATCH":"NO","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_PARAMETER":"NO","GCC_WARN_UNUSED_VALUE":"NO","GCC_WARN_UNUSED_VARIABLE":"NO","INSTALL_PATH":"/usr/local/lib","IPHONEOS_DEPLOYMENT_TARGET":"12.1","LIBRARY_SEARCH_PATHS":"","OTHER_CFLAGS":"-DDEBUG -DTI_POST_1_2","OTHER_LDFLAGS":"","PRODUCT_NAME":"GuyMcdoooooTipop","PROVISIONING_PROFILE":"","PROVISIONING_PROFILE[sdk=iphoneos*]":"","RUN_CLANG_STATIC_ANALYZER":"NO","SDKROOT":"iphoneos","USER_HEADER_SEARCH_PATHS":""},"guid":"d1d02f3c366ce2d9916f628a00f841ff9adc0c73d385a3a1ed109e81423c87dd","name":"Debug"},{"baseConfigurationFileReference":"d1d02f3c366ce2d9916f628a00f841ff1ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"ALWAYS_SEARCH_USER_PATHS":"NO","CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"NO","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_WARN_BOOL_CONVERSION":"$(CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION)","CLANG_WARN_CONSTANT_CONVERSION":"$(CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION)","CLANG_WARN_EMPTY_BODY":"YES","DEFINES_MODULE":"NO","DSTROOT":"/tmp/GuyMcdoooooTipop.dst","FRAMEWORK_SEARCH_PATHS":"$(inherited) $(PROJECT_DIR)","FRAMEWORK_SEARCH_PATHS[arch=*]":"","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_MODEL_TUNING":"G5","GCC_PRECOMPILE_PREFIX_HEADER":"YES","GCC_PREFIX_HEADER":"GuyMcdoooooTipop_Prefix.pch","GCC_PREPROCESSOR_DEFINITIONS":"TI_VERSION=$(TI_VERSION)","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"","GCC_WARN_ABOUT_RETURN_TYPE":"NO","GCC_WARN_MISSING_PARENTHESES":"NO","GCC_WARN_SHADOW":"NO","GCC_WARN_STRICT_SELECTOR_MATCH":"NO","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_PARAMETER":"NO","GCC_WARN_UNUSED_VALUE":"NO","GCC_WARN_UNUSED_VARIABLE":"NO","INSTALL_PATH":"/usr/local/lib","IPHONEOS_DEPLOYMENT_TARGET":"12.1","LIBRARY_SEARCH_PATHS":"","OTHER_CFLAGS":"-DTI_POST_1_2","OTHER_LDFLAGS":"","PRODUCT_NAME":"GuyMcdoooooTipop","RUN_CLANG_STATIC_ANALYZER":"NO","SDKROOT":"iphoneos","USER_HEADER_SEARCH_PATHS":""},"guid":"d1d02f3c366ce2d9916f628a00f841ff55b1ae4b823ccb5f6c7adaf771f732c1","name":"Release"}],"buildPhases":[{"buildFiles":[{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff0477cf0eefe6dc0273a15133daf27952","guid":"d1d02f3c366ce2d9916f628a00f841ff21fd7457182851399ac28aa1e79d16ec"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff2a7f9b1decc44cac8ffa1feb9d4ad82f","guid":"d1d02f3c366ce2d9916f628a00f841ff3a306253e2856ad01a7978ba44b84c18"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff520ff038c6bd84fc87f0ea86e85b0d7c","guid":"d1d02f3c366ce2d9916f628a00f841ffde4c46f53473b59cb34622b58b050b55"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff0eb88a4cff41a652298a1bdf640ba70a","guid":"d1d02f3c366ce2d9916f628a00f841ff94d8b8c7b52489a4557f5d023a4ad304"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffbedfedfe9199ebf2ae5f22ca93ad4fb6","guid":"d1d02f3c366ce2d9916f628a00f841ffaf0f242380459fcb9493437886dd9882"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff6eb330cd7367c88c9c45cd9e100ac8f2","guid":"d1d02f3c366ce2d9916f628a00f841ffd035bf6c8b56d79df76e08e6b99fcf4a"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff79bac3f89460b76ce1e2182e1a9441cd","guid":"d1d02f3c366ce2d9916f628a00f841ffa12c6b47ba183fbf913f213046cc8776"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff6394e27bde1fd4f96ce86201e3f113fe","guid":"d1d02f3c366ce2d9916f628a00f841ff29b0a63f56278bd8c7727b27d0c21b73"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff2a1eda3d285193f25fc35ebaf28d2188","guid":"d1d02f3c366ce2d9916f628a00f841ffb834ed739e1c3c90b679b2d543e7479f"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffa9c0334876dbec31dce9c5ece27d60ff","guid":"d1d02f3c366ce2d9916f628a00f841ff7be831b03b98fbbe00ab664b689916c1"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff9f48c6b6738e75afba9f02f13782ad53","guid":"d1d02f3c366ce2d9916f628a00f841ffea08d036537e25dd4f8834773120efba"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff6f5bc0a826474816e4e3e2db881fb807","guid":"d1d02f3c366ce2d9916f628a00f841ff03c6966cff6ef42fc6ce512b878526c3"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff195a5f202853b8dc2e2fb8559eb15e15","guid":"d1d02f3c366ce2d9916f628a00f841ff427b2a5d9c7b0c662212c1390b2bdff4"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff6ce41782d0c55573a951df6133791578","guid":"d1d02f3c366ce2d9916f628a00f841ff5c2cb92bcd076b8266eeb140b24fef1a"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff2d6d7c330d27717ae7da1a00a4e4a394","guid":"d1d02f3c366ce2d9916f628a00f841fffa5f6e3cb4574b9acb9c5f0b494aec3d"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff992f6951c5ba1eb7ef2fc78577d8df87","guid":"d1d02f3c366ce2d9916f628a00f841ff002d3807654a4007914a6ad379ce6fab"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff6db70696d85c1b739973c59d77ed4ce1","guid":"d1d02f3c366ce2d9916f628a00f841ff7c7167ba03cfcbcc8e5fdf6dfa632d68"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff8b1a1cfd30650ef9ca46d3b2ba748132","guid":"d1d02f3c366ce2d9916f628a00f841ff8dab37e81f9507a1c7ab02c2438712c6"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff374344d2537d80b040f7476758bd0576","guid":"d1d02f3c366ce2d9916f628a00f841ff27119c5f28ebbdaef5904675b1009f08"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff6e68a455bc5477b10924198db537a7c1","guid":"d1d02f3c366ce2d9916f628a00f841ff401f35f0086bb9d395aaa768267e3ab8"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffa7c72589194c16802a82644d98115dcd","guid":"d1d02f3c366ce2d9916f628a00f841ffe254c6d8097bb408736a3320706a2c6b"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffdf89afd2351f08331708ce72d67a9f13","guid":"d1d02f3c366ce2d9916f628a00f841ffb2ae2b13dccb1c32dd11188ff9270691"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff8eff51c89b978fad6d1c0a30c6c53d58","guid":"d1d02f3c366ce2d9916f628a00f841ff060e215f11af3d9742c541f13a826917"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffb9958b8fb761ff5ab5d7d53fdfde237d","guid":"d1d02f3c366ce2d9916f628a00f841ff40254073146319873e77d8ce7e04687e"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff94eaba89e978ef7502723be10bc4b56e","guid":"d1d02f3c366ce2d9916f628a00f841ff8c68de5bd0df0f09f6c365ad3179b386"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffea1db49d0bdbfda0f0e98119d6d998b5","guid":"d1d02f3c366ce2d9916f628a00f841ff7871ee143bce41b62a6e186bd38964d9"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffb78ca7d61c59e169eea5bd6b3d46950e","guid":"d1d02f3c366ce2d9916f628a00f841ffbbd105790085e5fc1c1f09faf9864fd3"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff5ebd6e9b4b04d97350eebbe8d4fc8330","guid":"d1d02f3c366ce2d9916f628a00f841ffc7c76f0a197463b1a5a2ca79a9926a97"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff128a04207983005889f50ae5ed409bcc","guid":"d1d02f3c366ce2d9916f628a00f841ff71e3bd72caea8cf276fc722d06578d33"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff136ac9054312b32582489ab9cd500a46","guid":"d1d02f3c366ce2d9916f628a00f841ff694461fc7aca4e019819ba9cc7f3e191"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841fff9d8a543bfd9637634355540398ec668","guid":"d1d02f3c366ce2d9916f628a00f841ffebfadfbb8c1a48229d39560f3f613654"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff1f9a027de3985f1f170f00cb42faefac","guid":"d1d02f3c366ce2d9916f628a00f841ffb59f99b0796e061cf85e75211dc8c6fd"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffca8baead07dfcbbd1d389cebc5a949b4","guid":"d1d02f3c366ce2d9916f628a00f841ff89aa26f4f2df05a604fa6ce46c104dbc"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff4027ebd78ca0daa1361f3fc13a5747b5","guid":"d1d02f3c366ce2d9916f628a00f841ff5e39b2ee3318fbc43bdc11c93b9444a3"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff1af1c6cdb0da165487f68e0cf50436fd","guid":"d1d02f3c366ce2d9916f628a00f841ff82ab003dd6e91a731b8dc28c89648075"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff4a673e5e989bd68063506581d0c3f82b","guid":"d1d02f3c366ce2d9916f628a00f841fff681d5e32e2ee9d103e8fc1431c23a3a"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffc5cd440e66c5ba5b551e2ea12c3ff034","guid":"d1d02f3c366ce2d9916f628a00f841ff4856488b57f001df0fd9516bd62f2820"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff8310d5d3c4fd50e4d6f800a8db44d850","guid":"d1d02f3c366ce2d9916f628a00f841ff1792cedd72aa9ef1030e909d6ee8503b"}],"guid":"d1d02f3c366ce2d9916f628a00f841ff7ed2a460469186fd4553e7d30d5ba496","type":"com.apple.buildphase.headers"},{"buildFiles":[{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff85de645dc90624f9c0d0917bcd5a2afd","guid":"d1d02f3c366ce2d9916f628a00f841ff81a4c4e49999cfbdee4529df534ccc97"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff9a5f6703969a438fdc8077bfd70cab33","guid":"d1d02f3c366ce2d9916f628a00f841ff3e7c6cfcb2462c36e9e1174ee3b0a1fe"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff68348bfcc41a9adeec183138d7ba1021","guid":"d1d02f3c366ce2d9916f628a00f841ff56d13951a6a41dc1354e03e418867ea7"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff953953e697feb363fe0393d3d53ebef4","guid":"d1d02f3c366ce2d9916f628a00f841ff98d128d6930c731ad3ff48b4a8f1867d"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffb8197eae91db67e4f81670931e8ba271","guid":"d1d02f3c366ce2d9916f628a00f841ff36c9b2b525a4485003f9e227a1fa1b42"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffac6d2bd335c0c3b2e76c01da6f338a77","guid":"d1d02f3c366ce2d9916f628a00f841fff2793a17df0cf5c041aa9b9e827ce5af"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff3053bab69af10591ea831e1e6e159868","guid":"d1d02f3c366ce2d9916f628a00f841ffdfe7764b9d1bcbdd7767ba602b6dc161"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff08971d8ad2719c4e2a6ecad2e10315c0","guid":"d1d02f3c366ce2d9916f628a00f841ff570cea67cf459110bf7648dd309a19a9"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841fff947849271008e56914118ad0b23b7a1","guid":"d1d02f3c366ce2d9916f628a00f841ffb6c7c8ccd640369a11a796e7dab4e78f"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffca3936be73ea75285f61bfb6504fb399","guid":"d1d02f3c366ce2d9916f628a00f841ff48c16606c6b69cde3a4c890136d486c8"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff490f8d5b3aedf0c5a655d70000b05cd8","guid":"d1d02f3c366ce2d9916f628a00f841ffeb1c19e0ad6b3581fbdc8cbd3523ca60"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff707051f6c8df34108e6c9b67c38e3e8f","guid":"d1d02f3c366ce2d9916f628a00f841ffa8be09cfa18f2e3862231198de72829e"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff2de9a1c3c89fb9ee6056f28911131c9f","guid":"d1d02f3c366ce2d9916f628a00f841ff461ccb86cc6be42a98eaab0ae3e32298"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff2e43c6e69934c450019618d2ff5ccaaa","guid":"d1d02f3c366ce2d9916f628a00f841ffce6b9ac5c03a39cd5ef66228364d9d16"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffb9f083e8cee2e7a9cf2d954a9aa9a7e7","guid":"d1d02f3c366ce2d9916f628a00f841ffa811e6a5a3fef67eaf3d8c60432f4cb3"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff2db44f1e1110bd8d7179aece991f46f5","guid":"d1d02f3c366ce2d9916f628a00f841ff52a6498e86b079af822986fa7ba5ef2f"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff2e746add1b9afee556bcdd4ff4bdf74d","guid":"d1d02f3c366ce2d9916f628a00f841ffd5f857a74399a7c3a42871e4274e92ca"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff02f26f062aadd0434ac0d5ed9cf436a4","guid":"d1d02f3c366ce2d9916f628a00f841ffa29adeba9ba831eea2f3e345710ce4fa"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffacc437135f2a65e2f0b4bf8090fe3562","guid":"d1d02f3c366ce2d9916f628a00f841ffd78b5636ebe0c09197c0d79875d237ca"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff4dce39f349fcef423b223088c8116766","guid":"d1d02f3c366ce2d9916f628a00f841fff2782c4b8c41a8fe75ef3019f5d64397"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffa437a5c1876546e4c2a97017e0a8d699","guid":"d1d02f3c366ce2d9916f628a00f841ffa40146f5288293d179b737368f7d4b73"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841fff0b1a30d7c8a834ce54af0c8a259967d","guid":"d1d02f3c366ce2d9916f628a00f841ffa39065c5dbca45342955d83405d67542"}],"guid":"d1d02f3c366ce2d9916f628a00f841ff0d32490aa660aef98646b4898ea1f0cc","type":"com.apple.buildphase.sources"},{"buildFiles":[{"fileReference":"d1d02f3c366ce2d9916f628a00f841ffa52f51432572caf0199eb1da1389d918","guid":"d1d02f3c366ce2d9916f628a00f841ffa332bea0459d8a404db7280652209555"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff9261c44e8adf51c81b9bf505497c0b33","guid":"d1d02f3c366ce2d9916f628a00f841ffc275b5e28ee55078473bfa46d1b7c0c4"},{"fileReference":"d1d02f3c366ce2d9916f628a00f841ff931d6996d0a4fb6be6a97f040381db06","guid":"d1d02f3c366ce2d9916f628a00f841ff9cd8c821160c4415cee7205453728e9d"}],"guid":"d1d02f3c366ce2d9916f628a00f841ff77d87ec464ac6336da843967e13cab40","type":"com.apple.buildphase.frameworks"}],"buildRules":[],"dependencies":[],"guid":"d1d02f3c366ce2d9916f628a00f841ffa09fb951c034171470b90f08d9b4d082","name":"tipop","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Objective-C-Plus-Plus","productReference":{"guid":"d1d02f3c366ce2d9916f628a00f841ffb754e1749123d559fec74bdd7d06ac57","name":"libGuyMcdoooooTipop.a","type":"product"},"productTypeIdentifier":"com.apple.product-type.library.static","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"","configurationName":"Debug","legacyTeamID":"","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"","configurationName":"Release","legacyTeamID":"","provisioningStyle":0}],"type":"standard"} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=c4608d83621ff22e68d1a0c9e8feb2db-json b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=c4608d83621ff22e68d1a0c9e8feb2db-json new file mode 100644 index 0000000..65c5306 --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=c4608d83621ff22e68d1a0c9e8feb2db-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"d1d02f3c366ce2d9916f628a00f841ff1ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"YES","COPY_PHASE_STRIP":"NO","GCC_DYNAMIC_NO_PIC":"NO","GCC_OPTIMIZATION_LEVEL":"0","PRODUCT_NAME":"Build & test"},"guid":"d1d02f3c366ce2d9916f628a00f841ff3bbac2ceba60b14f7890b4a59a4badbf","name":"Debug"},{"baseConfigurationFileReference":"d1d02f3c366ce2d9916f628a00f841ff1ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"CLANG_ENABLE_OBJC_WEAK":"YES","COPY_PHASE_STRIP":"YES","DEBUG_INFORMATION_FORMAT":"dwarf-with-dsym","PRODUCT_NAME":"Build & test","ZERO_LINK":"NO"},"guid":"d1d02f3c366ce2d9916f628a00f841ff0c5837586bac039a6c63e2f855a5a717","name":"Release"}],"buildPhases":[{"alwaysOutOfDate":"false","buildFiles":[],"emitEnvironment":"true","guid":"d1d02f3c366ce2d9916f628a00f841ff7d1f5aeb860dfcb40256481bb18b8806","inputFileListPaths":[],"inputFilePaths":[],"name":"Run Script","originalObjectID":"24416B8011C4CA220047AFDD","outputFileListPaths":[],"outputFilePaths":[],"scriptContents":"# shell script goes here\n\npython \"${TITANIUM_SDK}/titanium.py\" run --dir=\"${PROJECT_DIR}\"\nexit $?\n","shellPath":"/bin/sh","type":"com.apple.buildphase.shell-script"}],"buildRules":[],"dependencies":[{"guid":"d1d02f3c366ce2d9916f628a00f841ffa09fb951c034171470b90f08d9b4d082"}],"guid":"d1d02f3c366ce2d9916f628a00f841ffd3fd11790347481c51bc8982edd94220","name":"Build & Test","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"","configurationName":"Debug","legacyTeamID":"","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"","configurationName":"Release","legacyTeamID":"","provisioningStyle":0}],"type":"aggregate"} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=ecc319e6bd06417275c329a9403eadad-json b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=ecc319e6bd06417275c329a9403eadad-json new file mode 100644 index 0000000..e85905b --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=ecc319e6bd06417275c329a9403eadad-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"2a4102536f17908285d1029bcab673671ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"NO","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_WARN_BOOL_CONVERSION":"$(CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION)","CLANG_WARN_CONSTANT_CONVERSION":"$(CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION)","CLANG_WARN_EMPTY_BODY":"YES","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"iPhone Developer","DEFINES_MODULE":"NO","DSTROOT":"/tmp/GuyMcdoooooTipop.dst","FRAMEWORK_SEARCH_PATHS":"$(inherited) $(PROJECT_DIR)","FRAMEWORK_SEARCH_PATHS[arch=*]":"","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_OPTIMIZATION_LEVEL":"0","GCC_PRECOMPILE_PREFIX_HEADER":"YES","GCC_PREFIX_HEADER":"GuyMcdoooooTipop_Prefix.pch","GCC_PREPROCESSOR_DEFINITIONS":"TI_VERSION=$(TI_VERSION)","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"","GCC_WARN_ABOUT_RETURN_TYPE":"NO","GCC_WARN_MISSING_PARENTHESES":"NO","GCC_WARN_SHADOW":"NO","GCC_WARN_STRICT_SELECTOR_MATCH":"NO","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_PARAMETER":"NO","GCC_WARN_UNUSED_VALUE":"NO","GCC_WARN_UNUSED_VARIABLE":"NO","INSTALL_PATH":"/usr/local/lib","IPHONEOS_DEPLOYMENT_TARGET":"12.1","LIBRARY_SEARCH_PATHS":"","OTHER_CFLAGS":"-DDEBUG -DTI_POST_1_2","OTHER_LDFLAGS":"","PRODUCT_NAME":"GuyMcdoooooTipop","PROVISIONING_PROFILE":"","PROVISIONING_PROFILE[sdk=iphoneos*]":"","RUN_CLANG_STATIC_ANALYZER":"NO","SDKROOT":"iphoneos","USER_HEADER_SEARCH_PATHS":""},"guid":"2a4102536f17908285d1029bcab673679adc0c73d385a3a1ed109e81423c87dd","name":"Debug"},{"baseConfigurationFileReference":"2a4102536f17908285d1029bcab673671ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"ALWAYS_SEARCH_USER_PATHS":"NO","CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"NO","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_WARN_BOOL_CONVERSION":"$(CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION)","CLANG_WARN_CONSTANT_CONVERSION":"$(CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION)","CLANG_WARN_EMPTY_BODY":"YES","DEFINES_MODULE":"NO","DSTROOT":"/tmp/GuyMcdoooooTipop.dst","FRAMEWORK_SEARCH_PATHS":"$(inherited) $(PROJECT_DIR)","FRAMEWORK_SEARCH_PATHS[arch=*]":"","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_MODEL_TUNING":"G5","GCC_PRECOMPILE_PREFIX_HEADER":"YES","GCC_PREFIX_HEADER":"GuyMcdoooooTipop_Prefix.pch","GCC_PREPROCESSOR_DEFINITIONS":"TI_VERSION=$(TI_VERSION)","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"","GCC_WARN_ABOUT_RETURN_TYPE":"NO","GCC_WARN_MISSING_PARENTHESES":"NO","GCC_WARN_SHADOW":"NO","GCC_WARN_STRICT_SELECTOR_MATCH":"NO","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_PARAMETER":"NO","GCC_WARN_UNUSED_VALUE":"NO","GCC_WARN_UNUSED_VARIABLE":"NO","INSTALL_PATH":"/usr/local/lib","IPHONEOS_DEPLOYMENT_TARGET":"12.1","LIBRARY_SEARCH_PATHS":"","OTHER_CFLAGS":"-DTI_POST_1_2","OTHER_LDFLAGS":"","PRODUCT_NAME":"GuyMcdoooooTipop","RUN_CLANG_STATIC_ANALYZER":"NO","SDKROOT":"iphoneos","USER_HEADER_SEARCH_PATHS":""},"guid":"2a4102536f17908285d1029bcab6736755b1ae4b823ccb5f6c7adaf771f732c1","name":"Release"}],"buildPhases":[{"buildFiles":[{"fileReference":"2a4102536f17908285d1029bcab673670477cf0eefe6dc0273a15133daf27952","guid":"2a4102536f17908285d1029bcab6736721fd7457182851399ac28aa1e79d16ec"},{"fileReference":"2a4102536f17908285d1029bcab673672a7f9b1decc44cac8ffa1feb9d4ad82f","guid":"2a4102536f17908285d1029bcab673673a306253e2856ad01a7978ba44b84c18"},{"fileReference":"2a4102536f17908285d1029bcab67367520ff038c6bd84fc87f0ea86e85b0d7c","guid":"2a4102536f17908285d1029bcab67367de4c46f53473b59cb34622b58b050b55"},{"fileReference":"2a4102536f17908285d1029bcab673670eb88a4cff41a652298a1bdf640ba70a","guid":"2a4102536f17908285d1029bcab6736794d8b8c7b52489a4557f5d023a4ad304"},{"fileReference":"2a4102536f17908285d1029bcab67367bedfedfe9199ebf2ae5f22ca93ad4fb6","guid":"2a4102536f17908285d1029bcab67367af0f242380459fcb9493437886dd9882"},{"fileReference":"2a4102536f17908285d1029bcab673676eb330cd7367c88c9c45cd9e100ac8f2","guid":"2a4102536f17908285d1029bcab67367d035bf6c8b56d79df76e08e6b99fcf4a"},{"fileReference":"2a4102536f17908285d1029bcab6736779bac3f89460b76ce1e2182e1a9441cd","guid":"2a4102536f17908285d1029bcab67367a12c6b47ba183fbf913f213046cc8776"},{"fileReference":"2a4102536f17908285d1029bcab673676394e27bde1fd4f96ce86201e3f113fe","guid":"2a4102536f17908285d1029bcab6736729b0a63f56278bd8c7727b27d0c21b73"},{"fileReference":"2a4102536f17908285d1029bcab673672a1eda3d285193f25fc35ebaf28d2188","guid":"2a4102536f17908285d1029bcab67367b834ed739e1c3c90b679b2d543e7479f"},{"fileReference":"2a4102536f17908285d1029bcab67367a9c0334876dbec31dce9c5ece27d60ff","guid":"2a4102536f17908285d1029bcab673677be831b03b98fbbe00ab664b689916c1"},{"fileReference":"2a4102536f17908285d1029bcab673679f48c6b6738e75afba9f02f13782ad53","guid":"2a4102536f17908285d1029bcab67367ea08d036537e25dd4f8834773120efba"},{"fileReference":"2a4102536f17908285d1029bcab673676f5bc0a826474816e4e3e2db881fb807","guid":"2a4102536f17908285d1029bcab6736703c6966cff6ef42fc6ce512b878526c3"},{"fileReference":"2a4102536f17908285d1029bcab67367195a5f202853b8dc2e2fb8559eb15e15","guid":"2a4102536f17908285d1029bcab67367427b2a5d9c7b0c662212c1390b2bdff4"},{"fileReference":"2a4102536f17908285d1029bcab673676ce41782d0c55573a951df6133791578","guid":"2a4102536f17908285d1029bcab673675c2cb92bcd076b8266eeb140b24fef1a"},{"fileReference":"2a4102536f17908285d1029bcab673672d6d7c330d27717ae7da1a00a4e4a394","guid":"2a4102536f17908285d1029bcab67367fa5f6e3cb4574b9acb9c5f0b494aec3d"},{"fileReference":"2a4102536f17908285d1029bcab67367992f6951c5ba1eb7ef2fc78577d8df87","guid":"2a4102536f17908285d1029bcab67367002d3807654a4007914a6ad379ce6fab"},{"fileReference":"2a4102536f17908285d1029bcab673676db70696d85c1b739973c59d77ed4ce1","guid":"2a4102536f17908285d1029bcab673677c7167ba03cfcbcc8e5fdf6dfa632d68"},{"fileReference":"2a4102536f17908285d1029bcab673678b1a1cfd30650ef9ca46d3b2ba748132","guid":"2a4102536f17908285d1029bcab673678dab37e81f9507a1c7ab02c2438712c6"},{"fileReference":"2a4102536f17908285d1029bcab67367374344d2537d80b040f7476758bd0576","guid":"2a4102536f17908285d1029bcab6736727119c5f28ebbdaef5904675b1009f08"},{"fileReference":"2a4102536f17908285d1029bcab673676e68a455bc5477b10924198db537a7c1","guid":"2a4102536f17908285d1029bcab67367401f35f0086bb9d395aaa768267e3ab8"},{"fileReference":"2a4102536f17908285d1029bcab67367a7c72589194c16802a82644d98115dcd","guid":"2a4102536f17908285d1029bcab67367e254c6d8097bb408736a3320706a2c6b"},{"fileReference":"2a4102536f17908285d1029bcab67367df89afd2351f08331708ce72d67a9f13","guid":"2a4102536f17908285d1029bcab67367b2ae2b13dccb1c32dd11188ff9270691"},{"fileReference":"2a4102536f17908285d1029bcab673678eff51c89b978fad6d1c0a30c6c53d58","guid":"2a4102536f17908285d1029bcab67367060e215f11af3d9742c541f13a826917"},{"fileReference":"2a4102536f17908285d1029bcab67367b9958b8fb761ff5ab5d7d53fdfde237d","guid":"2a4102536f17908285d1029bcab6736740254073146319873e77d8ce7e04687e"},{"fileReference":"2a4102536f17908285d1029bcab6736794eaba89e978ef7502723be10bc4b56e","guid":"2a4102536f17908285d1029bcab673678c68de5bd0df0f09f6c365ad3179b386"},{"fileReference":"2a4102536f17908285d1029bcab67367ea1db49d0bdbfda0f0e98119d6d998b5","guid":"2a4102536f17908285d1029bcab673677871ee143bce41b62a6e186bd38964d9"},{"fileReference":"2a4102536f17908285d1029bcab67367b78ca7d61c59e169eea5bd6b3d46950e","guid":"2a4102536f17908285d1029bcab67367bbd105790085e5fc1c1f09faf9864fd3"},{"fileReference":"2a4102536f17908285d1029bcab673675ebd6e9b4b04d97350eebbe8d4fc8330","guid":"2a4102536f17908285d1029bcab67367c7c76f0a197463b1a5a2ca79a9926a97"},{"fileReference":"2a4102536f17908285d1029bcab67367128a04207983005889f50ae5ed409bcc","guid":"2a4102536f17908285d1029bcab6736771e3bd72caea8cf276fc722d06578d33"},{"fileReference":"2a4102536f17908285d1029bcab67367136ac9054312b32582489ab9cd500a46","guid":"2a4102536f17908285d1029bcab67367694461fc7aca4e019819ba9cc7f3e191"},{"fileReference":"2a4102536f17908285d1029bcab67367f9d8a543bfd9637634355540398ec668","guid":"2a4102536f17908285d1029bcab67367ebfadfbb8c1a48229d39560f3f613654"},{"fileReference":"2a4102536f17908285d1029bcab673671f9a027de3985f1f170f00cb42faefac","guid":"2a4102536f17908285d1029bcab67367b59f99b0796e061cf85e75211dc8c6fd"},{"fileReference":"2a4102536f17908285d1029bcab67367ca8baead07dfcbbd1d389cebc5a949b4","guid":"2a4102536f17908285d1029bcab6736789aa26f4f2df05a604fa6ce46c104dbc"},{"fileReference":"2a4102536f17908285d1029bcab673674027ebd78ca0daa1361f3fc13a5747b5","guid":"2a4102536f17908285d1029bcab673675e39b2ee3318fbc43bdc11c93b9444a3"},{"fileReference":"2a4102536f17908285d1029bcab673671af1c6cdb0da165487f68e0cf50436fd","guid":"2a4102536f17908285d1029bcab6736782ab003dd6e91a731b8dc28c89648075"},{"fileReference":"2a4102536f17908285d1029bcab673674a673e5e989bd68063506581d0c3f82b","guid":"2a4102536f17908285d1029bcab67367f681d5e32e2ee9d103e8fc1431c23a3a"},{"fileReference":"2a4102536f17908285d1029bcab67367c5cd440e66c5ba5b551e2ea12c3ff034","guid":"2a4102536f17908285d1029bcab673674856488b57f001df0fd9516bd62f2820"},{"fileReference":"2a4102536f17908285d1029bcab673678310d5d3c4fd50e4d6f800a8db44d850","guid":"2a4102536f17908285d1029bcab673671792cedd72aa9ef1030e909d6ee8503b"}],"guid":"2a4102536f17908285d1029bcab673677ed2a460469186fd4553e7d30d5ba496","type":"com.apple.buildphase.headers"},{"buildFiles":[{"fileReference":"2a4102536f17908285d1029bcab6736785de645dc90624f9c0d0917bcd5a2afd","guid":"2a4102536f17908285d1029bcab6736781a4c4e49999cfbdee4529df534ccc97"},{"fileReference":"2a4102536f17908285d1029bcab673679a5f6703969a438fdc8077bfd70cab33","guid":"2a4102536f17908285d1029bcab673673e7c6cfcb2462c36e9e1174ee3b0a1fe"},{"fileReference":"2a4102536f17908285d1029bcab6736768348bfcc41a9adeec183138d7ba1021","guid":"2a4102536f17908285d1029bcab6736756d13951a6a41dc1354e03e418867ea7"},{"fileReference":"2a4102536f17908285d1029bcab67367953953e697feb363fe0393d3d53ebef4","guid":"2a4102536f17908285d1029bcab6736798d128d6930c731ad3ff48b4a8f1867d"},{"fileReference":"2a4102536f17908285d1029bcab67367b8197eae91db67e4f81670931e8ba271","guid":"2a4102536f17908285d1029bcab6736736c9b2b525a4485003f9e227a1fa1b42"},{"fileReference":"2a4102536f17908285d1029bcab67367ac6d2bd335c0c3b2e76c01da6f338a77","guid":"2a4102536f17908285d1029bcab67367f2793a17df0cf5c041aa9b9e827ce5af"},{"fileReference":"2a4102536f17908285d1029bcab673673053bab69af10591ea831e1e6e159868","guid":"2a4102536f17908285d1029bcab67367dfe7764b9d1bcbdd7767ba602b6dc161"},{"fileReference":"2a4102536f17908285d1029bcab6736708971d8ad2719c4e2a6ecad2e10315c0","guid":"2a4102536f17908285d1029bcab67367570cea67cf459110bf7648dd309a19a9"},{"fileReference":"2a4102536f17908285d1029bcab67367f947849271008e56914118ad0b23b7a1","guid":"2a4102536f17908285d1029bcab67367b6c7c8ccd640369a11a796e7dab4e78f"},{"fileReference":"2a4102536f17908285d1029bcab67367ca3936be73ea75285f61bfb6504fb399","guid":"2a4102536f17908285d1029bcab6736748c16606c6b69cde3a4c890136d486c8"},{"fileReference":"2a4102536f17908285d1029bcab67367490f8d5b3aedf0c5a655d70000b05cd8","guid":"2a4102536f17908285d1029bcab67367eb1c19e0ad6b3581fbdc8cbd3523ca60"},{"fileReference":"2a4102536f17908285d1029bcab67367707051f6c8df34108e6c9b67c38e3e8f","guid":"2a4102536f17908285d1029bcab67367a8be09cfa18f2e3862231198de72829e"},{"fileReference":"2a4102536f17908285d1029bcab673672de9a1c3c89fb9ee6056f28911131c9f","guid":"2a4102536f17908285d1029bcab67367461ccb86cc6be42a98eaab0ae3e32298"},{"fileReference":"2a4102536f17908285d1029bcab673672e43c6e69934c450019618d2ff5ccaaa","guid":"2a4102536f17908285d1029bcab67367ce6b9ac5c03a39cd5ef66228364d9d16"},{"fileReference":"2a4102536f17908285d1029bcab67367b9f083e8cee2e7a9cf2d954a9aa9a7e7","guid":"2a4102536f17908285d1029bcab67367a811e6a5a3fef67eaf3d8c60432f4cb3"},{"fileReference":"2a4102536f17908285d1029bcab673672db44f1e1110bd8d7179aece991f46f5","guid":"2a4102536f17908285d1029bcab6736752a6498e86b079af822986fa7ba5ef2f"},{"fileReference":"2a4102536f17908285d1029bcab673672e746add1b9afee556bcdd4ff4bdf74d","guid":"2a4102536f17908285d1029bcab67367d5f857a74399a7c3a42871e4274e92ca"},{"fileReference":"2a4102536f17908285d1029bcab6736702f26f062aadd0434ac0d5ed9cf436a4","guid":"2a4102536f17908285d1029bcab67367a29adeba9ba831eea2f3e345710ce4fa"},{"fileReference":"2a4102536f17908285d1029bcab67367acc437135f2a65e2f0b4bf8090fe3562","guid":"2a4102536f17908285d1029bcab67367d78b5636ebe0c09197c0d79875d237ca"},{"fileReference":"2a4102536f17908285d1029bcab673674dce39f349fcef423b223088c8116766","guid":"2a4102536f17908285d1029bcab67367f2782c4b8c41a8fe75ef3019f5d64397"},{"fileReference":"2a4102536f17908285d1029bcab67367a437a5c1876546e4c2a97017e0a8d699","guid":"2a4102536f17908285d1029bcab67367a40146f5288293d179b737368f7d4b73"},{"fileReference":"2a4102536f17908285d1029bcab67367f0b1a30d7c8a834ce54af0c8a259967d","guid":"2a4102536f17908285d1029bcab67367a39065c5dbca45342955d83405d67542"}],"guid":"2a4102536f17908285d1029bcab673670d32490aa660aef98646b4898ea1f0cc","type":"com.apple.buildphase.sources"},{"buildFiles":[{"fileReference":"2a4102536f17908285d1029bcab67367a52f51432572caf0199eb1da1389d918","guid":"2a4102536f17908285d1029bcab67367a332bea0459d8a404db7280652209555"},{"fileReference":"2a4102536f17908285d1029bcab673679261c44e8adf51c81b9bf505497c0b33","guid":"2a4102536f17908285d1029bcab67367c275b5e28ee55078473bfa46d1b7c0c4"},{"fileReference":"2a4102536f17908285d1029bcab67367931d6996d0a4fb6be6a97f040381db06","guid":"2a4102536f17908285d1029bcab673679cd8c821160c4415cee7205453728e9d"}],"guid":"2a4102536f17908285d1029bcab6736777d87ec464ac6336da843967e13cab40","type":"com.apple.buildphase.frameworks"}],"buildRules":[],"dependencies":[],"guid":"2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082","name":"tipop","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Objective-C-Plus-Plus","productReference":{"guid":"2a4102536f17908285d1029bcab67367b754e1749123d559fec74bdd7d06ac57","name":"libGuyMcdoooooTipop.a","type":"product"},"productTypeIdentifier":"com.apple.product-type.library.static","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"","configurationName":"Debug","legacyTeamID":"","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"","configurationName":"Release","legacyTeamID":"","provisioningStyle":0}],"type":"standard"} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=fcc4133b738b1e22c0f1a28ca0a40c03-json b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=fcc4133b738b1e22c0f1a28ca0a40c03-json new file mode 100644 index 0000000..d8f6665 --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/target/TARGET@v11_hash=fcc4133b738b1e22c0f1a28ca0a40c03-json @@ -0,0 +1 @@ +{"buildConfigurations":[{"baseConfigurationFileReference":"2a4102536f17908285d1029bcab673671ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"NO","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_WARN_BOOL_CONVERSION":"$(CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION)","CLANG_WARN_CONSTANT_CONVERSION":"$(CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION)","CLANG_WARN_EMPTY_BODY":"YES","CODE_SIGN_IDENTITY":"iPhone Developer","CODE_SIGN_IDENTITY[sdk=iphoneos*]":"iPhone Developer","DEFINES_MODULE":"NO","DSTROOT":"/tmp/GuyMcdoooooTipop.dst","FRAMEWORK_SEARCH_PATHS":"$(inherited) $(PROJECT_DIR)","FRAMEWORK_SEARCH_PATHS[arch=*]":"","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_OPTIMIZATION_LEVEL":"0","GCC_PRECOMPILE_PREFIX_HEADER":"YES","GCC_PREFIX_HEADER":"GuyMcdoooooTipop_Prefix.pch","GCC_PREPROCESSOR_DEFINITIONS":"TI_VERSION=$(TI_VERSION)","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"","GCC_WARN_ABOUT_RETURN_TYPE":"NO","GCC_WARN_MISSING_PARENTHESES":"NO","GCC_WARN_SHADOW":"NO","GCC_WARN_STRICT_SELECTOR_MATCH":"NO","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_PARAMETER":"NO","GCC_WARN_UNUSED_VALUE":"NO","GCC_WARN_UNUSED_VARIABLE":"NO","INSTALL_PATH":"/usr/local/lib","IPHONEOS_DEPLOYMENT_TARGET":"12.1","LIBRARY_SEARCH_PATHS":"","OTHER_CFLAGS":"-DDEBUG -DTI_POST_1_2","OTHER_LDFLAGS":"","PRODUCT_NAME":"GuyMcdoooooTipop","PROVISIONING_PROFILE":"","PROVISIONING_PROFILE[sdk=iphoneos*]":"","RUN_CLANG_STATIC_ANALYZER":"NO","SDKROOT":"iphoneos","USER_HEADER_SEARCH_PATHS":""},"guid":"2a4102536f17908285d1029bcab673679adc0c73d385a3a1ed109e81423c87dd","name":"Debug"},{"baseConfigurationFileReference":"2a4102536f17908285d1029bcab673671ab9ad58b4eeed64a1fca40bbfdec1f1","buildSettings":{"ALWAYS_SEARCH_USER_PATHS":"NO","CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"NO","CLANG_CXX_LANGUAGE_STANDARD":"gnu++0x","CLANG_CXX_LIBRARY":"libc++","CLANG_ENABLE_MODULES":"YES","CLANG_ENABLE_OBJC_ARC":"YES","CLANG_WARN_BOOL_CONVERSION":"$(CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION)","CLANG_WARN_CONSTANT_CONVERSION":"$(CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION)","CLANG_WARN_EMPTY_BODY":"YES","DEFINES_MODULE":"NO","DSTROOT":"/tmp/GuyMcdoooooTipop.dst","FRAMEWORK_SEARCH_PATHS":"$(inherited) $(PROJECT_DIR)","FRAMEWORK_SEARCH_PATHS[arch=*]":"","GCC_C_LANGUAGE_STANDARD":"gnu99","GCC_MODEL_TUNING":"G5","GCC_PRECOMPILE_PREFIX_HEADER":"YES","GCC_PREFIX_HEADER":"GuyMcdoooooTipop_Prefix.pch","GCC_PREPROCESSOR_DEFINITIONS":"TI_VERSION=$(TI_VERSION)","GCC_TREAT_WARNINGS_AS_ERRORS":"NO","GCC_VERSION":"","GCC_WARN_ABOUT_RETURN_TYPE":"NO","GCC_WARN_MISSING_PARENTHESES":"NO","GCC_WARN_SHADOW":"NO","GCC_WARN_STRICT_SELECTOR_MATCH":"NO","GCC_WARN_UNUSED_FUNCTION":"YES","GCC_WARN_UNUSED_PARAMETER":"NO","GCC_WARN_UNUSED_VALUE":"NO","GCC_WARN_UNUSED_VARIABLE":"NO","INSTALL_PATH":"/usr/local/lib","IPHONEOS_DEPLOYMENT_TARGET":"12.1","LIBRARY_SEARCH_PATHS":"","OTHER_CFLAGS":"-DTI_POST_1_2","OTHER_LDFLAGS":"","PRODUCT_NAME":"GuyMcdoooooTipop","RUN_CLANG_STATIC_ANALYZER":"NO","SDKROOT":"iphoneos","USER_HEADER_SEARCH_PATHS":""},"guid":"2a4102536f17908285d1029bcab6736755b1ae4b823ccb5f6c7adaf771f732c1","name":"Release"}],"buildPhases":[{"buildFiles":[{"fileReference":"2a4102536f17908285d1029bcab673670477cf0eefe6dc0273a15133daf27952","guid":"2a4102536f17908285d1029bcab6736721fd7457182851399ac28aa1e79d16ec"},{"fileReference":"2a4102536f17908285d1029bcab673672a7f9b1decc44cac8ffa1feb9d4ad82f","guid":"2a4102536f17908285d1029bcab673673a306253e2856ad01a7978ba44b84c18"},{"fileReference":"2a4102536f17908285d1029bcab67367520ff038c6bd84fc87f0ea86e85b0d7c","guid":"2a4102536f17908285d1029bcab67367de4c46f53473b59cb34622b58b050b55"},{"fileReference":"2a4102536f17908285d1029bcab673670eb88a4cff41a652298a1bdf640ba70a","guid":"2a4102536f17908285d1029bcab6736794d8b8c7b52489a4557f5d023a4ad304"},{"fileReference":"2a4102536f17908285d1029bcab67367bedfedfe9199ebf2ae5f22ca93ad4fb6","guid":"2a4102536f17908285d1029bcab67367af0f242380459fcb9493437886dd9882"},{"fileReference":"2a4102536f17908285d1029bcab673676eb330cd7367c88c9c45cd9e100ac8f2","guid":"2a4102536f17908285d1029bcab67367d035bf6c8b56d79df76e08e6b99fcf4a"},{"fileReference":"2a4102536f17908285d1029bcab6736779bac3f89460b76ce1e2182e1a9441cd","guid":"2a4102536f17908285d1029bcab67367a12c6b47ba183fbf913f213046cc8776"},{"fileReference":"2a4102536f17908285d1029bcab673676394e27bde1fd4f96ce86201e3f113fe","guid":"2a4102536f17908285d1029bcab6736729b0a63f56278bd8c7727b27d0c21b73"},{"fileReference":"2a4102536f17908285d1029bcab673672a1eda3d285193f25fc35ebaf28d2188","guid":"2a4102536f17908285d1029bcab67367b834ed739e1c3c90b679b2d543e7479f"},{"fileReference":"2a4102536f17908285d1029bcab67367a9c0334876dbec31dce9c5ece27d60ff","guid":"2a4102536f17908285d1029bcab673677be831b03b98fbbe00ab664b689916c1"},{"fileReference":"2a4102536f17908285d1029bcab673679f48c6b6738e75afba9f02f13782ad53","guid":"2a4102536f17908285d1029bcab67367ea08d036537e25dd4f8834773120efba"},{"fileReference":"2a4102536f17908285d1029bcab673676f5bc0a826474816e4e3e2db881fb807","guid":"2a4102536f17908285d1029bcab6736703c6966cff6ef42fc6ce512b878526c3"},{"fileReference":"2a4102536f17908285d1029bcab67367195a5f202853b8dc2e2fb8559eb15e15","guid":"2a4102536f17908285d1029bcab67367427b2a5d9c7b0c662212c1390b2bdff4"},{"fileReference":"2a4102536f17908285d1029bcab673676ce41782d0c55573a951df6133791578","guid":"2a4102536f17908285d1029bcab673675c2cb92bcd076b8266eeb140b24fef1a"},{"fileReference":"2a4102536f17908285d1029bcab673672d6d7c330d27717ae7da1a00a4e4a394","guid":"2a4102536f17908285d1029bcab67367fa5f6e3cb4574b9acb9c5f0b494aec3d"},{"fileReference":"2a4102536f17908285d1029bcab67367992f6951c5ba1eb7ef2fc78577d8df87","guid":"2a4102536f17908285d1029bcab67367002d3807654a4007914a6ad379ce6fab"},{"fileReference":"2a4102536f17908285d1029bcab673676db70696d85c1b739973c59d77ed4ce1","guid":"2a4102536f17908285d1029bcab673677c7167ba03cfcbcc8e5fdf6dfa632d68"},{"fileReference":"2a4102536f17908285d1029bcab673678b1a1cfd30650ef9ca46d3b2ba748132","guid":"2a4102536f17908285d1029bcab673678dab37e81f9507a1c7ab02c2438712c6"},{"fileReference":"2a4102536f17908285d1029bcab67367374344d2537d80b040f7476758bd0576","guid":"2a4102536f17908285d1029bcab6736727119c5f28ebbdaef5904675b1009f08"},{"fileReference":"2a4102536f17908285d1029bcab673676e68a455bc5477b10924198db537a7c1","guid":"2a4102536f17908285d1029bcab67367401f35f0086bb9d395aaa768267e3ab8"},{"fileReference":"2a4102536f17908285d1029bcab67367a7c72589194c16802a82644d98115dcd","guid":"2a4102536f17908285d1029bcab67367e254c6d8097bb408736a3320706a2c6b"},{"fileReference":"2a4102536f17908285d1029bcab67367df89afd2351f08331708ce72d67a9f13","guid":"2a4102536f17908285d1029bcab67367b2ae2b13dccb1c32dd11188ff9270691"},{"fileReference":"2a4102536f17908285d1029bcab673678eff51c89b978fad6d1c0a30c6c53d58","guid":"2a4102536f17908285d1029bcab67367060e215f11af3d9742c541f13a826917"},{"fileReference":"2a4102536f17908285d1029bcab67367b9958b8fb761ff5ab5d7d53fdfde237d","guid":"2a4102536f17908285d1029bcab6736740254073146319873e77d8ce7e04687e"},{"fileReference":"2a4102536f17908285d1029bcab6736794eaba89e978ef7502723be10bc4b56e","guid":"2a4102536f17908285d1029bcab673678c68de5bd0df0f09f6c365ad3179b386"},{"fileReference":"2a4102536f17908285d1029bcab67367ea1db49d0bdbfda0f0e98119d6d998b5","guid":"2a4102536f17908285d1029bcab673677871ee143bce41b62a6e186bd38964d9"},{"fileReference":"2a4102536f17908285d1029bcab67367b78ca7d61c59e169eea5bd6b3d46950e","guid":"2a4102536f17908285d1029bcab67367bbd105790085e5fc1c1f09faf9864fd3"},{"fileReference":"2a4102536f17908285d1029bcab673675ebd6e9b4b04d97350eebbe8d4fc8330","guid":"2a4102536f17908285d1029bcab67367c7c76f0a197463b1a5a2ca79a9926a97"},{"fileReference":"2a4102536f17908285d1029bcab67367128a04207983005889f50ae5ed409bcc","guid":"2a4102536f17908285d1029bcab6736771e3bd72caea8cf276fc722d06578d33"},{"fileReference":"2a4102536f17908285d1029bcab67367136ac9054312b32582489ab9cd500a46","guid":"2a4102536f17908285d1029bcab67367694461fc7aca4e019819ba9cc7f3e191"},{"fileReference":"2a4102536f17908285d1029bcab67367f9d8a543bfd9637634355540398ec668","guid":"2a4102536f17908285d1029bcab67367ebfadfbb8c1a48229d39560f3f613654"},{"fileReference":"2a4102536f17908285d1029bcab673671f9a027de3985f1f170f00cb42faefac","guid":"2a4102536f17908285d1029bcab67367b59f99b0796e061cf85e75211dc8c6fd"},{"fileReference":"2a4102536f17908285d1029bcab67367ca8baead07dfcbbd1d389cebc5a949b4","guid":"2a4102536f17908285d1029bcab6736789aa26f4f2df05a604fa6ce46c104dbc"},{"fileReference":"2a4102536f17908285d1029bcab673674027ebd78ca0daa1361f3fc13a5747b5","guid":"2a4102536f17908285d1029bcab673675e39b2ee3318fbc43bdc11c93b9444a3"},{"fileReference":"2a4102536f17908285d1029bcab673671af1c6cdb0da165487f68e0cf50436fd","guid":"2a4102536f17908285d1029bcab6736782ab003dd6e91a731b8dc28c89648075"},{"fileReference":"2a4102536f17908285d1029bcab673674a673e5e989bd68063506581d0c3f82b","guid":"2a4102536f17908285d1029bcab67367f681d5e32e2ee9d103e8fc1431c23a3a"},{"fileReference":"2a4102536f17908285d1029bcab67367c5cd440e66c5ba5b551e2ea12c3ff034","guid":"2a4102536f17908285d1029bcab673674856488b57f001df0fd9516bd62f2820"},{"fileReference":"2a4102536f17908285d1029bcab673678310d5d3c4fd50e4d6f800a8db44d850","guid":"2a4102536f17908285d1029bcab673671792cedd72aa9ef1030e909d6ee8503b"}],"guid":"2a4102536f17908285d1029bcab673677ed2a460469186fd4553e7d30d5ba496","type":"com.apple.buildphase.headers"},{"buildFiles":[{"fileReference":"2a4102536f17908285d1029bcab6736785de645dc90624f9c0d0917bcd5a2afd","guid":"2a4102536f17908285d1029bcab6736781a4c4e49999cfbdee4529df534ccc97"},{"fileReference":"2a4102536f17908285d1029bcab673679a5f6703969a438fdc8077bfd70cab33","guid":"2a4102536f17908285d1029bcab673673e7c6cfcb2462c36e9e1174ee3b0a1fe"},{"fileReference":"2a4102536f17908285d1029bcab6736768348bfcc41a9adeec183138d7ba1021","guid":"2a4102536f17908285d1029bcab6736756d13951a6a41dc1354e03e418867ea7"},{"fileReference":"2a4102536f17908285d1029bcab67367953953e697feb363fe0393d3d53ebef4","guid":"2a4102536f17908285d1029bcab6736798d128d6930c731ad3ff48b4a8f1867d"},{"fileReference":"2a4102536f17908285d1029bcab67367b8197eae91db67e4f81670931e8ba271","guid":"2a4102536f17908285d1029bcab6736736c9b2b525a4485003f9e227a1fa1b42"},{"fileReference":"2a4102536f17908285d1029bcab67367ac6d2bd335c0c3b2e76c01da6f338a77","guid":"2a4102536f17908285d1029bcab67367f2793a17df0cf5c041aa9b9e827ce5af"},{"fileReference":"2a4102536f17908285d1029bcab673673053bab69af10591ea831e1e6e159868","guid":"2a4102536f17908285d1029bcab67367dfe7764b9d1bcbdd7767ba602b6dc161"},{"fileReference":"2a4102536f17908285d1029bcab6736708971d8ad2719c4e2a6ecad2e10315c0","guid":"2a4102536f17908285d1029bcab67367570cea67cf459110bf7648dd309a19a9"},{"fileReference":"2a4102536f17908285d1029bcab67367f947849271008e56914118ad0b23b7a1","guid":"2a4102536f17908285d1029bcab67367b6c7c8ccd640369a11a796e7dab4e78f"},{"fileReference":"2a4102536f17908285d1029bcab67367ca3936be73ea75285f61bfb6504fb399","guid":"2a4102536f17908285d1029bcab6736748c16606c6b69cde3a4c890136d486c8"},{"fileReference":"2a4102536f17908285d1029bcab67367490f8d5b3aedf0c5a655d70000b05cd8","guid":"2a4102536f17908285d1029bcab67367eb1c19e0ad6b3581fbdc8cbd3523ca60"},{"fileReference":"2a4102536f17908285d1029bcab67367707051f6c8df34108e6c9b67c38e3e8f","guid":"2a4102536f17908285d1029bcab67367a8be09cfa18f2e3862231198de72829e"},{"fileReference":"2a4102536f17908285d1029bcab673672de9a1c3c89fb9ee6056f28911131c9f","guid":"2a4102536f17908285d1029bcab67367461ccb86cc6be42a98eaab0ae3e32298"},{"fileReference":"2a4102536f17908285d1029bcab673672e43c6e69934c450019618d2ff5ccaaa","guid":"2a4102536f17908285d1029bcab67367ce6b9ac5c03a39cd5ef66228364d9d16"},{"fileReference":"2a4102536f17908285d1029bcab67367b9f083e8cee2e7a9cf2d954a9aa9a7e7","guid":"2a4102536f17908285d1029bcab67367a811e6a5a3fef67eaf3d8c60432f4cb3"},{"fileReference":"2a4102536f17908285d1029bcab673672db44f1e1110bd8d7179aece991f46f5","guid":"2a4102536f17908285d1029bcab6736752a6498e86b079af822986fa7ba5ef2f"},{"fileReference":"2a4102536f17908285d1029bcab673672e746add1b9afee556bcdd4ff4bdf74d","guid":"2a4102536f17908285d1029bcab67367d5f857a74399a7c3a42871e4274e92ca"},{"fileReference":"2a4102536f17908285d1029bcab6736702f26f062aadd0434ac0d5ed9cf436a4","guid":"2a4102536f17908285d1029bcab67367a29adeba9ba831eea2f3e345710ce4fa"},{"fileReference":"2a4102536f17908285d1029bcab67367acc437135f2a65e2f0b4bf8090fe3562","guid":"2a4102536f17908285d1029bcab67367d78b5636ebe0c09197c0d79875d237ca"},{"fileReference":"2a4102536f17908285d1029bcab673674dce39f349fcef423b223088c8116766","guid":"2a4102536f17908285d1029bcab67367f2782c4b8c41a8fe75ef3019f5d64397"},{"fileReference":"2a4102536f17908285d1029bcab67367a437a5c1876546e4c2a97017e0a8d699","guid":"2a4102536f17908285d1029bcab67367a40146f5288293d179b737368f7d4b73"},{"fileReference":"2a4102536f17908285d1029bcab67367f0b1a30d7c8a834ce54af0c8a259967d","guid":"2a4102536f17908285d1029bcab67367a39065c5dbca45342955d83405d67542"}],"guid":"2a4102536f17908285d1029bcab673670d32490aa660aef98646b4898ea1f0cc","type":"com.apple.buildphase.sources"},{"buildFiles":[{"fileReference":"2a4102536f17908285d1029bcab67367c7dd94f5ddae56a646898cd9e43f12af","guid":"2a4102536f17908285d1029bcab67367de72c79957f0e1152975ec68d86b9432"},{"fileReference":"2a4102536f17908285d1029bcab673679261c44e8adf51c81b9bf505497c0b33","guid":"2a4102536f17908285d1029bcab67367c275b5e28ee55078473bfa46d1b7c0c4"},{"fileReference":"2a4102536f17908285d1029bcab67367931d6996d0a4fb6be6a97f040381db06","guid":"2a4102536f17908285d1029bcab673679cd8c821160c4415cee7205453728e9d"}],"guid":"2a4102536f17908285d1029bcab6736777d87ec464ac6336da843967e13cab40","type":"com.apple.buildphase.frameworks"}],"buildRules":[],"dependencies":[],"guid":"2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082","name":"tipop","predominantSourceCodeLanguage":"Xcode.SourceCodeLanguage.Objective-C-Plus-Plus","productReference":{"guid":"2a4102536f17908285d1029bcab67367b754e1749123d559fec74bdd7d06ac57","name":"libGuyMcdoooooTipop.a","type":"product"},"productTypeIdentifier":"com.apple.product-type.library.static","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"","configurationName":"Debug","legacyTeamID":"","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"","configurationName":"Release","legacyTeamID":"","provisioningStyle":0}],"type":"standard"} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=306bfa1a7c47583e44b982d75669a352_subobjects=17590ac8e937126ca51534d0cbd3e62a-json b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=306bfa1a7c47583e44b982d75669a352_subobjects=17590ac8e937126ca51534d0cbd3e62a-json new file mode 100644 index 0000000..9645306 --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=306bfa1a7c47583e44b982d75669a352_subobjects=17590ac8e937126ca51534d0cbd3e62a-json @@ -0,0 +1 @@ +{"guid":"7414afe103131688b08f66d5aff81900","name":"tipop","path":"/Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj/project.xcworkspace","projects":["PROJECT@v11_mod=1631551839.4828591_hash=2a4102536f17908285d1029bcab67367"]} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=306bfa1a7c47583e44b982d75669a352_subobjects=185476621c3f8ad65dc3eea63c176bc6-json b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=306bfa1a7c47583e44b982d75669a352_subobjects=185476621c3f8ad65dc3eea63c176bc6-json new file mode 100644 index 0000000..85b2790 --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=306bfa1a7c47583e44b982d75669a352_subobjects=185476621c3f8ad65dc3eea63c176bc6-json @@ -0,0 +1 @@ +{"guid":"8170c099381690cf4927789cd79fafdc","name":"tipop","path":"/Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj/project.xcworkspace","projects":["PROJECT@v11_mod=1631551692.830932_hash=d1d02f3c366ce2d9916f628a00f841ff"]} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=306bfa1a7c47583e44b982d75669a352_subobjects=194ae510f7e84c4852a82450b8397ab3-json b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=306bfa1a7c47583e44b982d75669a352_subobjects=194ae510f7e84c4852a82450b8397ab3-json new file mode 100644 index 0000000..44a7729 --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=306bfa1a7c47583e44b982d75669a352_subobjects=194ae510f7e84c4852a82450b8397ab3-json @@ -0,0 +1 @@ +{"guid":"7414afe103131688b08f66d5aff81900","name":"tipop","path":"/Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj/project.xcworkspace","projects":["PROJECT@v11_mod=1631552056.9528859_hash=2a4102536f17908285d1029bcab67367"]} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=306bfa1a7c47583e44b982d75669a352_subobjects=2d19de962dd4fa54a7016bcfaab72d0f-json b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=306bfa1a7c47583e44b982d75669a352_subobjects=2d19de962dd4fa54a7016bcfaab72d0f-json new file mode 100644 index 0000000..2843567 --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=306bfa1a7c47583e44b982d75669a352_subobjects=2d19de962dd4fa54a7016bcfaab72d0f-json @@ -0,0 +1 @@ +{"guid":"7414afe103131688b08f66d5aff81900","name":"tipop","path":"/Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj/project.xcworkspace","projects":["PROJECT@v11_mod=1631552761.470097_hash=2a4102536f17908285d1029bcab67367"]} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=306bfa1a7c47583e44b982d75669a352_subobjects=3e4ccd42b922d1d0bb7440b4ca731780-json b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=306bfa1a7c47583e44b982d75669a352_subobjects=3e4ccd42b922d1d0bb7440b4ca731780-json new file mode 100644 index 0000000..93556cd --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=306bfa1a7c47583e44b982d75669a352_subobjects=3e4ccd42b922d1d0bb7440b4ca731780-json @@ -0,0 +1 @@ +{"guid":"8170c099381690cf4927789cd79fafdc","name":"tipop","path":"/Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj/project.xcworkspace","projects":["PROJECT@v11_mod=1631551839.4828591_hash=d1d02f3c366ce2d9916f628a00f841ff"]} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=306bfa1a7c47583e44b982d75669a352_subobjects=4e74d201585131f33595a2358565c783-json b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=306bfa1a7c47583e44b982d75669a352_subobjects=4e74d201585131f33595a2358565c783-json new file mode 100644 index 0000000..d15b978 --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=306bfa1a7c47583e44b982d75669a352_subobjects=4e74d201585131f33595a2358565c783-json @@ -0,0 +1 @@ +{"guid":"7414afe103131688b08f66d5aff81900","name":"tipop","path":"/Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj/project.xcworkspace","projects":["PROJECT@v11_mod=1631552567.978825_hash=2a4102536f17908285d1029bcab67367"]} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=306bfa1a7c47583e44b982d75669a352_subobjects=b416dbd0053212d2646894b98d5383fa-json b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=306bfa1a7c47583e44b982d75669a352_subobjects=b416dbd0053212d2646894b98d5383fa-json new file mode 100644 index 0000000..acd458f --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=306bfa1a7c47583e44b982d75669a352_subobjects=b416dbd0053212d2646894b98d5383fa-json @@ -0,0 +1 @@ +{"guid":"8170c099381690cf4927789cd79fafdc","name":"tipop","path":"/Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj/project.xcworkspace","projects":["PROJECT@v11_mod=1625697734.0_hash=d1d02f3c366ce2d9916f628a00f841ff"]} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=306bfa1a7c47583e44b982d75669a352_subobjects=ff111be167d239acfde2f8a942416d5c-json b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=306bfa1a7c47583e44b982d75669a352_subobjects=ff111be167d239acfde2f8a942416d5c-json new file mode 100644 index 0000000..c07720a --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/PIFCache/workspace/WORKSPACE@v11_hash=306bfa1a7c47583e44b982d75669a352_subobjects=ff111be167d239acfde2f8a942416d5c-json @@ -0,0 +1 @@ +{"guid":"7414afe103131688b08f66d5aff81900","name":"tipop","path":"/Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj/project.xcworkspace","projects":["PROJECT@v11_mod=1631551692.830932_hash=2a4102536f17908285d1029bcab67367"]} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/build.db b/iphone/build/Intermediates.noindex/XCBuildData/build.db new file mode 100644 index 0000000..a73fdfe Binary files /dev/null and b/iphone/build/Intermediates.noindex/XCBuildData/build.db differ diff --git a/iphone/build/Intermediates.noindex/XCBuildData/c5c1bc561ad1b9585ab7920f06337adb-buildRequest.json b/iphone/build/Intermediates.noindex/XCBuildData/c5c1bc561ad1b9585ab7920f06337adb-buildRequest.json new file mode 100644 index 0000000..7f41c81 --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/c5c1bc561ad1b9585ab7920f06337adb-buildRequest.json @@ -0,0 +1,57 @@ +{ + "_buildCommand2" : { + "command" : "build", + "skipDependencies" : false, + "style" : "buildOnly" + }, + "buildCommand" : "build", + "configuredTargets" : [ + { + "guid" : "2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082" + } + ], + "containerPath" : "/Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj", + "continueBuildingAfterErrors" : false, + "enableIndexBuildArena" : false, + "hideShellScriptEnvironment" : false, + "parameters" : { + "action" : "build", + "activeArchitecture" : "x86_64", + "activeRunDestination" : { + "disableOnlyActiveArch" : false, + "platform" : "macosx", + "sdk" : "macosx12.0", + "sdkVariant" : "iosmac", + "supportedArchitectures" : [ + "x86_64h", + "x86_64" + ], + "targetArchitecture" : "x86_64" + }, + "arenaInfo" : { + "buildIntermediatesPath" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex", + "buildProductsPath" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products", + "derivedDataPath" : "/Users/marcbender/Library/Developer/Xcode/DerivedData", + "indexDataStoreFolderPath" : "/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore", + "indexEnableDataStore" : true, + "indexPCHPath" : "/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/PrecompiledHeaders", + "pchPath" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders" + }, + "configurationName" : "Debug", + "overrides" : { + "synthesized" : { + "table" : { + "ENABLE_PREVIEWS" : "NO" + } + } + } + }, + "schemeCommand" : "launch", + "schemeCommand2" : "launch", + "shouldCollectMetrics" : false, + "showNonLoggedProgress" : true, + "useDryRun" : false, + "useImplicitDependencies" : true, + "useLegacyBuildLocations" : false, + "useParallelTargets" : true +} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/c5c1bc561ad1b9585ab7920f06337adb-desc.xcbuild b/iphone/build/Intermediates.noindex/XCBuildData/c5c1bc561ad1b9585ab7920f06337adb-desc.xcbuild new file mode 100644 index 0000000..e22b6d7 Binary files /dev/null and b/iphone/build/Intermediates.noindex/XCBuildData/c5c1bc561ad1b9585ab7920f06337adb-desc.xcbuild differ diff --git a/iphone/build/Intermediates.noindex/XCBuildData/c5c1bc561ad1b9585ab7920f06337adb-manifest.xcbuild b/iphone/build/Intermediates.noindex/XCBuildData/c5c1bc561ad1b9585ab7920f06337adb-manifest.xcbuild new file mode 100644 index 0000000..6d2f5cb --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/c5c1bc561ad1b9585ab7920f06337adb-manifest.xcbuild @@ -0,0 +1,92 @@ +client: + name: basic + version: 0 + file-system: default + +targets: + "": [""] + +nodes: + "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex": {"is-mutated":true} + "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products": {"is-mutated":true} + "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst": {"is-mutated":true} + +commands: + "::CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex","inputs":[],"outputs":["","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex"]} + "::CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products","inputs":[],"outputs":["","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products"]} + "::CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products"],"outputs":["","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst"]} + "::ProcessXCFramework /Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/Frameworks/TitaniumKit.xcframework /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework ios macabi": {"tool":"process-xcframework","description":"ProcessXCFramework /Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/Frameworks/TitaniumKit.xcframework /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework ios macabi","inputs":["/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/Frameworks/TitaniumKit.xcframework/","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst"],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Modules","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Resources","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/TitaniumKit","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APIModule.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSAnalytics.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPClient.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPHelper.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPPostForm.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPRequest.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPResponse.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Bridge.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ImageLoader.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/JSValue+Addons.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollBridge.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollCallback.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollContext.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollObject.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollPromise.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollWrapper.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/LayoutConstraint.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ListenerEntry.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Mimetypes.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Module.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/NSData+Additions.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ObjcModule.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ObjcProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/OperationQueue.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/SBJSON.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Ti2DMatrix.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Ti3DMatrix.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiAnimation.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiApp.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBase.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBindingRunLoop.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBlob.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBuffer.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiColor.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiComplexValue.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiControllerProtocols.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiDefines.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiDimension.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiEvaluator.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiExceptionHandler.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFile.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFilesystemFileProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFilesystemFileStreamProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiGradient.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiHost.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLayoutQueue.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLocale.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLogServer.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiModule.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiPoint.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiPublicAPI.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiRect.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiRootViewController.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiSharedConfig.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiStreamProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiStylesheet.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiTab.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiTabGroup.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiThreading.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiToolbar.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIView.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIViewProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIWindow.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIWindowProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIiOSTransitionAnimationProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUtils.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewController.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewTemplate.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiWindowProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TitaniumKit.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+Alpha.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+Resize.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+RoundedCorner.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/WebFont.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Webcolor.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Modules","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Modules/module.modulemap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Resources","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Resources/Info.plist","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/TitaniumKit","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/_CodeSignature","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/_CodeSignature/CodeResources","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/Current"]} + "": {"tool":"phony","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/libGuyMcdoooooTipop.a","",""],"outputs":[""]} + "": {"tool":"stale-file-removal","expectedOutputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/libGuyMcdoooooTipop.a","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/all-product-headers.yaml"],"roots":["/tmp/GuyMcdoooooTipop.dst","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products"],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-ChangePermissions": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-CodeSign": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-CopyAside": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-RegisterProduct": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-StripSymbols": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-Validate": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--CopySwiftPackageResourcesTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--DocumentationTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--HeadermapTaskProducer": {"tool":"phony","inputs":["","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/all-product-headers.yaml"],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--InfoPlistTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--ModuleMapTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["","","","","","","","","","","","","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--ProductStructureTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--SanitizerTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--StubBinaryTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--SwiftABIBaselineGenerationTaskProducer": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--SwiftFrameworkABICheckerTaskProducer": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--TestHostTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--TestTargetTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--VersionPlistTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--begin-compiling": {"tool":"phony","inputs":["","","","","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Modules","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Resources","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/TitaniumKit","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APIModule.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSAnalytics.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPClient.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPHelper.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPPostForm.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPRequest.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPResponse.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Bridge.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ImageLoader.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/JSValue+Addons.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollBridge.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollCallback.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollContext.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollObject.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollPromise.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollWrapper.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/LayoutConstraint.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ListenerEntry.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Mimetypes.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Module.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/NSData+Additions.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ObjcModule.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ObjcProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/OperationQueue.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/SBJSON.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Ti2DMatrix.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Ti3DMatrix.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiAnimation.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiApp.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBase.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBindingRunLoop.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBlob.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBuffer.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiColor.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiComplexValue.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiControllerProtocols.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiDefines.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiDimension.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiEvaluator.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiExceptionHandler.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFile.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFilesystemFileProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFilesystemFileStreamProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiGradient.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiHost.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLayoutQueue.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLocale.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLogServer.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiModule.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiPoint.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiPublicAPI.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiRect.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiRootViewController.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiSharedConfig.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiStreamProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiStylesheet.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiTab.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiTabGroup.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiThreading.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiToolbar.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIView.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIViewProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIWindow.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIWindowProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIiOSTransitionAnimationProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUtils.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewController.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewTemplate.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiWindowProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TitaniumKit.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+Alpha.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+Resize.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+RoundedCorner.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/WebFont.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Webcolor.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Modules","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Modules/module.modulemap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Resources","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Resources/Info.plist","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/TitaniumKit","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/_CodeSignature","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/_CodeSignature/CodeResources","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/Current"],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--copy-headers-completion": {"tool":"phony","inputs":[""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--end": {"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/all-product-headers.yaml"],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--entry": {"tool":"phony","inputs":["","","","","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Modules","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Resources","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/TitaniumKit","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APIModule.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSAnalytics.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPClient.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPHelper.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPPostForm.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPRequest.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPResponse.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Bridge.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ImageLoader.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/JSValue+Addons.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollBridge.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollCallback.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollContext.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollObject.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollPromise.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollWrapper.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/LayoutConstraint.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ListenerEntry.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Mimetypes.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Module.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/NSData+Additions.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ObjcModule.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ObjcProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/OperationQueue.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/SBJSON.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Ti2DMatrix.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Ti3DMatrix.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiAnimation.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiApp.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBase.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBindingRunLoop.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBlob.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBuffer.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiColor.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiComplexValue.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiControllerProtocols.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiDefines.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiDimension.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiEvaluator.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiExceptionHandler.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFile.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFilesystemFileProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFilesystemFileStreamProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiGradient.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiHost.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLayoutQueue.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLocale.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLogServer.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiModule.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiPoint.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiPublicAPI.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiRect.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiRootViewController.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiSharedConfig.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiStreamProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiStylesheet.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiTab.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiTabGroup.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiThreading.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiToolbar.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIView.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIViewProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIWindow.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIWindowProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIiOSTransitionAnimationProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUtils.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewController.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewTemplate.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiWindowProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TitaniumKit.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+Alpha.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+Resize.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+RoundedCorner.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/WebFont.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Webcolor.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Modules","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Modules/module.modulemap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Resources","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Resources/Info.plist","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/TitaniumKit","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/_CodeSignature","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/_CodeSignature/CodeResources","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/Current",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--generated-headers": {"tool":"phony","inputs":[""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--immediate": {"tool":"phony","inputs":["","","","","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Modules","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Resources","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/TitaniumKit","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APIModule.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSAnalytics.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPClient.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPHelper.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPPostForm.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPRequest.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPResponse.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Bridge.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ImageLoader.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/JSValue+Addons.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollBridge.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollCallback.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollContext.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollObject.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollPromise.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollWrapper.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/LayoutConstraint.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ListenerEntry.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Mimetypes.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Module.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/NSData+Additions.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ObjcModule.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ObjcProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/OperationQueue.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/SBJSON.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Ti2DMatrix.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Ti3DMatrix.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiAnimation.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiApp.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBase.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBindingRunLoop.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBlob.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBuffer.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiColor.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiComplexValue.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiControllerProtocols.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiDefines.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiDimension.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiEvaluator.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiExceptionHandler.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFile.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFilesystemFileProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFilesystemFileStreamProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiGradient.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiHost.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLayoutQueue.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLocale.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLogServer.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiModule.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiPoint.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiPublicAPI.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiRect.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiRootViewController.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiSharedConfig.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiStreamProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiStylesheet.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiTab.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiTabGroup.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiThreading.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiToolbar.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIView.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIViewProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIWindow.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIWindowProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIiOSTransitionAnimationProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUtils.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewController.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewTemplate.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiWindowProxy.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TitaniumKit.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+Alpha.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+Resize.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+RoundedCorner.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/WebFont.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Webcolor.h","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Modules","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Modules/module.modulemap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Resources","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Resources/Info.plist","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/TitaniumKit","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/_CodeSignature","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/_CodeSignature/CodeResources","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/Current"],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--modules-ready": {"tool":"phony","inputs":[""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--package-copy-files-phase": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--phase0-copy-headers": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--phase1-compile-sources": {"tool":"phony","inputs":["","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList"],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--unsigned-product-ready": {"tool":"phony","inputs":["","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList"],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--will-sign": {"tool":"phony","inputs":[""],"outputs":[""]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.d"],"deps-style":"makefile","signature":"76821c364e5f792ec816e7255d15ec09"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.d"],"deps-style":"makefile","signature":"74a7acca422d623a3bfcc924b6ce45f2"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.d"],"deps-style":"makefile","signature":"17e69bc138952544d0576f0429df708f"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.d"],"deps-style":"makefile","signature":"f5524122e0b5d420cf622557b4f0a7e9"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.d"],"deps-style":"makefile","signature":"7a4cbd7940c1e0404f57a648edf7d2c6"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.d"],"deps-style":"makefile","signature":"da2ca52a3548b4f7c1164ce7c48fac6a"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.d"],"deps-style":"makefile","signature":"e56fa36d18deb9f0920ad833a9948288"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.d"],"deps-style":"makefile","signature":"1b18e391d2f3e2304078d62e0ac71f36"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.d"],"deps-style":"makefile","signature":"44722890aa3e10fcfad27ea0be21bd9c"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.d"],"deps-style":"makefile","signature":"0986c75e2ef89934169df98ac5ca7147"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.d"],"deps-style":"makefile","signature":"fafe7616326b4cff0c8e3775a7beb37d"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.d"],"deps-style":"makefile","signature":"9c472d47f848cab63b8ffc8ed86ec3b5"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.d"],"deps-style":"makefile","signature":"9736a7e568e601a7decf6df0c9e18ad1"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.d"],"deps-style":"makefile","signature":"0ee96fa6f77459b2a307c387da65b2b0"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.d"],"deps-style":"makefile","signature":"6e9788eeb619284a593fcaf913810e52"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.d"],"deps-style":"makefile","signature":"4299594ae592513a2c60d01977c11bf7"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.d"],"deps-style":"makefile","signature":"113e3a125dcc914d8708a5758ff4ff88"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.d"],"deps-style":"makefile","signature":"5856dc90d9532461f0d5f57ad7782f2d"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.d"],"deps-style":"makefile","signature":"b901bb137b5608dc605f08af58cefe5d"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.d"],"deps-style":"makefile","signature":"6bb67693d8875f76663ea73d30614caf"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.d"],"deps-style":"makefile","signature":"7d3192d2169aae6e493e67702438cd0c"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-DTI_VERSION=","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.d"],"deps-style":"makefile","signature":"5618a9d8cba9d71a9282022f604444bd"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:Libtool /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/libGuyMcdoooooTipop.a normal": {"tool":"shell","description":"Libtool /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/libGuyMcdoooooTipop.a normal","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/libGuyMcdoooooTipop.a",""],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool","-static","-arch_only","x86_64","-D","-syslibroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-L/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-L/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/lib","-L/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/maccatalyst","-filelist","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList","-framework","TitaniumKit","-framework","Foundation","-framework","SceneKit","-dependency_info","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop_libtool_dependency_info.dat","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/libGuyMcdoooooTipop.a"],"env":{"MACOSX_DEPLOYMENT_TARGET":"10.15"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop_libtool_dependency_info.dat"],"deps-style":"dependency-info","signature":"6aabcd9656e000386221b08eff435a8a"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:ProcessPCH /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"ProcessPCH /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c-header","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","-MD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.d","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.dia"],"env":{},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.d"],"deps-style":"makefile","signature":"643ceb0ca9c18c0e11022223635a44c9"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++-header","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","-MD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.d","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.dia"],"env":{},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.d"],"deps-style":"makefile","signature":"974dae6966b9bdbe06c6067593e1bd9d"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++-header","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-DTI_VERSION=","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","-MD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.d","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.dia"],"env":{},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.d"],"deps-style":"makefile","signature":"4aa6ce2a894ab42df88d3b9e87b660c0"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/all-product-headers.yaml","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/all-product-headers.yaml"]} + diff --git a/iphone/build/Intermediates.noindex/XCBuildData/c5c1bc561ad1b9585ab7920f06337adb-targetGraph.txt b/iphone/build/Intermediates.noindex/XCBuildData/c5c1bc561ad1b9585ab7920f06337adb-targetGraph.txt new file mode 100644 index 0000000..c15bcff --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/c5c1bc561ad1b9585ab7920f06337adb-targetGraph.txt @@ -0,0 +1,2 @@ +Target dependency graph (1 target) +tipop in tipop, no dependencies \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/e12380fd5a741a4c9dee8f2dc8b89cdb-buildRequest.json b/iphone/build/Intermediates.noindex/XCBuildData/e12380fd5a741a4c9dee8f2dc8b89cdb-buildRequest.json new file mode 100644 index 0000000..e07a5e3 --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/e12380fd5a741a4c9dee8f2dc8b89cdb-buildRequest.json @@ -0,0 +1,59 @@ +{ + "buildCommand" : "build", + "configuredTargets" : [ + { + "guid" : "d1d02f3c366ce2d9916f628a00f841ffa09fb951c034171470b90f08d9b4d082" + } + ], + "continueBuildingAfterErrors" : false, + "enableIndexBuildArena" : false, + "hideShellScriptEnvironment" : false, + "parameters" : { + "action" : "build", + "activeArchitecture" : "arm64", + "activeRunDestination" : { + "disableOnlyActiveArch" : false, + "platform" : "iphoneos", + "sdk" : "iphoneos14.5", + "sdkVariant" : "iphoneos", + "supportedArchitectures" : [ + "arm64e", + "arm64v8", + "arm64", + "armv8" + ], + "targetArchitecture" : "arm64" + }, + "arenaInfo" : { + "buildIntermediatesPath" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex", + "buildProductsPath" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products", + "derivedDataPath" : "/Users/marcbender/Library/Developer/Xcode/DerivedData", + "indexDataStoreFolderPath" : "/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore", + "indexEnableDataStore" : true, + "indexPCHPath" : "/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/PrecompiledHeaders", + "pchPath" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders" + }, + "configurationName" : "Debug", + "overrides" : { + "synthesized" : { + "table" : { + "ASSETCATALOG_FILTER_FOR_DEVICE_MODEL" : "iPhone13,4", + "ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION" : "15.0", + "BUILD_ACTIVE_RESOURCES_ONLY" : "YES", + "ENABLE_PREVIEWS" : "NO", + "TARGET_DEVICE_IDENTIFIER" : "00008101-000815D60210001E", + "TARGET_DEVICE_MODEL" : "iPhone13,4", + "TARGET_DEVICE_OS_VERSION" : "15.0", + "TARGET_DEVICE_PLATFORM_NAME" : "iphoneos" + } + } + } + }, + "schemeCommand" : "launch", + "shouldCollectMetrics" : false, + "showNonLoggedProgress" : true, + "useDryRun" : false, + "useImplicitDependencies" : true, + "useLegacyBuildLocations" : false, + "useParallelTargets" : true +} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/e12380fd5a741a4c9dee8f2dc8b89cdb-targetGraph.txt b/iphone/build/Intermediates.noindex/XCBuildData/e12380fd5a741a4c9dee8f2dc8b89cdb-targetGraph.txt new file mode 100644 index 0000000..9d9742f --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/e12380fd5a741a4c9dee8f2dc8b89cdb-targetGraph.txt @@ -0,0 +1,2 @@ +Target dependency graph (1 target) +tipop in tipop \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/ee7687116de56723e1e377d22d5a3213-buildRequest.json b/iphone/build/Intermediates.noindex/XCBuildData/ee7687116de56723e1e377d22d5a3213-buildRequest.json new file mode 100644 index 0000000..7f41c81 --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/ee7687116de56723e1e377d22d5a3213-buildRequest.json @@ -0,0 +1,57 @@ +{ + "_buildCommand2" : { + "command" : "build", + "skipDependencies" : false, + "style" : "buildOnly" + }, + "buildCommand" : "build", + "configuredTargets" : [ + { + "guid" : "2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082" + } + ], + "containerPath" : "/Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj", + "continueBuildingAfterErrors" : false, + "enableIndexBuildArena" : false, + "hideShellScriptEnvironment" : false, + "parameters" : { + "action" : "build", + "activeArchitecture" : "x86_64", + "activeRunDestination" : { + "disableOnlyActiveArch" : false, + "platform" : "macosx", + "sdk" : "macosx12.0", + "sdkVariant" : "iosmac", + "supportedArchitectures" : [ + "x86_64h", + "x86_64" + ], + "targetArchitecture" : "x86_64" + }, + "arenaInfo" : { + "buildIntermediatesPath" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex", + "buildProductsPath" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products", + "derivedDataPath" : "/Users/marcbender/Library/Developer/Xcode/DerivedData", + "indexDataStoreFolderPath" : "/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore", + "indexEnableDataStore" : true, + "indexPCHPath" : "/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/PrecompiledHeaders", + "pchPath" : "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders" + }, + "configurationName" : "Debug", + "overrides" : { + "synthesized" : { + "table" : { + "ENABLE_PREVIEWS" : "NO" + } + } + } + }, + "schemeCommand" : "launch", + "schemeCommand2" : "launch", + "shouldCollectMetrics" : false, + "showNonLoggedProgress" : true, + "useDryRun" : false, + "useImplicitDependencies" : true, + "useLegacyBuildLocations" : false, + "useParallelTargets" : true +} \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/XCBuildData/ee7687116de56723e1e377d22d5a3213-desc.xcbuild b/iphone/build/Intermediates.noindex/XCBuildData/ee7687116de56723e1e377d22d5a3213-desc.xcbuild new file mode 100644 index 0000000..51713ce Binary files /dev/null and b/iphone/build/Intermediates.noindex/XCBuildData/ee7687116de56723e1e377d22d5a3213-desc.xcbuild differ diff --git a/iphone/build/Intermediates.noindex/XCBuildData/ee7687116de56723e1e377d22d5a3213-manifest.xcbuild b/iphone/build/Intermediates.noindex/XCBuildData/ee7687116de56723e1e377d22d5a3213-manifest.xcbuild new file mode 100644 index 0000000..6107a62 --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/ee7687116de56723e1e377d22d5a3213-manifest.xcbuild @@ -0,0 +1,91 @@ +client: + name: basic + version: 0 + file-system: default + +targets: + "": [""] + +nodes: + "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex": {"is-mutated":true} + "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products": {"is-mutated":true} + "/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst": {"is-mutated":true} + +commands: + "::CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex","inputs":[],"outputs":["","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex"]} + "::CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products","inputs":[],"outputs":["","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products"]} + "::CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products"],"outputs":["","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst"]} + "": {"tool":"phony","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/libGuyMcdoooooTipop.a","",""],"outputs":[""]} + "": {"tool":"stale-file-removal","expectedOutputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/libGuyMcdoooooTipop.a","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/all-product-headers.yaml"],"roots":["/tmp/GuyMcdoooooTipop.dst","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products"],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-ChangePermissions": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-CodeSign": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-CopyAside": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-RegisterProduct": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-StripSymbols": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--Barrier-Validate": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--CopySwiftPackageResourcesTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--DocumentationTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--HeadermapTaskProducer": {"tool":"phony","inputs":["","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/all-product-headers.yaml"],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--InfoPlistTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--ModuleMapTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["","","","","","","","","","","","","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--ProductStructureTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--SanitizerTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--StubBinaryTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--SwiftABIBaselineGenerationTaskProducer": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--SwiftFrameworkABICheckerTaskProducer": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--TestHostTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--TestTargetTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--VersionPlistTaskProducer": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--begin-compiling": {"tool":"phony","inputs":["","","","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--copy-headers-completion": {"tool":"phony","inputs":[""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--end": {"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/all-product-headers.yaml"],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--entry": {"tool":"phony","inputs":["","","","","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--generated-headers": {"tool":"phony","inputs":[""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--immediate": {"tool":"phony","inputs":["","","","",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--modules-ready": {"tool":"phony","inputs":[""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--package-copy-files-phase": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--phase0-copy-headers": {"tool":"phony","inputs":["",""],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--phase1-compile-sources": {"tool":"phony","inputs":["","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList"],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--unsigned-product-ready": {"tool":"phony","inputs":["","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o","","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList"],"outputs":[""]} + "Gate target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082--will-sign": {"tool":"phony","inputs":[""],"outputs":[""]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.d"],"deps-style":"makefile","signature":"76821c364e5f792ec816e7255d15ec09"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.d"],"deps-style":"makefile","signature":"74a7acca422d623a3bfcc924b6ce45f2"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.d"],"deps-style":"makefile","signature":"17e69bc138952544d0576f0429df708f"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.d"],"deps-style":"makefile","signature":"f5524122e0b5d420cf622557b4f0a7e9"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.d"],"deps-style":"makefile","signature":"7a4cbd7940c1e0404f57a648edf7d2c6"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.d"],"deps-style":"makefile","signature":"da2ca52a3548b4f7c1164ce7c48fac6a"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.d"],"deps-style":"makefile","signature":"e56fa36d18deb9f0920ad833a9948288"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.d"],"deps-style":"makefile","signature":"1b18e391d2f3e2304078d62e0ac71f36"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.d"],"deps-style":"makefile","signature":"44722890aa3e10fcfad27ea0be21bd9c"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.d"],"deps-style":"makefile","signature":"0986c75e2ef89934169df98ac5ca7147"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.d"],"deps-style":"makefile","signature":"fafe7616326b4cff0c8e3775a7beb37d"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.d"],"deps-style":"makefile","signature":"9c472d47f848cab63b8ffc8ed86ec3b5"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.d"],"deps-style":"makefile","signature":"9736a7e568e601a7decf6df0c9e18ad1"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.d"],"deps-style":"makefile","signature":"0ee96fa6f77459b2a307c387da65b2b0"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.d"],"deps-style":"makefile","signature":"6e9788eeb619284a593fcaf913810e52"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.d"],"deps-style":"makefile","signature":"4299594ae592513a2c60d01977c11bf7"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.d"],"deps-style":"makefile","signature":"113e3a125dcc914d8708a5758ff4ff88"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.d"],"deps-style":"makefile","signature":"5856dc90d9532461f0d5f57ad7782f2d"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.d"],"deps-style":"makefile","signature":"b901bb137b5608dc605f08af58cefe5d"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.d"],"deps-style":"makefile","signature":"6bb67693d8875f76663ea73d30614caf"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.d"],"deps-style":"makefile","signature":"7d3192d2169aae6e493e67702438cd0c"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-DTI_VERSION=","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-include","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch","-MMD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.d","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.dia","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.d"],"deps-style":"makefile","signature":"5618a9d8cba9d71a9282022f604444bd"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:Libtool /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/libGuyMcdoooooTipop.a normal": {"tool":"shell","description":"Libtool /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/libGuyMcdoooooTipop.a normal","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/libGuyMcdoooooTipop.a",""],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool","-static","-arch_only","x86_64","-D","-syslibroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-L/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-L/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/lib","-L/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/maccatalyst","-filelist","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList","-framework","Foundation","-framework","SceneKit","-dependency_info","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop_libtool_dependency_info.dat","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/libGuyMcdoooooTipop.a"],"env":{"MACOSX_DEPLOYMENT_TARGET":"10.15"},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop_libtool_dependency_info.dat"],"deps-style":"dependency-info","signature":"5ecbe432f81496dfee8a2ba81817a546"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:ProcessPCH /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"ProcessPCH /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c-header","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu99","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","-MD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.d","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.gch","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.dia"],"env":{},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/16317369538442814481/GuyMcdoooooTipop_Prefix.pch.d"],"deps-style":"makefile","signature":"643ceb0ca9c18c0e11022223635a44c9"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c++-header","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fobjc-arc","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-implicit-atomic-properties","-Wno-objc-interface-ivars","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wduplicate-method-match","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-Wno-c++11-extensions","-DTI_VERSION=","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","-MD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.d","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.gch","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.dia"],"env":{},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/13440298615888805985/GuyMcdoooooTipop_Prefix.pch.d"],"deps-style":"makefile","signature":"974dae6966b9bdbe06c6067593e1bd9d"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","","",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch"],"args":["/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++-header","-target","x86_64-apple-ios13.1-macabi","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu++11","-stdlib=libc++","-fmodules","-fmodules-cache-path=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wunreachable-code","-Wquoted-include-in-framework-header","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wno-parentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wno-unused-value","-Wempty-body","-Wuninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wint-conversion","-Wno-bool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-DTI_VERSION=","-isysroot","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk","-fasm-blocks","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wmove","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wrange-loop-analysis","-Wno-semicolon-before-method-body","-index-store-path","/Users/marcbender/Library/Developer/Xcode/DerivedData/tipop-gcldlruulkzgurefvgeeqzyzqcdz/Index/DataStore","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst","-iframework","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks","-DDEBUG","-DTI_POST_1_2","-c","/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch","-MD","-MT","dependencies","-MF","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.d","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","-iquote","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/include","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-I/Users/marcbender/Library/Application","-ISupport/Titanium/mobilesdk/osx/10.0.0.GA","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include","-I/Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore","-isystem","/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources-normal/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources/x86_64","-I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/DerivedSources","-o","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.gch","--serialize-diagnostics","/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.dia"],"env":{},"working-directory":"/Users/marcbender/Downloads/tipop-master-2/iphone","deps":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/PrecompiledHeaders/SharedPrecompiledHeaders/7040965973235584472/GuyMcdoooooTipop_Prefix.pch.d"],"deps-style":"makefile","signature":"4aa6ce2a894ab42df88d3b9e87b660c0"} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList"]} + "target-tipop-2a4102536f17908285d1029bcab67367a09fb951c034171470b90f08d9b4d082-:Debug:WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/all-product-headers.yaml","inputs":["",""],"outputs":["/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/all-product-headers.yaml"]} + diff --git a/iphone/build/Intermediates.noindex/XCBuildData/ee7687116de56723e1e377d22d5a3213-targetGraph.txt b/iphone/build/Intermediates.noindex/XCBuildData/ee7687116de56723e1e377d22d5a3213-targetGraph.txt new file mode 100644 index 0000000..c15bcff --- /dev/null +++ b/iphone/build/Intermediates.noindex/XCBuildData/ee7687116de56723e1e377d22d5a3213-targetGraph.txt @@ -0,0 +1,2 @@ +Target dependency graph (1 target) +tipop in tipop, no dependencies \ No newline at end of file diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap new file mode 100644 index 0000000..dd8b535 Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap new file mode 100644 index 0000000..dd8b535 Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap new file mode 100644 index 0000000..dd8b535 Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap new file mode 100644 index 0000000..036f549 Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap new file mode 100644 index 0000000..f5b517c Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap new file mode 100644 index 0000000..dd8b535 Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.d b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.d new file mode 100644 index 0000000..fa53acf --- /dev/null +++ b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.d @@ -0,0 +1,21 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xcselect.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/kcdata.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/uuid.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/device.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bank.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_posix_sys_types.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_cdefs.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/dyld.modulemap \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.h diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.dia b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.dia differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o new file mode 100644 index 0000000..0a2c7e2 Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.d b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.d new file mode 100644 index 0000000..e2c4ca2 --- /dev/null +++ b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.d @@ -0,0 +1,126 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xcselect.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/kcdata.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/uuid.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/device.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bank.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_posix_sys_types.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_cdefs.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/dyld.modulemap \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiBase.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Modules/module.modulemap \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/Webcolor.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/UIImage+RoundedCorner.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/UIImage+Resize.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/UIImage+Alpha.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiUIiOSTransitionAnimationProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiViewController.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiTab.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiWindowProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiUIWindowProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiUIWindow.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiUIViewProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiToolbar.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiTabGroup.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiLogServer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiLocale.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiLayoutQueue.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiStreamProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiFilesystemFileStreamProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiFilesystemFileProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiExceptionHandler.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiComplexValue.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiBlob.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiViewTemplate.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiGradient.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiPoint.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiModule.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/ListenerEntry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/WebFont.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiFile.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiColor.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiBuffer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiUtils.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/LayoutConstraint.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiRect.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiStylesheet.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiHost.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/Bridge.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/KrollBridge.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiApp.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/Ti3DMatrix.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiBindingRunLoop.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/KrollObject.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/KrollWrapper.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/KrollCallback.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/Ti2DMatrix.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/SBJSON.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/OperationQueue.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/NSData+Additions.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/Mimetypes.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/KrollPromise.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/JSValue+Addons.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiDimension.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/ImageLoader.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/APSHTTPResponse.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/APSHTTPRequest.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/APSHTTPPostForm.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/APSHTTPHelper.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/APSHTTPClient.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/APSAnalytics.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/ObjcProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/KrollContext.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiEvaluator.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/Module.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/ObjcModule.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/APIModule.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiPublicAPI.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiThreading.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiSharedConfig.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiBase.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiHost.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiUtils.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiViewProxy.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiUILabel.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/../Classes/TiUILabel.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiUIScrollView.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/../Classes/TiUIScrollView.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/Ti3DMatrix.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/KrollCallback.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/LayoutConstraint.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POP.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.h diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.dia b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.dia new file mode 100644 index 0000000..7ae9eb3 Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.dia differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o new file mode 100644 index 0000000..5849e91 Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList new file mode 100644 index 0000000..3b24227 --- /dev/null +++ b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList @@ -0,0 +1,22 @@ +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o +/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.d b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.d new file mode 100644 index 0000000..8dffd33 --- /dev/null +++ b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.d @@ -0,0 +1,127 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xcselect.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/kcdata.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/uuid.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/device.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bank.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_posix_sys_types.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_cdefs.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/dyld.modulemap \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Modules/module.modulemap \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/Webcolor.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/UIImage+RoundedCorner.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/UIImage+Resize.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/UIImage+Alpha.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiUIiOSTransitionAnimationProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiViewController.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiTab.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiWindowProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiUIWindowProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiUIWindow.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiUIViewProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiToolbar.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiTabGroup.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiLogServer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiLocale.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiLayoutQueue.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiStreamProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiFilesystemFileStreamProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiFilesystemFileProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiExceptionHandler.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiComplexValue.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiBlob.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiViewTemplate.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiGradient.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiPoint.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiModule.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/ListenerEntry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/WebFont.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiFile.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiColor.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiBuffer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiUtils.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/LayoutConstraint.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiRect.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiStylesheet.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiHost.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/Bridge.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/KrollBridge.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiApp.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/Ti3DMatrix.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiBindingRunLoop.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/KrollObject.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/KrollWrapper.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/KrollCallback.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/Ti2DMatrix.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/SBJSON.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/OperationQueue.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/NSData+Additions.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/Mimetypes.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/KrollPromise.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/JSValue+Addons.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiDimension.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/ImageLoader.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/APSHTTPResponse.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/APSHTTPRequest.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/APSHTTPPostForm.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/APSHTTPHelper.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/APSHTTPClient.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/APSAnalytics.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/ObjcProxy.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/KrollContext.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiEvaluator.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/Module.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/ObjcModule.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/APIModule.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiPublicAPI.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiThreading.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiSharedConfig.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TiBase.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiBase.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiHost.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiUtils.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiViewProxy.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiUILabel.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/../Classes/TiUILabel.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiUIScrollView.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/../Classes/TiUIScrollView.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/Ti3DMatrix.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/KrollCallback.h \ + /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/LayoutConstraint.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POP.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.h diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.dia b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.dia new file mode 100644 index 0000000..d960185 Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.dia differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o new file mode 100644 index 0000000..0e17f2e Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.d b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.d new file mode 100644 index 0000000..d9751d7 --- /dev/null +++ b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.d @@ -0,0 +1,21 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/xcselect.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/kcdata.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/uuid.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet6.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/device.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_debug.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach_machine.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/bank.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_posix_sys_types.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/netinet.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/net.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/darwin_cdefs.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/mach-o/dyld.modulemap \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.h diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.dia b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.dia differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o new file mode 100644 index 0000000..2c1c7b1 Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop_libtool_dependency_info.dat b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop_libtool_dependency_info.dat new file mode 100644 index 0000000..d15f777 Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop_libtool_dependency_info.dat differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.d b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.d new file mode 100644 index 0000000..5a68004 --- /dev/null +++ b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.d @@ -0,0 +1,11 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.h diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.dia b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.dia new file mode 100644 index 0000000..b8fdc0d Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.dia differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o new file mode 100644 index 0000000..d6d48e0 Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.d b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.d new file mode 100644 index 0000000..2319dc3 --- /dev/null +++ b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.d @@ -0,0 +1,22 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAction.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracerInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringSolver.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatorPrivate.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.h diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.dia b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.dia differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o new file mode 100644 index 0000000..ddeed9d Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.d b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.d new file mode 100644 index 0000000..83a193b --- /dev/null +++ b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.d @@ -0,0 +1,6 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEventInternal.h diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.dia b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.dia differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o new file mode 100644 index 0000000..903d735 Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.d b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.d new file mode 100644 index 0000000..dd2815c --- /dev/null +++ b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.d @@ -0,0 +1,16 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationPrivate.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.dia b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.dia differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o new file mode 100644 index 0000000..5dd8d84 Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.d b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.d new file mode 100644 index 0000000..6884a2b --- /dev/null +++ b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.d @@ -0,0 +1,10 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.dia b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.dia differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o new file mode 100644 index 0000000..e9bb4bc Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.d b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.d new file mode 100644 index 0000000..b7fa068 --- /dev/null +++ b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.d @@ -0,0 +1,20 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEventInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAction.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracerInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringSolver.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.dia b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.dia differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o new file mode 100644 index 0000000..a656a0b Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.d b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.d new file mode 100644 index 0000000..398e1a0 --- /dev/null +++ b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.d @@ -0,0 +1,26 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatorPrivate.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAction.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracerInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringSolver.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.h diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.dia b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.dia new file mode 100644 index 0000000..5220345 Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.dia differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o new file mode 100644 index 0000000..31cbadd Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.d b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.d new file mode 100644 index 0000000..9869a21 --- /dev/null +++ b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.d @@ -0,0 +1,21 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAction.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracerInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringSolver.h diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.dia b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.dia differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o new file mode 100644 index 0000000..6bf9007 Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.d b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.d new file mode 100644 index 0000000..5bdf3f9 --- /dev/null +++ b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.d @@ -0,0 +1,6 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.dia b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.dia differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o new file mode 100644 index 0000000..79934e6 Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.d b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.d new file mode 100644 index 0000000..483a7c6 --- /dev/null +++ b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.d @@ -0,0 +1,17 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAction.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracerInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringSolver.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.h diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.dia b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.dia differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o new file mode 100644 index 0000000..97e1bc7 Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.d b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.d new file mode 100644 index 0000000..b5df091 --- /dev/null +++ b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.d @@ -0,0 +1,21 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAction.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracerInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringSolver.h diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.dia b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.dia differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o new file mode 100644 index 0000000..cba0061 Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.d b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.d new file mode 100644 index 0000000..c262e1e --- /dev/null +++ b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.d @@ -0,0 +1,6 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.dia b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.dia differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o new file mode 100644 index 0000000..d47cd08 Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.d b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.d new file mode 100644 index 0000000..871ace1 --- /dev/null +++ b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.d @@ -0,0 +1,7 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.h diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.dia b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.dia differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o new file mode 100644 index 0000000..a910664 Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.d b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.d new file mode 100644 index 0000000..f5df1f8 --- /dev/null +++ b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.d @@ -0,0 +1,13 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationPrivate.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/UnitBezier.h diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.dia b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.dia differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o new file mode 100644 index 0000000..62c6c9d Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.d b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.d new file mode 100644 index 0000000..9d06e65 --- /dev/null +++ b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.d @@ -0,0 +1,19 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAction.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracerInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringSolver.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.dia b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.dia differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o new file mode 100644 index 0000000..d2f8f9b Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.d b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.d new file mode 100644 index 0000000..39df8f4 --- /dev/null +++ b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.d @@ -0,0 +1,22 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAction.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracerInternal.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringSolver.h diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.dia b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.dia differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o new file mode 100644 index 0000000..6bf8bc0 Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.d b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.d new file mode 100644 index 0000000..a1e08d0 --- /dev/null +++ b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.d @@ -0,0 +1,8 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDefines.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.h diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.dia b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.dia differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o new file mode 100644 index 0000000..8603704 Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.d b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.d new file mode 100644 index 0000000..ed0ae6c --- /dev/null +++ b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.d @@ -0,0 +1,6 @@ +dependencies: \ + /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/SDKSettings.json \ + /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.h \ + /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/FloatConversion.h diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.dia b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.dia new file mode 100644 index 0000000..c85cbfc Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.dia differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o new file mode 100644 index 0000000..be0f4de Binary files /dev/null and b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o differ diff --git a/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/all-product-headers.yaml b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/all-product-headers.yaml new file mode 100644 index 0000000..ee59dbc --- /dev/null +++ b/iphone/build/Intermediates.noindex/tipop.build/Debug-maccatalyst/tipop.build/all-product-headers.yaml @@ -0,0 +1 @@ +{"case-sensitive":"false","roots":[],"version":0} \ No newline at end of file diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers new file mode 120000 index 0000000..a177d2a --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Headers @@ -0,0 +1 @@ +Versions/Current/Headers \ No newline at end of file diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Modules b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Modules new file mode 120000 index 0000000..5736f31 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Modules @@ -0,0 +1 @@ +Versions/Current/Modules \ No newline at end of file diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Resources b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Resources new file mode 120000 index 0000000..953ee36 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Resources @@ -0,0 +1 @@ +Versions/Current/Resources \ No newline at end of file diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/TitaniumKit b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/TitaniumKit new file mode 120000 index 0000000..29ccf24 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/TitaniumKit @@ -0,0 +1 @@ +Versions/Current/TitaniumKit \ No newline at end of file diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APIModule.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APIModule.h new file mode 100644 index 0000000..e5851c3 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APIModule.h @@ -0,0 +1,85 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-Present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +@import JavaScriptCore; +#import "ObjcModule.h" + +@protocol APIExports + +/** + Logs a new debug message to the console. + + @param args The message to log. + */ +- (void)debug:(id)args; + +/** + Logs a new info message to the console. + + @param args The message to log. + */ +- (void)info:(id)args; + +/** + Logs a new warn message to the console. + + @param args The message to log. + */ +- (void)warn:(id)args; + +/** + Logs a new error message to the console. + + @param args The message to log. + */ +- (void)error:(id)args; + +/** + Logs a new trace message to the console. + + @param args The message to log. + */ +- (void)trace:(id)args; + +/** + Logs the current timestamp to the console. + + @param args An optional argument containing a dictionary that represents + the error message linked to this timestamp. + */ +- (void)timestamp:(id)args; + +/** + Logs a notice to the console. Identical to `info:`. + + @param args The message to log. + */ +- (void)notice:(id)args; + +/** + Logs a critical message to the console. + + @param args The message to log. Identical to `error:`. + */ +- (void)critical:(id)args; + +JSExportAs(log, + -(void)log + : (id)level withMessage + : (id)args); +- (void)reportUnhandledException:(NSArray *)args; + +@end + +@interface APIModule : ObjcModule +/** + Logs a new message with a given severity. Used internally by TiConsole. + + @param args An array of messages. + @param severity The severity of the log messages. +*/ +- (void)logMessage:(id)args severity:(NSString *)severity; // Used by TiConsole +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSAnalytics.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSAnalytics.h new file mode 100644 index 0000000..ac52557 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSAnalytics.h @@ -0,0 +1,317 @@ +/** + * APS Analytics + * Copyright (c) 2019 by Axway, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +@import Foundation; +@import CoreLocation; + +/** Constant indicating development deployment */ +extern NSString *_Nonnull const APSDeployTypeDevelopment; + +/** Constant indicating production deployment */ +extern NSString *_Nonnull const APSDeployTypeProduction; + +/** + * The APSAnalytics class configures the application to use the APS analytic services + * to send analytic data that can be viewed on the Appcelerator Dashboard. + * + * For information on getting started with Appcelerator Platform Services, + * see [Appcelerator Platform Services for iOS](http://bit.ly/1kqteQS). + */ +@interface APSAnalytics : NSObject + +/** + * Determine if EOL has passed. (March 1st 2022 GMT-8) + */ ++ (BOOL)IS_EOL; + +/** + * Return the singleton instance to the real-time analytics service. + */ ++ (instancetype _Nonnull)sharedInstance; + +/** + * Retrieves the current session identifier. + * + * @return {NSString*} session identifier. + */ +- (NSString *_Nullable)getCurrentSessionId; + +/** + * Retrieves the last event sent. + * + * @return {NSDictionary *} the last event stored, otherwise null if none have been stored. + */ +- (NSDictionary *_Nullable)getLastEvent; + +/** + * Retrieves the derived machine identifier. + * + * @return {NSString *} machine identifier. + */ +- (NSString *_Nonnull)getMachineId; + +/** + * Obtains machine identifier. + */ +- (void)setMachineId; + +/** + * Checks whether the user has opted out from sending analytics data. + * + * @return {BOOL} with the decision + */ +- (BOOL)isOptedOut; + +/** + * Writes the optedOut property in the SharedPreferences instance. + * + * @param {BOOL} value with the decision to opt out. + */ +- (void)setOptedOut:(BOOL)optedOut; + +/** + * Obtains number of events that will be cached. + * + * @return {NSInteger} number of events to cache + */ +- (NSInteger)getCacheSize; + +/** + * Writes the cache size property in the SharedPreferences instance. + * + * @param {NSInteger} number of events to cache + */ +- (void)setCacheSize:(NSInteger)cacheSize; + +/** + * Sends an application enroll event to indicate first launch. + * + * @deprecated use sendAppInstallEvent() instead. + */ +- (void)sendAppEnrollEvent; + +/** + * Sends an application enroll event to indicate first launch. + * + * If this is called multiple times, all executions after the first will + * be ignored and do nothing. + */ +- (void)sendAppInstallEvent; + +/** + * Sends an application foreground event to indicate a new session. + * + * This will usually start a new session, unless one of two conditions: + * + * 1. This is the first foreground sent after an enroll has been sent. + * 2. The last time a background was sent was within the session timeout. + * + * In both of these cases, the same session identifier will be kept. + */ +- (void)sendSessionStartEvent; + +/** + * Sends an application background event to indicate an ended session. + */ +- (void)sendSessionEndEvent; + +/** + * Sends an application navigation event which describes moving between views. + * + * @param fromView the name of the view the user navigated from. + * @param toView the name of the view the user navigated to. + * @param data arbitrary data to be sent alongside the nav event. + */ +- (void)sendAppNavEvent:(NSString *_Nonnull)fromView + toView:(NSString *_Nonnull)toView + event:(NSString *_Nullable)event + data:(NSDictionary *_Nullable)data; + +- (void)sendAppNavEventFromView:(NSString *_Nonnull)fromView + toView:(NSString *_Nonnull)toView + withName:(NSString *_Nullable)event + payload:(NSDictionary *_Nullable)data; + +/** + * Sends an application feature event to allow sending custom data. + * + * @deprecated use sendCustomEvent(String, JSONObject) instead. + */ +- (void)sendAppFeatureEvent:(NSString *_Nonnull)event + payload:(NSDictionary *_Nullable)data; + +/** + * Sends an application feature event to allow sending custom data. + * + * @param name the name of the event being sent. + * @param data the data to send alongside the event. + */ +- (void)sendCustomEvent:(NSString *_Nonnull)name + data:(NSDictionary *_Nullable)data; + +/** + * Sends an event payload. + * + * @param payload the event payload to send. + */ +- (void)sendPayload:(NSDictionary *_Nullable)payload; + +/** + * Sends a crash report as a custom event. + * + * @deprecated use sendCrashReport(JSONObject) instead. + */ +- (void)sendAppCrashEvent:(NSDictionary *_Nonnull)data; + +/** + * Sends a crash report as a custom event. + * + * @param crash the crash data to be included with the payload. + */ +- (void)sendCrashReport:(NSDictionary *_Nonnull)crash; + +/** + * Flush event queue. + */ +- (void)flush; + +/** + * Set sdk version to send in analytics. + * + * @param version sdk version + * + * @deprecated use setSdkVersion() instead. + */ +- (void)setSDKVersion:(NSString *_Nullable)version; + +/** + * @deprecated NOT USED, only defined for backwards compatibility. + */ +- (void)setBuildType:(NSString *_Nullable)type; + +/** + * Enables Analytics with a given app-key and deploy-type. + * @param appKey The APSAnalytics app-key. + * @param deployTime The deploy-type of the application. + */ +- (void)enableWithAppKey:(NSString *_Nonnull)appKey andDeployType:(NSString *_Nonnull)deployType; + +/** + * Get analytics endpoint url + */ +- (NSString *_Nullable)getAnalyticsUrl; + +/** + * Get device architecture + */ +- (NSString *_Nonnull)getArchitecture; + +/** + * Get application id + */ +- (NSString *_Nonnull)getAppId; + +/** + * Get application name + */ +- (NSString *_Nonnull)getAppName; + +/** + * Get application version + */ +- (NSString *_Nonnull)getAppVersion; + +/** + * Get application deployment type (production, development) + */ +- (NSString *_Nonnull)getDeployType; + +/** + * Get analytics flush interval + */ +- (NSInteger)getFlushInterval; + +/** + * Get analytics flush requeue interval + */ +- (NSInteger)getFlushRequeue; + +/** + * Get device model + */ +- (NSString *_Nonnull)getModel; + +/** + * Get network type + */ +- (NSString *_Nullable)getNetworkType; + +/** + * Get OS type (32bit, 64bit) + */ +- (NSString *_Nonnull)getOsType; + +/** + * Get OS version + */ +- (NSString *_Nonnull)getOsVersion; + +/** + * Get current platform + */ +- (NSString *_Nonnull)getPlatform; + +/** + * Get device processor count + */ +- (NSInteger)getProcessorCount; + +/** + * Get SDK version + */ +- (NSString *_Nullable)getSdkVersion; + +/** + * Set analytics endpoint url + */ +- (void)setAnalyticsUrl:(NSString *_Nonnull)url; + +/** + * Set application id + */ +- (void)setAppId:(NSString *_Nonnull)appId; + +/** + * Set application name + */ +- (void)setAppName:(NSString *_Nonnull)appName; + +/** + * Set application version + */ +- (void)setAppVersion:(NSString *_Nonnull)appVersion; + +/** + * Set application deployment type + */ +- (void)setDeployType:(NSString *_Nonnull)deployType; + +/** + * Set SDK version + */ +- (void)setSdkVersion:(NSString *_Nonnull)sdkVersion; + +/** + * Set analytics flush interval + */ +- (void)setFlushInterval:(NSInteger)timeout; + +/** + * Set analytics flush requeue interval + */ +- (void)setFlushRequeue:(NSInteger)timeout; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPClient.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPClient.h new file mode 100644 index 0000000..2589a91 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPClient.h @@ -0,0 +1,24 @@ +/** + * Appcelerator APSHTTPClient Library + * Copyright (c) 2014 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#ifndef DebugLog +#if defined(DEBUG) || defined(DEVELOPER) +#define DebugLog(...) \ + { \ + NSLog(__VA_ARGS__); \ + } +#else +#define DebugLog(...) \ + { \ + } +#endif +#endif + +#import "APSHTTPHelper.h" +#import "APSHTTPPostForm.h" +#import "APSHTTPRequest.h" +#import "APSHTTPResponse.h" diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPHelper.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPHelper.h new file mode 100644 index 0000000..3d27e6b --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPHelper.h @@ -0,0 +1,21 @@ +/** + * Appcelerator APSHTTPClient Library + * Copyright (c) 2014 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +@interface APSHTTPHelper : NSObject + ++ (NSString *)base64encode:(NSData *)plainText; ++ (int)caselessCompareFirstString:(const char *)firstString secondString:(const char *)secondString size:(int)size; ++ (BOOL)extractEncodingFromData:(NSData *)inputData result:(NSStringEncoding *)result; ++ (NSString *)contentTypeForImageData:(NSData *)data; ++ (NSString *)fileMIMEType:(NSString *)file; ++ (NSString *)encodeURL:(NSString *)string; ++ (void)parseMimeType:(NSString **)mimeType andResponseEncoding:(NSStringEncoding *)stringEncoding fromContentType:(NSString *)contentType; ++ (NSStringEncoding)parseStringEncodingFromHeaders:(NSDictionary *)headers; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPPostForm.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPPostForm.h new file mode 100644 index 0000000..a8b1e84 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPPostForm.h @@ -0,0 +1,35 @@ +/** + * Appcelerator APSHTTPClient Library + * Copyright (c) 2014 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +@interface APSHTTPPostForm : NSObject + +@property (nonatomic, readonly) NSData *requestData; +@property (nonatomic, readonly) NSDictionary *requestHeaders; +@property (nonatomic, readonly) NSString *contentType; + +- (void)setJSONData:(id)json; +- (void)setStringData:(NSString *)str; +- (void)appendData:(NSData *)data withContentType:(NSString *)contentType; + +- (void)addDictionay:(NSDictionary *)dict; +- (void)addFormKey:(NSString *)key andValue:(NSString *)value; + +- (void)addFormFile:(NSString *)path; +- (void)addFormFile:(NSString *)path fieldName:(NSString *)name; +- (void)addFormFile:(NSString *)path fieldName:(NSString *)name contentType:(NSString *)contentType; + +- (void)addFormData:(NSData *)data; +- (void)addFormData:(NSData *)data fileName:(NSString *)fileName; +- (void)addFormData:(NSData *)data fileName:(NSString *)fileName fieldName:(NSString *)fieldName; +- (void)addFormData:(NSData *)data fileName:(NSString *)fileName fieldName:(NSString *)fieldName contentType:(NSString *)contentType; + +- (void)addHeaderKey:(NSString *)key andHeaderValue:(NSString *)value; +- (void)destroyTemporaryData; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPRequest.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPRequest.h new file mode 100644 index 0000000..2e26352 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPRequest.h @@ -0,0 +1,85 @@ +/** + * Appcelerator APSHTTPClient Library + * Copyright (c) 2014-2015 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +typedef NS_ENUM(NSInteger, APSRequestError) { + APSRequestErrorCancel = 0, + APSRequestErrorConnectionDelegateFailed = -1 +}; + +@class APSHTTPResponse; +@class APSHTTPRequest; +@class APSHTTPPostForm; + +@protocol APSConnectionDelegate +@optional +- (BOOL)willHandleChallenge:(NSURLAuthenticationChallenge *)challenge forSession:(NSURLSession *)session; +@end + +@protocol APSHTTPRequestDelegate +@optional +- (void)request:(APSHTTPRequest *)request onLoad:(APSHTTPResponse *)response; +- (void)request:(APSHTTPRequest *)request onError:(APSHTTPResponse *)response; +- (void)request:(APSHTTPRequest *)request onDataStream:(APSHTTPResponse *)response; +- (void)request:(APSHTTPRequest *)request onSendStream:(APSHTTPResponse *)response; +- (void)request:(APSHTTPRequest *)request onReadyStateChange:(APSHTTPResponse *)response; +- (void)request:(APSHTTPRequest *)request onRedirect:(APSHTTPResponse *)response; + +@end + +@interface APSHTTPRequest : NSObject + +@property (nonatomic, strong, readwrite) NSURL *url; +@property (nonatomic, strong, readwrite) NSString *method; +@property (nonatomic, strong, readwrite) NSString *filePath; +@property (nonatomic, strong, readwrite) NSString *requestUsername; +@property (nonatomic, strong, readwrite) NSString *requestPassword; +@property (nonatomic, strong, readwrite) APSHTTPPostForm *postForm; +@property (nonatomic, strong, readonly) APSHTTPResponse *response; +@property (nonatomic, weak, readwrite) NSObject *delegate; +@property (nonatomic, weak, readwrite) NSObject *connectionDelegate; +@property (nonatomic, assign, readwrite) NSTimeInterval timeout; +@property (nonatomic, assign, readwrite) BOOL sendDefaultCookies; +@property (nonatomic, assign, readwrite) BOOL redirects; +@property (nonatomic, assign, readwrite) BOOL validatesSecureCertificate; +@property (nonatomic, assign, readwrite) BOOL cancelled; +@property (nonatomic, assign, readwrite) NSURLRequestCachePolicy cachePolicy; +@property (nonatomic, assign, readonly, getter=isReady) BOOL ready; +@property (nonatomic, assign, readwrite) BOOL waitsForConnectivity; +@property (nonatomic, assign, readwrite) NSTimeInterval timeoutForResource; +/*! + @discussion Set to YES to block the caller's thread for the duration + of the network call. In this case the queue property is ignored. The + default value is NO. + */ +@property (nonatomic, assign, readwrite) BOOL synchronous; + +/*! + @discussion An optional NSOperationQueue for delegate callbacks. + The default value is nil, which means delegate callbakcs occur on + the caller's thread if the synchronous property is NO. If the + synchronous property is YES then this property is ignored. + */ +@property (nonatomic, strong, readwrite) NSOperationQueue *theQueue; + +/*! + @discussion An optional array of run loop modes for delegate callbacks + on the run loop of the caller's thread. The default is one element + array containing NSDefaultRunLoopMode. This is an advanced property, + and is ignored if synchronous is YES or theQueue is not nil. It is + the caller's responsibility to keep the thread and the run loop alive. + */ +@property (nonatomic, strong, readwrite) NSArray *runModes; + +// Only used in Titanium ImageLoader +@property (nonatomic, strong, readwrite) NSDictionary *userInfo; + +- (void)send; +- (void)abort; +- (void)addRequestHeader:(NSString *)key value:(NSString *)value; +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPResponse.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPResponse.h new file mode 100644 index 0000000..ea75977 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/APSHTTPResponse.h @@ -0,0 +1,45 @@ +/** + * Appcelerator APSHTTPClient Library + * Copyright (c) 2014 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +typedef NS_ENUM(NSInteger, APSHTTPResponseState) { + APSHTTPResponseStateUnsent = 0, + APSHTTPResponseStateOpened = 1, + APSHTTPResponseStateHeaders = 2, + APSHTTPResponseStateLoading = 3, + APSHTTPResponseStateDone = 4 +}; + +@interface APSHTTPResponse : NSObject + +//@property(nonatomic, strong, readonly ) NSURL *url; +@property (nonatomic, strong, readonly) NSDictionary *headers; // used by TiNetworkHTTPClientProxy, ImageLoader +@property (nonatomic, strong, readonly) NSString *connectionType; // used by TiNetworkHTTPClientProxy +//@property(nonatomic, assign, readonly ) NSStringEncoding encoding; + +@property (nonatomic, strong, readonly) NSData *responseData; // used by TiNetworkHTTPClientProxy, ImageLoader +@property (nonatomic, strong, readonly) NSString *responseString; // used by TiNetworkHTTPClientProxy, YahooModule and GeolocationModule +@property (nonatomic, strong, readonly) NSDictionary *responseDictionary; // used by TiNetworkHTTPClientProxy +@property (nonatomic, strong, readonly) NSArray *responseArray; // used by TiNetworkHTTPClientProxy +@property (nonatomic, assign, readonly) BOOL saveToFile; // used by TiNetworkHTTPClientProxy + +@property (nonatomic, assign, readonly) NSInteger status; // should be protocol (used by APSHTTPRequest) +@property (nonatomic, strong, readonly) NSString *location; // should be protocol (used by APSHTTPRequest) +@property (nonatomic, assign, readonly) NSInteger responseLength; // should be protocol (used by APSHTTPRequest) +@property (nonatomic, strong, readwrite) NSError *error; // should be protocol (used by APSHTTPRequest) +@property (nonatomic, strong, readwrite) NSString *filePath; // should be protocol (used by APSHTTPRequest) +@property (nonatomic, assign, readwrite) float downloadProgress; // should be protocol (used by APSHTTPRequest) +@property (nonatomic, assign, readwrite) float uploadProgress; // should be protocol (used by APSHTTPRequest) +@property (nonatomic, assign, readwrite) BOOL connected; // should be protocol (used by APSHTTPRequest) +@property (nonatomic, assign, readwrite) APSHTTPResponseState readyState; // should be protocol (used by APSHTTPRequest) + +- (void)updateRequestParamaters:(NSURLRequest *)request; +- (void)updateResponseParamaters:(NSURLResponse *)response; + +- (void)appendData:(NSData *)data; +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Bridge.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Bridge.h new file mode 100644 index 0000000..f268be3 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Bridge.h @@ -0,0 +1,38 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2018 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "TiProxy.h" + +@class TiHost; + +/** + The default JavaScriptCore <-> Titanium bridge. Inherited by the XHRBridge and the KrollBridge. + It expects the "app.js" to be the entry point of the application. + */ +@interface Bridge : NSObject { + @private + id callback; + NSString *basename; + @protected + NSURL *url; + TiHost *host; +} + +- (id)initWithHost:(TiHost *)host; + +- (void)boot:(id)callback url:(NSURL *)url preload:(NSDictionary *)preload; + +- (void)booted; + +- (void)shutdown:(NSCondition *)condition; + +- (void)gc; + +- (TiHost *)host; + +- (NSString *)basename; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ImageLoader.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ImageLoader.h new file mode 100644 index 0000000..025daa8 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ImageLoader.h @@ -0,0 +1,215 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "APSHTTPClient.h" +#import "TiDimension.h" +#import +#import + +/** + The scaling options passed to the `imageForSize:scalingStyle:` method. + */ +typedef enum { + TiImageScalingDefault, + TiImageScalingThumbnail, + TiImageScalingNonProportional, + TiImageScalingStretch, +} TiImageScalingStyle; + +@class ImageLoaderRequest; + +/** + Protocol for image loader delegate. + */ +@protocol ImageLoaderDelegate +@required + +/** + Tells the delegate that the image load request succeeded. + @param request The load request. + @param image The loaded image. + */ +- (void)imageLoadSuccess:(ImageLoaderRequest *)request image:(UIImage *)image; + +/** + Tells the delegate that the image load request failed. + @param request The load request. + @param error The error. + */ +- (void)imageLoadFailed:(ImageLoaderRequest *)request error:(NSError *)error; + +@optional + +/** + Tells the delegate that the image load request has been cancelled. + @param request The load request. + */ +- (void)imageLoadCancelled:(ImageLoaderRequest *)request; + +@end + +/** + Image loader request class. Handles remote images passed to the TiUIImageView class. + */ +@interface ImageLoaderRequest : NSObject { + @private + APSHTTPRequest *request; + NSObject *delegate; + NSDictionary *userInfo; + NSURL *url; + CGSize imageSize; + BOOL completed; + BOOL cancelled; +} + +/** + The request to use for loading remote images. + @return The request instance. + */ +@property (nonatomic, readwrite, retain) APSHTTPRequest *request; + +/** + Whether or not the request has completed. + @return _YES_ if the request has completed, _NO_ otherwise. + */ +@property (nonatomic, readwrite, assign) BOOL completed; + +/** + Returns loaded image size. + @return The loaded image size. + */ +@property (nonatomic, readwrite, assign) CGSize imageSize; + +/** + Returns the request delegate. + @return The request delegate. + */ +@property (nonatomic, readonly) NSObject *delegate; + +/** + Cancels the request. + */ +- (void)cancel; + +/** + Whether or not the image load request was cancelled. + @return _YES_ if request was cancelled, _NO_ otherwise. + */ +@property (nonatomic, readonly) BOOL cancelled; + +/** + Returns request additional properties. + @return The dictionary of properties. + */ +@property (nonatomic, readonly) NSDictionary *userInfo; + +/** + Returns the request URL. + @return The image URL. + */ +@property (nonatomic, readonly) NSURL *url; + +@end + +/** + The ImageLoader class provides a centralized point for loading images in Titanium. + Using ImageLoader is the preferred way for getting images from remote sources. + + The class is singleton and not supposed to be subclassed. + The instance should not be instantiated directly, but lazily created with . + */ +@interface ImageLoader : NSObject { + @private + NSCache *cache; + NSOperationQueue *queue; + NSMutableArray *timeout; + NSRecursiveLock *lock; +} + +/** + Returns the shared instance of image loader. + @return The shared instance. + */ ++ (ImageLoader *)sharedLoader; + +/** + Tells the loader to load remote image from URL. + @param url The image URL + @return The loaded image. + @see loadImage:delegate:userInfo: +*/ +- (UIImage *)loadRemote:(NSURL *)url; + +/** + Tells the loader to return previously loaded image with URL. + @param url The image URL + @return The loaded image or _nil_ if the image is not available from the cache. + @see loadRemote: + */ +- (UIImage *)loadImmediateImage:(NSURL *)url; + +/** + Tells the loader to return previously loaded image with URL and size. + @param url The image URL + @param imageSize The required image size. + @return The loaded image or _nil_ if the image is not available from the cache. + @see loadRemote: + */ +- (UIImage *)loadImmediateImage:(NSURL *)url withSize:(CGSize)imageSize; + +/** + Tells the loader to return previously loaded stretchable image with URL. + @param url The image URL + @return The loaded image or _nil_ if the image is not available from the cache. + @see loadRemote: + */ +- (UIImage *)loadImmediateStretchableImage:(NSURL *)url; + +/** + Tells the loader to return previously loaded stretchable image with URL and specified cap values. + @param url The image URL + @param left The value to use for the left cap width. Specify 0 if you want the entire image to be horizontally stretchable. + @param top The value to use for the top cap width. Specify 0 if you want the entire image to be vertically stretchable. + @return The loaded image or _nil_ if the image is not available from cache. + @see loadRemote: + */ +- (UIImage *)loadImmediateStretchableImage:(NSURL *)url withLeftCap:(TiDimension)left topCap:(TiDimension)top; + +/** + Returns the full image size. + @param url The image URL + @return The image size. + */ +- (CGSize)fullImageSize:(NSURL *)url; + +/** + Tells the loader to load image from URL with delegate. + @param url The image URL. + @param delegate The loader delegate. + @param userInfo The additional properties to be assigned to the request. + @return The image load request. + @see loadRemote: + */ +- (ImageLoaderRequest *)loadImage:(NSURL *)url + delegate:(NSObject *)delegate + userInfo:(NSDictionary *)userInfo; + +/* + Tells the image loader to suspend its activities. + */ +- (void)suspend; + +/* + Tells the image loader to resume its activities. + */ +- (void)resume; + +/** + Tells the image loader to cancel all activities. + */ +- (void)cancel; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/JSValue+Addons.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/JSValue+Addons.h new file mode 100644 index 0000000..055a604 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/JSValue+Addons.h @@ -0,0 +1,19 @@ +/** +* Appcelerator Titanium Mobile +* Copyright (c) 2018-Present by Appcelerator, Inc. All Rights Reserved. +* Licensed under the terms of the Apache Public License +* Please see the LICENSE included with this distribution for details. +*/ +@import JavaScriptCore; + +NS_ASSUME_NONNULL_BEGIN + +@interface JSValue (Addons) + +@property (readonly) BOOL isFunction; + +- (void)defineReadOnlyProperty:(NSString *)propertyName withValue:(id)value; + +@end + +NS_ASSUME_NONNULL_END diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollBridge.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollBridge.h new file mode 100644 index 0000000..d2265b0 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollBridge.h @@ -0,0 +1,54 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-Present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "Bridge.h" +#import "TiEvaluator.h" +#import + +@import Foundation; +@import JavaScriptCore; +#include + +extern NSString *TitaniumModuleRequireFormat; + +@class KrollObject; +@class krollContext; +@class TiProxy; + +@interface KrollBridge : Bridge { + @private + NSURL *currentURL; + + KrollContext *context; + NSDictionary *preload; + BOOL shutdown; + BOOL evaluationError; + //NOTE: Do NOT treat registeredProxies like a mutableDictionary; mutable dictionaries copy keys, + //CFMutableDictionaryRefs only retain keys, which lets them work with proxies properly. + CFMutableDictionaryRef registeredProxies; + NSCondition *shutdownCondition; + os_unfair_lock proxyLock; +} +- (void)boot:(id)callback url:(NSURL *)url_ preload:(NSDictionary *)preload_; +- (void)evalJSWithoutResult:(NSString *)code; +- (id)evalJSAndWait:(NSString *)code; +- (BOOL)evaluationError; +- (void)setEvaluationError:(BOOL)value; +- (void)fireEvent:(id)listener withObject:(id)obj remove:(BOOL)yn thisObject:(TiProxy *)thisObject; +- (id)preloadForKey:(id)key name:(id)name; +- (KrollContext *)krollContext; + ++ (NSArray *)krollBridgesUsingProxy:(id)proxy; ++ (BOOL)krollBridgeExists:(KrollBridge *)bridge; ++ (KrollBridge *)krollBridgeForThreadName:(NSString *)threadName; ++ (NSArray *)krollContexts; + +- (void)enqueueEvent:(NSString *)type forProxy:(TiProxy *)proxy withObject:(id)obj; +- (void)registerProxy:(id)proxy krollObject:(KrollObject *)ourKrollObject; +- (int)forceGarbageCollectNow; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollCallback.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollCallback.h new file mode 100644 index 0000000..e5b9a97 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollCallback.h @@ -0,0 +1,41 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2018 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "KrollContext.h" +#import "KrollWrapper.h" +#import +#import + +@class KrollBridge; + +// +// KrollCallback is a wrapper around a JS function object which is passed +// from JS land to native. This object can be passed around on the native +// side as a normal opaque object and then passed back through to Kroll +// for function invocation (or just to pass the function object back as-is) +// +@interface KrollCallback : NSObject { + @private + JSContextRef jsContext; + JSObjectRef thisObj; + JSObjectRef function; + KrollContext *context; + KrollBridge *bridge; + NSString *type; +} + +@property (nonatomic, readwrite, retain) NSString *type; + +- (id)initWithCallback:(JSValueRef)function_ thisObject:(JSObjectRef)thisObject_ context:(KrollContext *)context_; +- (void)callAsync:(NSArray *)args thisObject:(id)thisObject_; +- (id)call:(NSArray *)args thisObject:(id)thisObject_; +- (JSObjectRef)function; +- (KrollContext *)context; +- (KrollWrapper *)toKrollWrapper; ++ (void)shutdownContext:(KrollContext *)context; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollContext.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollContext.h new file mode 100644 index 0000000..8f3ec2a --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollContext.h @@ -0,0 +1,154 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2018 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import +#import + +@class KrollContext; +@class KrollCallback; +@class KrollTimerManager; + +@protocol KrollDelegate + +@required +- (id)require:(KrollContext *)kroll path:(NSString *)path; +- (BOOL)shouldDebugContext; +- (BOOL)shouldProfileContext; +@optional + +- (void)willStartNewContext:(KrollContext *)kroll; +- (void)didStartNewContext:(KrollContext *)kroll; +- (void)willStopNewContext:(KrollContext *)kroll; +- (void)didStopNewContext:(KrollContext *)kroll; + +@end + +@interface KrollContext : NSObject { + @private + id delegate; + BOOL stopped; + + //Garbage collection variables. + BOOL gcrequest; + unsigned int loopCount; + + BOOL destroyed; +#ifndef __clang_analyzer__ + BOOL suspended; +#endif + JSGlobalContextRef context; + KrollTimerManager *timerManager; +} + +@property (nonatomic, readwrite, assign) id delegate; + +- (void)start; +- (void)stop; +- (BOOL)running; +- (void)gc; +- (JSGlobalContextRef)context; +- (BOOL)isKJSThread; + +- (void)invokeOnThread:(id)callback_ method:(SEL)method_ withObject:(id)obj condition:(NSCondition *)condition_; +- (void)invokeOnThread:(id)callback_ method:(SEL)method_ withObject:(id)obj callback:(id)callback selector:(SEL)selector_; +- (void)invokeBlockOnThread:(void (^)(void))block; ++ (void)invokeBlock:(void (^)(void))block; + +- (void)evalJS:(NSString *)code; +- (id)evalJSAndWait:(NSString *)code; + +- (void)enqueue:(id)obj; + +- (int)forceGarbageCollectNow; + +@end + +//==================================================================================================================== + +@interface KrollUnprotectOperation : NSOperation { + JSContextRef jsContext; + JSObjectRef firstObject; + JSObjectRef secondObject; +} + +- (id)initWithContext:(JSContextRef)newContext withJsobject:(JSObjectRef)newFirst; +- (id)initWithContext:(JSContextRef)newContext withJsobject:(JSObjectRef)newFirst andJsobject:(JSObjectRef)newSecond; + +@end + +@interface KrollInvocation : NSObject { + @private + id target; + SEL method; + id obj; + NSCondition *condition; + id notify; + SEL notifySelector; +} +- (id)initWithTarget:(id)target_ method:(SEL)method_ withObject:(id)obj_ condition:(NSCondition *)condition_; +- (id)initWithTarget:(id)target_ method:(SEL)method_ withObject:(id)obj_ callback:(id)callback_ selector:(SEL)selector_; +- (void)invoke:(KrollContext *)context; +@end + +@interface KrollEval : NSObject { + @private + NSString *code; + NSURL *sourceURL; + NSInteger startingLineNo; +} +- (id)initWithCode:(NSString *)code; +- (id)initWithCode:(NSString *)code sourceURL:(NSURL *)sourceURL; +- (id)initWithCode:(NSString *)code sourceURL:(NSURL *)sourceURL startingLineNo:(NSInteger)startingLineNo; +- (JSValueRef)jsInvokeInContext:(KrollContext *)context exception:(JSValueRef *)exceptionPointer; +- (void)invoke:(KrollContext *)context; +- (id)invokeWithResult:(KrollContext *)context; +@end + +@class KrollObject; +@interface KrollEvent : NSObject { + @private + KrollCallback *callback; + + NSString *type; + KrollObject *callbackObject; + + NSDictionary *eventObject; + id thisObject; +} +- (id)initWithType:(NSString *)newType ForKrollObject:(KrollObject *)newCallbackObject eventObject:(NSDictionary *)newEventObject thisObject:(id)newThisObject; +- (id)initWithCallback:(KrollCallback *)newCallback eventObject:(NSDictionary *)newEventObject thisObject:(id)newThisObject; +- (void)invoke:(KrollContext *)context; +@end + +@protocol KrollTargetable +@required +- (void)setExecutionContext:(id)delegate; +@end + +KrollContext *GetKrollContext(JSContextRef context); + +//TODO: After 1.7, move to individual file and convert KrollInvocation and Callbacks to ExpandedInvocationOperation. +@interface ExpandedInvocationOperation : NSOperation { + @private + id invocationTarget; + SEL invocationSelector; + id invocationArg1; + id invocationArg2; + id invocationArg3; + id invocationArg4; +} +- (id)initWithTarget:(id)target selector:(SEL)sel object:(id)arg1 object:(id)arg2; +- (id)initWithTarget:(id)target selector:(SEL)sel object:(id)arg1 object:(id)arg2 object:(id)arg3; +- (id)initWithTarget:(id)target selector:(SEL)sel object:(id)arg1 object:(id)arg2 object:(id)arg3 object:(id)arg4; + +@property (nonatomic, readwrite, retain) id invocationTarget; +@property (nonatomic, readwrite, assign) SEL invocationSelector; +@property (nonatomic, readwrite, retain) id invocationArg1; +@property (nonatomic, readwrite, retain) id invocationArg2; +@property (nonatomic, readwrite, retain) id invocationArg3; +@property (nonatomic, readwrite, retain) id invocationArg4; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollObject.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollObject.h new file mode 100644 index 0000000..f83a5a2 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollObject.h @@ -0,0 +1,112 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-Present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import +#import + +@class KrollContext, KrollCallback, TiProxy; +extern JSClassRef KrollObjectClassRef; +extern JSStringRef kTiStringExportsKey; + +void KrollFinalizer(JSObjectRef ref); +void KrollInitializer(JSContextRef ctx, JSObjectRef object); +JSValueRef KrollGetProperty(JSContextRef jsContext, JSObjectRef obj, JSStringRef prop, JSValueRef *exception); +bool KrollSetProperty(JSContextRef jsContext, JSObjectRef obj, JSStringRef prop, JSValueRef value, JSValueRef *exception); +bool KrollDeleteProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef *exception); + +// +// KrollObject is a generic native wrapper around a native object exposed as a JS object +// in JS land. +// + +@class KrollBridge; +@interface KrollObject : NSObject { + @private + NSMutableDictionary *properties; + NSMutableDictionary *statics; + JSObjectRef _jsobject; + BOOL targetable; + BOOL finalized; + BOOL protecting; + @protected + id target; + KrollContext *context; + JSContextRef jsContext; + KrollBridge *bridge; //Used only in finalizing for sake of safe lookup. +} +@property (nonatomic, assign) BOOL finalized; +@property (nonatomic, readonly) KrollBridge *bridge; +@property (nonatomic, readonly) KrollContext *context; +@property (nonatomic, readonly) JSContextRef jsContext; + +- (id)initWithTarget:(id)target_ context:(KrollContext *)context_; + ++ (JSValueRef)create:(id)object context:(KrollContext *)context_; ++ (id)toID:(KrollContext *)context value:(JSValueRef)ref; ++ (JSValueRef)toValue:(KrollContext *)context value:(id)obj; ++ (id)nonNull:(id)value; ++ (BOOL)isFinalizing; + +/** + Checks if a property with the given name exists on our target. + + Contains all the magic of valueForKey withouth trying to retrieve any actual + value. + + The checks for property existance are done in the following order: + * The Kroll object's own statics and properties cache + * Dynamic getter and setter in the form of getSomeProperty or setSomeProperty + * Property on the actual target + * "toString" and "valueOf" are always available on all objects + * "className" has a special handling with valueForUndefinedKey, return true + for the sake of simplicity + * Method with the same name on the target and single parameter + * Method with the same name on the target and no parameter + * Create factory method + + As soon as one of the above checks passes this method returns true, meaning + the property exists. If none of the checks passed the property does not exists + and the method returns false. + + @param propertyName The property name to check for. + */ +- (BOOL)hasProperty:(NSString *)propertyName; +- (id)valueForKey:(NSString *)key; +- (void)deleteKey:(NSString *)key; +- (void)setValue:(id)value forKey:(NSString *)key; +- (void)setStaticValue:(id)value forKey:(NSString *)key purgable:(BOOL)purgable; +- (id)target; + +//TODO: Lots of copypasted code in these methods could be refactored out. +@property (nonatomic, assign) JSObjectRef propsObject; +- (JSObjectRef)jsobject; +- (JSValueRef)jsvalueForUndefinedKey:(NSString *)key; + +- (void)noteKeylessKrollObject:(KrollObject *)value; +- (void)forgetKeylessKrollObject:(KrollObject *)value; +- (void)protectJsobject; +- (void)unprotectJsobject; + +- (void)noteKrollObject:(KrollObject *)value forKey:(NSString *)key; +- (void)forgetKrollObjectforKey:(NSString *)key; +- (void)noteObject:(JSObjectRef)storedJSObject forTiString:(JSStringRef)keyString context:(JSContextRef)jsxContext; +- (void)forgetObjectForTiString:(JSStringRef)keyString context:(JSContextRef)jsContext; +- (JSObjectRef)objectForTiString:(JSStringRef)keyString context:(JSContextRef)jsContext; + +- (void)noteCallback:(KrollCallback *)eventCallback forKey:(NSString *)key; +- (void)forgetCallbackForKey:(NSString *)key; +- (void)invokeCallbackForKey:(NSString *)key withObject:(NSDictionary *)eventData thisObject:(KrollObject *)thisObject; +- (void)invokeCallbackForKey:(NSString *)key withObject:(NSDictionary *)eventData thisObject:(KrollObject *)thisObject onDone:(void (^)(id result))block; + +- (JSObjectRef)callbacksForEvent:(JSStringRef)jsEventTypeString; +- (void)storeListener:(id)eventCallbackOrWrapper forEvent:(NSString *)eventName; +- (void)removeListener:(KrollCallback *)eventCallback forEvent:(NSString *)eventName; +- (void)triggerEvent:(NSString *)eventName withObject:(NSDictionary *)eventData thisObject:(KrollObject *)thisObject; + +- (void)applyGarbageCollectionSafeguard; +- (void)removeGarbageCollectionSafeguard; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollPromise.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollPromise.h new file mode 100644 index 0000000..9a01276 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollPromise.h @@ -0,0 +1,35 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2020-Present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. +*/ +#ifndef KrollPromise_h +#define KrollPromise_h + +#import + +@interface KrollPromise : NSObject { + @private + JSValue *resolveFunc; + JSValue *rejectFunc; + BOOL _fulfilled; + BOOL _flushMe; +} + +@property (readonly, nonatomic) JSValue *JSValue; + +- (void)resolve:(NSArray *)arguments; +- (void)reject:(NSArray *)arguments; +- (void)rejectWithErrorMessage:(NSString *)message; +- (void)flush; + +- (KrollPromise *)initInContext:(JSContext *)context; + ++ (KrollPromise *)resolved:(NSArray *)arguments inContext:(JSContext *)context; ++ (KrollPromise *)rejected:(NSArray *)arguments inContext:(JSContext *)context; ++ (KrollPromise *)rejectedWithErrorMessage:(NSString *)message inContext:(JSContext *)context; + +@end + +#endif /* KrollPromise_h */ diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollWrapper.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollWrapper.h new file mode 100644 index 0000000..6c51885 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/KrollWrapper.h @@ -0,0 +1,55 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2018 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "KrollContext.h" +#import + +@class KrollBridge; + +/* + * For functions and other objects that need to be held by proxies without + * conversion or possible retain cycles, KrollWrapper passively refers to a + * JS Object. In the future, this should become the base class, instead of a + * collection of Kroll wrappers all based off of NSObject despite common + * functionality. + * + * NOTE: This is an object that is never made explicitly by TiIdToValue; + * instead, all JS functions become KrollCallbacks, and both KrollCallbacks + * and KrollObjectProperties will be converted into functions. + * (or TiObjectRefs at any rate) + * Instead, KrollWrapper is used in two places currently: When a function is + * retained as a property by a proxy (to avoid the above retain loop), + * and for JS-based modules which do not need proxy properties but do need to + * be first-class JS object citizens. + * TODO: Consolidate various KrollObjects, KrollCallbacks, etc to be + * KrollWrappers. + */ +@interface KrollWrapper : NSObject { + JSObjectRef jsobject; + KrollBridge *bridge; + BOOL protecting; +} + +// Access the native JSCore object +@property (nonatomic, readwrite, assign) JSObjectRef jsobject; + +// Access the kroll bridge (e.g. for the kroll context) +@property (nonatomic, readwrite, assign) KrollBridge *bridge; + +// Protects a JSObject from being GC'd +- (void)protectJsobject; + +// Unprotects a JSObject from being GC'd +- (void)unprotectJsobject; + +// Replaces a value for a given key in it's underlaying JSContext +- (void)replaceValue:(id)value forKey:(NSString *)key notification:(BOOL)notify; + +// Executes an async JavaScript function and returns the resulting JSCore value if any +- (JSValueRef)executeWithArguments:(NSArray *)arguments; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/LayoutConstraint.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/LayoutConstraint.h new file mode 100644 index 0000000..944c712 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/LayoutConstraint.h @@ -0,0 +1,121 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "TiDimension.h" +#import "TiUtils.h" +#import + +/** + A protocol to handle layout auto-sizing based on given sizes and rects. + */ +@protocol LayoutAutosizing + +@optional + +- (CGFloat)minimumParentWidthForSize:(CGSize)size; +- (CGFloat)minimumParentHeightForSize:(CGSize)size; + +- (CGFloat)autoWidthForSize:(CGSize)size; +- (CGFloat)autoHeightForSize:(CGSize)size; + +- (CGFloat)contentWidthForWidth:(CGFloat)suggestedWidth; +- (CGFloat)contentHeightForWidth:(CGFloat)width; + +- (CGFloat)verifyWidth:(CGFloat)suggestedWidth; +- (CGFloat)verifyHeight:(CGFloat)suggestedHeight; + +- (UIViewAutoresizing)verifyAutoresizing:(UIViewAutoresizing)suggestedResizing; + +- (TiDimension)defaultAutoWidthBehavior:(id)unused; +- (TiDimension)defaultAutoHeightBehavior:(id)unused; + +@end +#ifndef TI_USE_AUTOLAYOUT + +/** + Layout options to determine absolute, vertical and horizontal layout. + */ +typedef enum { + TiLayoutRuleAbsolute, + TiLayoutRuleVertical, + TiLayoutRuleHorizontal, +} TiLayoutRule; + +TI_INLINE CGFloat TiFixedValueRuleFromObject(id object) +{ + return [TiUtils floatValue:object def:0]; +} + +TI_INLINE TiLayoutRule TiLayoutRuleFromObject(id object) +{ + if ([object isKindOfClass:[NSString class]]) { + if ([object caseInsensitiveCompare:@"vertical"] == NSOrderedSame) { + return TiLayoutRuleVertical; + } + if ([object caseInsensitiveCompare:@"horizontal"] == NSOrderedSame) { + return TiLayoutRuleHorizontal; + } + } + return TiLayoutRuleAbsolute; +} + +TI_INLINE BOOL TiLayoutRuleIsAbsolute(TiLayoutRule rule) +{ + return rule == TiLayoutRuleAbsolute; +} + +TI_INLINE BOOL TiLayoutRuleIsVertical(TiLayoutRule rule) +{ + return rule == TiLayoutRuleVertical; +} + +TI_INLINE BOOL TiLayoutRuleIsHorizontal(TiLayoutRule rule) +{ + return rule == TiLayoutRuleHorizontal; +} + +typedef struct LayoutConstraint { + + TiDimension centerX; + TiDimension left; + TiDimension right; + TiDimension width; + + TiDimension centerY; + TiDimension top; + TiDimension bottom; + TiDimension height; + + TiLayoutRule layoutStyle; + struct { + unsigned int horizontalWrap : 1; + } layoutFlags; + + CGFloat minimumHeight; + CGFloat minimumWidth; + +} LayoutConstraint; + +TI_INLINE BOOL TiLayoutFlagsHasHorizontalWrap(LayoutConstraint *constraint) +{ + return constraint->layoutFlags.horizontalWrap; +} + +@class TiUIView; +@class TiViewProxy; + +void ApplyConstraintToViewWithBounds(LayoutConstraint *constraint, TiUIView *subView, CGRect viewBounds); + +CGFloat WidthFromConstraintGivenWidth(LayoutConstraint *constraint, CGFloat viewWidth); + +CGSize SizeConstraintViewWithSizeAddingResizing(LayoutConstraint *constraint, NSObject *autoSizer, CGSize referenceSize, UIViewAutoresizing *resultResizing); + +CGPoint PositionConstraintGivenSizeBoundsAddingResizing(LayoutConstraint *constraint, TiViewProxy *viewProxy, CGSize viewSize, CGPoint anchorPoint, CGSize referenceSize, CGSize sandboxSize, UIViewAutoresizing *resultResizing); + +BOOL IsLayoutUndefined(LayoutConstraint *constraint); + +#endif diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ListenerEntry.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ListenerEntry.h new file mode 100644 index 0000000..4585458 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ListenerEntry.h @@ -0,0 +1,33 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "TiEvaluator.h" +#import "TiModule.h" + +/** + A wrapper class used to store event listeners related to a given proxy and kroll-context. + */ +@interface ListenerEntry : NSObject { + @private + id context; + id listener; + TiProxy *proxy; + NSString *type; +} + +/** + The type of listener entry to use. + @return The given type. + */ +@property (nonatomic, readwrite, retain) NSString *type; + +- (id)initWithListener:(id)listener_ context:(id)context_ proxy:(TiProxy *)proxy; + +- (id)context; + +- (id)listener; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Mimetypes.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Mimetypes.h new file mode 100644 index 0000000..ea5673f --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Mimetypes.h @@ -0,0 +1,33 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +extern const NSString *svgMimeType; + +/** + A static class to convert file extensions into mime-types and vice versa. + */ +@interface Mimetypes : NSObject + +/** + Converts a file extension into a mime type. + + @param ext The extension to convert. + @return The mime-type converted from the extension. + */ ++ (NSString *)mimeTypeForExtension:(NSString *)ext; + +/** + Converts a mime type into a file extension. + + @param mimetype The mime type to convert. + @return The file extension converted from the mime-type. + */ ++ (NSString *)extensionForMimeType:(NSString *)mimetype; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Module.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Module.h new file mode 100644 index 0000000..64640ab --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Module.h @@ -0,0 +1,22 @@ +#import "TiEvaluator.h" + +@class TiHost; + +@protocol Module + +/* + * Used to force a module name for native modules. This is used in the calculation of the expected proxy name for proxy factory method calls. + * i.e. TiMapModule w/ a call to Map.createAnnotation => TiMapAnnotationProxy + * w/ no name set, it will prepend "Ti" i.e. UIModule w/ a call to createWindow => TiUIWindowProxy + * This logic is currently only used in TiModule.m + */ +- (void)_setName:(NSString *)moduleClassName; +- (void)setExecutionContext:(id)context; +- (void)setHost:(TiHost *)host; +- (BOOL)isJSModule; +- (NSData *)moduleJS; +- (BOOL)destroyed; +- (void)release; +- (NSData *)loadModuleAsset:(NSString *)fromPath; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/NSData+Additions.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/NSData+Additions.h new file mode 100644 index 0000000..d635414 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/NSData+Additions.h @@ -0,0 +1,19 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +#if defined(__cplusplus) +extern "C" { +#endif + +NSData *dataWithHexString(NSString *hexString); +NSString *stringWithHexString(NSString *hexString); + +#if defined(__cplusplus) +} +#endif diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ObjcModule.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ObjcModule.h new file mode 100644 index 0000000..1b6f95b --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ObjcModule.h @@ -0,0 +1,12 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2020-Present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "Module.h" +#import "ObjcProxy.h" + +@interface ObjcModule : ObjcProxy + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ObjcProxy.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ObjcProxy.h new file mode 100644 index 0000000..3e47685 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/ObjcProxy.h @@ -0,0 +1,172 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2018-Present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "TiEvaluator.h" +#import +#import + +// Macros to make life easier for defining properties with getters/setter accessor methods (which we'll remove in SDK 10.0.0 + +// Defines a setProp() accessor method in JS-world that points to setterProp:(TYPE)value in native code +#define SETTER(TYPE, NAME) JSExportAs(set##NAME, -(void)setter##NAME \ + : (TYPE)value); +// Implements the setterProp:(TYPEvalue method that forwards to typical setProp:value impl +#define SETTER_IMPL(TYPE, NAME) \ + -(void)setter##NAME : (TYPE)value \ + { \ + [self set##NAME:value]; \ + } + +// Defines a getProp() method in JS-land +#define GETTER(TYPE, NAME) \ + -(TYPE)get##NAME __attribute((deprecated("Use the property instead."))); +// Implements the special getter method that forwards to typical property name getter +#define GETTER_IMPL(TYPE, LOWER, UPPER) \ + -(TYPE)get##UPPER \ + { \ + return [self LOWER]; \ + } + +// Defines a Read/write pair of accessors +#define READWRITE(TYPE, NAME) \ + GETTER(TYPE, NAME); \ + SETTER(TYPE, NAME); + +#define READWRITE_IMPL(TYPE, LOWER, UPPER) \ + GETTER_IMPL(TYPE, LOWER, UPPER); \ + SETTER_IMPL(TYPE, UPPER); + +#define PROPERTY(TYPE, LOWER, UPPER) \ + @property TYPE LOWER; + +#define CONSTANT(TYPE, NAME) \ + @property (readonly) TYPE NAME; + +#define READONLY_PROPERTY(TYPE, LOWER, UPPER) \ + CONSTANT(TYPE, LOWER); + +// TODO: Log a warning/error if negative? +// We could also define as NSUInteger and do: if (arg - 1 == NSIntegerMax) as NaN check +#define OPTIONAL_UINT_ARGUMENT(ARG_NAME, NEW_NAME, DEFAULT) \ + NSUInteger NEW_NAME = DEFAULT; \ + if (ARG_NAME < 0 || !isnan([ARG_NAME doubleValue])) { \ + NEW_NAME = [ARG_NAME unsignedIntegerValue]; \ + } + +// Methods for grabbing properties from a JSValue object argument +#define ENSURE_PROPERTY_EXISTS(dict, name) \ + if (![dict hasProperty:name]) { \ + [self throwException:TiExceptionInvalidType subreason:[NSString stringWithFormat:@"required property \"%@\" is missing", name] location:CODELOCATION]; \ + return nil; \ + } + +#define ENSURE_UINT32_OR_DEFAULT(dict, name, fallback) \ + ([dict hasProperty:name]) ? [dict[name] toUInt32] : fallback; + +#define ENSURE_STRING_OR_DEFAULT(dict, name, fallback) \ + ([dict hasProperty:name]) ? [dict[name] toString] : fallback; + +@protocol ProxyExports + +// Properties (and accessors) +READONLY_PROPERTY(NSString *, apiName, ApiName); + +/** + Indicates that this proxy should honor bubbling of user events, if the proxy + is the type that has a parent to bubble to (This is primairly views, but may + have some exceptions). + */ +PROPERTY(BOOL, bubbleParent, BubbleParent); + +// Methods +JSExportAs(addEventListener, + -(void)addEventListener + : (NSString *)name withCallback + : (JSValue *)callback); +JSExportAs(removeEventListener, + -(void)removeEventListener + : (NSString *)name withCallback + : (JSValue *)callback); +JSExportAs(fireEvent, + -(void)fireEvent + : (NSString *)name withDict + : (NSDictionary *)dict); + +@end + +/** + The base class for Titanium proxies using new Obj-C API. + */ +@interface ObjcProxy : NSObject { + @private + NSMutableDictionary *_listeners; // new listener map for Obj-C JSC API + pthread_rwlock_t _listenerLock; + NSURL *baseURL; +} + +- (NSURL *)_baseURL; + +- (void)_destroy; +- (void)_configure; + +/** + @deprecated Only here for backwards compatibility with SDK < 8.1.0. Use `init` instead. + */ +- (id)_initWithPageContext:(id)context __attribute__((deprecated)); +- (id)_initWithPageContext:(id)context args:(NSArray *)args __attribute__((deprecated)); + +// hooks for when an event listener gets added/removed +- (void)_listenerAdded:(NSString *)type count:(int)count; +- (void)_listenerRemoved:(NSString *)type count:(int)count; + +/** + Whether or not the proxy has listeners for the specified event type. + @param type The event type. + @return _YES_ if the proxy has any listeners for the specified event type, _NO_ otherwise. + */ +- (BOOL)_hasListeners:(NSString *)type; + +- (void)fireEvent:(NSString *)name withDict:(NSDictionary *)dict; +/** + Tells the proxy to fire an event of the specified type to a listener. + @param type The event type. + @param obj The event properties. + @param listener The listener to fire event for. + */ +- (void)_fireEventToListener:(NSString *)type withObject:(id)obj listener:(JSValue *)listener; + +/** + The convenience method to raise an exception . + @param reason The exception reason. + @param subreason The exception subreason. + @param location The exception location. + */ ++ (void)throwException:(NSString *)reason subreason:(NSString *)subreason location:(NSString *)location; +- (void)throwException:(NSString *)reason subreason:(NSString *)subreason location:(NSString *)location; + ++ (JSValue *)createError:(NSString *)reason subreason:(NSString *)subreason location:(NSString *)location inContext:(JSContext *)context; +- (JSValue *)createError:(NSString *)reason subreason:(NSString *)subreason location:(NSString *)location inContext:(JSContext *)context; + +// FIXME: Should id be TiProxy* here? +- (id)JSValueToNative:(JSValue *)jsValue; +- (JSValue *)NativeToJSValue:(id)proxy; +- (JSValue *)JSValue; +- (JSValue *)JSValueInContext:(JSContext *)context; + +/** + * Convenience method to interface with "old-style" proxies, which typically need this passed in as + * the "page context" in their initializers. + **/ +- (id)executionContext; ++ (id)executionContext:(JSContext *)jsContext; + +/** + * Due to mix and match of new and old C API, JSContext.currentContext (and currentThis) may be null + * If we get called back through the old C API function callback, it will be, so we need to hack. + */ +- (JSContext *)currentContext; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/OperationQueue.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/OperationQueue.h new file mode 100644 index 0000000..181afe8 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/OperationQueue.h @@ -0,0 +1,40 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +/** + * Operation Queue is a utility class that provides a shared queue + * that can be used to handle background jobs and after the jobs complete + * can call a callback either on or off the main UI thread. + */ +@interface OperationQueue : NSObject { + NSOperationQueue *queue; +} + +/** + Returns shared instance. + @return The shared instance. + */ ++ (OperationQueue *)sharedQueue; + +/** + Queues an operation. + + Queues an operation that targets selector on target + invoke after (if not nil) on when completed + pass YES to ui to invoke after on UI main thread + @param selector The selector. + @param target The target. + @param arg The argument + @param after The after selector. + @param on The after target. + @param ui The flag to invoke after on UI thread. + */ +- (void)queue:(SEL)selector target:(id)target arg:(id)arg after:(SEL)after on:(id)on ui:(BOOL)ui; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/SBJSON.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/SBJSON.h new file mode 100644 index 0000000..9624798 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/SBJSON.h @@ -0,0 +1,144 @@ +/* +Copyright (C) 2008 Stig Brautaset. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + Neither the name of the author nor the names of its contributors may be used + to endorse or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#import + +// Have to rename this symbol to avoid conflicts; see below +extern NSString *SBJSONErrorDomain; + +enum { + EUNSUPPORTED = 1, + EPARSENUM, + EPARSE, + EFRAGMENT, + ECTRL, + EUNICODE, + EDEPTH, + EESCAPE, + ETRAILCOMMA, + ETRAILGARBAGE, + EEOF, + EINPUT +}; + +/** +@brief A strict JSON parser and generator + +This is the parser and generator underlying the categories added to +NSString and various other objects. + +Objective-C types are mapped to JSON types and back in the following way: + +@li NSNull -> Null -> NSNull +@li NSString -> String -> NSMutableString +@li NSArray -> Array -> NSMutableArray +@li NSDictionary -> Object -> NSMutableDictionary +@li NSNumber (-initWithBool:) -> Boolean -> NSNumber -initWithBool: +@li NSNumber -> Number -> NSDecimalNumber + +In JSON the keys of an object must be strings. NSDictionary keys need +not be, but attempting to convert an NSDictionary with non-string keys +into JSON will throw an exception. + +NSNumber instances created with the +numberWithBool: method are +converted into the JSON boolean "true" and "false" values, and vice +versa. Any other NSNumber instances are converted to a JSON number the +way you would expect. JSON numbers turn into NSDecimalNumber instances, +as we can thus avoid any loss of precision. + +Strictly speaking correctly formed JSON text must have exactly +one top-level container. (Either an Array or an Object.) Scalars, +i.e. nulls, numbers, booleans and strings, are not valid JSON on their own. +It can be quite convenient to pretend that such fragments are valid +JSON however, and this class lets you do so. + +This class does its best to be as strict as possible, both in what it +accepts and what it generates. (Other than the above mentioned support +for JSON fragments.) For example, it does not support trailing commas +in arrays or objects. Nor does it support embedded comments, or +anything else not in the JSON specification. + +*/ + +// In order to preserve our SBJSON modifications while allowing modules to use their own (and updated) +// SBJSON, we have to have an internal name for this class and alias it. +@interface SBJSON : NSObject { + BOOL humanReadable; + BOOL sortKeys; + NSUInteger maxDepth; + + @private + // Used temporarily during scanning/generation + NSUInteger depth; + const char *c; +} + +/// Whether we are generating human-readable (multiline) JSON +/** + Set whether or not to generate human-readable JSON. The default is NO, which produces + JSON without any whitespace. (Except inside strings.) If set to YES, generates human-readable + JSON with linebreaks after each array value and dictionary key/value pair, indented two + spaces per nesting level. + */ +@property BOOL humanReadable; + +/// Whether or not to sort the dictionary keys in the output +/** The default is to not sort the keys. */ +@property BOOL sortKeys; + +/// The maximum depth the parser will go to +/** Defaults to 512. */ +@property NSUInteger maxDepth; + ++ (id)decodeUrlQuery:(NSURL *)inputUrl; ++ (NSString *)stringify:(id)inputObject; + +/// Return JSON representation of an array or dictionary +- (NSString *)stringWithObject:(id)value error:(NSError **)error; + +/// Return JSON representation of any legal JSON value +- (NSString *)stringWithFragment:(id)value error:(NSError **)error; + +/// Return the object represented by the given string +- (id)objectWithString:(NSString *)jsonrep error:(NSError **)error; + +/// Return the fragment represented by the given string +- (id)fragmentWithString:(NSString *)jsonrep error:(NSError **)error; + +/// Return JSON representation (or fragment) for the given object +- (NSString *)stringWithObject:(id)value + allowScalar:(BOOL)x + error:(NSError **)error; + +/// Parse the string and return the represented object (or scalar) +- (id)objectWithString:(id)value + allowScalar:(BOOL)x + error:(NSError **)error; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Ti2DMatrix.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Ti2DMatrix.h new file mode 100644 index 0000000..18dea22 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Ti2DMatrix.h @@ -0,0 +1,49 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2018 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "TiProxy.h" + +/** + The proxy representing a 2D matrix for an affine transform. + */ +@interface Ti2DMatrix : TiProxy { + @protected + CGAffineTransform matrix; +} + +/** + Initializes the proxy with properties. + @param dict_ The properties dictionary. + */ +- (id)initWithProperties:(NSDictionary *)dict_; + +/** + Initializes the proxy with the specified transform matrix. + @param matrix_ The transform matrix. + */ +- (id)initWithMatrix:(CGAffineTransform)matrix_; + +/** + Returns transform matrix. + @return The transform matrix. + */ +@property (nonatomic, readonly) CGAffineTransform matrix; + +- (Ti2DMatrix *)translate:(id)args; +- (Ti2DMatrix *)scale:(id)args; +- (Ti2DMatrix *)rotate:(id)args; +- (Ti2DMatrix *)invert:(id)args; +- (Ti2DMatrix *)multiply:(id)args; + +@property (nonatomic, readwrite, retain) NSNumber *a; +@property (nonatomic, readwrite, retain) NSNumber *b; +@property (nonatomic, readwrite, retain) NSNumber *c; +@property (nonatomic, readwrite, retain) NSNumber *d; +@property (nonatomic, readwrite, retain) NSNumber *tx; +@property (nonatomic, readwrite, retain) NSNumber *ty; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Ti3DMatrix.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Ti3DMatrix.h new file mode 100644 index 0000000..536ca96 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Ti3DMatrix.h @@ -0,0 +1,44 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2018 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "TiProxy.h" + +#import + +@interface Ti3DMatrix : TiProxy { + @protected + CATransform3D matrix; +} + +- (id)initWithProperties:(NSDictionary *)dict_; +- (id)initWithMatrix:(CATransform3D)matrix_; + +- (CATransform3D)matrix; +- (Ti3DMatrix *)translate:(id)args; +- (Ti3DMatrix *)scale:(id)args; +- (Ti3DMatrix *)rotate:(id)args; +- (Ti3DMatrix *)invert:(id)args; +- (Ti3DMatrix *)multiply:(id)args; + +@property (nonatomic, readwrite, retain) NSNumber *m11; +@property (nonatomic, readwrite, retain) NSNumber *m12; +@property (nonatomic, readwrite, retain) NSNumber *m13; +@property (nonatomic, readwrite, retain) NSNumber *m14; +@property (nonatomic, readwrite, retain) NSNumber *m21; +@property (nonatomic, readwrite, retain) NSNumber *m22; +@property (nonatomic, readwrite, retain) NSNumber *m23; +@property (nonatomic, readwrite, retain) NSNumber *m24; +@property (nonatomic, readwrite, retain) NSNumber *m31; +@property (nonatomic, readwrite, retain) NSNumber *m32; +@property (nonatomic, readwrite, retain) NSNumber *m33; +@property (nonatomic, readwrite, retain) NSNumber *m34; +@property (nonatomic, readwrite, retain) NSNumber *m41; +@property (nonatomic, readwrite, retain) NSNumber *m42; +@property (nonatomic, readwrite, retain) NSNumber *m43; +@property (nonatomic, readwrite, retain) NSNumber *m44; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiAnimation.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiAnimation.h new file mode 100644 index 0000000..a666ee3 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiAnimation.h @@ -0,0 +1,160 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "LayoutConstraint.h" +#import "ListenerEntry.h" +#import "TiColor.h" +#import "TiPoint.h" +#import "TiProxy.h" +#import + +@class TiViewProxy; +@class TiAnimation; + +/** + Protocol for animation delegate. + */ +@protocol TiAnimationDelegate + +@optional + +/** + Whether or not the animation should transition. + + The method is only called if the animation is a transition animation type. + @param animation The animation this delegate is assigned to. + @return _YES_ if the animation should transition, _NO_ otherwise. + */ +- (BOOL)animationShouldTransition:(TiAnimation *)animation; + +/** + Tells the delegate that the animation will start. + @param animation The animation this delegate is assigned to. + */ +- (void)animationWillStart:(TiAnimation *)animation; + +/** + Tells the delegate that the animation did start. + @param animation The animation this delegate is assigned to. + */ +- (void)animationDidStart:(TiAnimation *)animation; + +/** + Tells the delegate that the animation will complete. + @param animation The animation this delegate is assigned to. + */ +- (void)animationWillComplete:(TiAnimation *)animation; + +/** + Tells the delegate that the animation did complete. + @param animation The animation this delegate is assigned to. + */ +- (void)animationDidComplete:(TiAnimation *)animation; + +@end + +/** + A type of proxy representing an animation to apply to a view. + */ +@interface TiAnimation : TiProxy { + @private + NSNumber *zIndex; + id left; + id right; + id top; + id bottom; + id width; + id height; + NSNumber *duration; + TiPoint *center; + TiColor *backgroundColor; + TiColor *color; + NSNumber *opacity; + NSNumber *opaque; + NSNumber *visible; + NSNumber *curve; + NSNumber *repeat; + NSNumber *autoreverse; + NSNumber *delay; + TiProxy *transform; + NSNumber *transition; + TiViewProxy *view; + TiViewProxy *animatedViewProxy; + NSNumber *dampingRatio; + NSNumber *springVelocity; + + NSDictionary *properties; + + // this is a temporary function passed in + ListenerEntry *callback; + + NSObject *delegate; + + // for animation delegate + UIView *animatedView; + + // for autoreverse + TiAnimation *reverseAnimation; + BOOL isReverse; + BOOL resetState; +} + +/** + Provides access to animation delegate object. + */ +@property (nonatomic, assign, readwrite) NSObject *delegate; + +@property (nonatomic, readwrite, assign) UIView *animatedView; +@property (nonatomic, readonly) ListenerEntry *callback; +@property (nonatomic, readwrite, assign) TiAnimation *reverseAnimation; +@property (nonatomic, readwrite, assign) BOOL isReverse; +@property (nonatomic, readwrite, assign) BOOL resetState; + +// animatable properties against what is being animated +@property (nonatomic, retain, readwrite) NSNumber *zIndex; +@property (nonatomic, retain, readwrite) id left; +@property (nonatomic, retain, readwrite) id right; +@property (nonatomic, retain, readwrite) id top; +@property (nonatomic, retain, readwrite) id bottom; +@property (nonatomic, retain, readwrite) id width; +@property (nonatomic, retain, readwrite) id height; +@property (nonatomic, retain, readwrite) NSNumber *duration; +@property (nonatomic, retain, readwrite) TiPoint *center; +@property (nonatomic, retain, readwrite) TiColor *color; +@property (nonatomic, retain, readwrite) TiColor *backgroundColor; +@property (nonatomic, retain, readwrite) NSNumber *opacity; +@property (nonatomic, retain, readwrite) NSNumber *opaque; +@property (nonatomic, retain, readwrite) NSNumber *visible; + +// properties that control the animation +@property (nonatomic, retain, readwrite) NSNumber *curve; +@property (nonatomic, retain, readwrite) NSNumber *repeat; +@property (nonatomic, retain, readwrite) NSNumber *autoreverse; +@property (nonatomic, retain, readwrite) NSNumber *delay; +@property (nonatomic, retain, readwrite) TiProxy *transform; +@property (nonatomic, retain, readwrite) NSNumber *transition; +@property (nonatomic, retain, readwrite) TiProxy *view; +@property (nonatomic, retain, readwrite) NSNumber *dampingRatio; +@property (nonatomic, retain, readwrite) NSNumber *springVelocity; + ++ (TiAnimation *)animationFromArg:(id)args context:(id)context create:(BOOL)yn; + +- (id)initWithDictionary:(NSDictionary *)properties context:(id)context; + +- (id)initWithDictionary:(NSDictionary *)properties context:(id)context callback:(KrollCallback *)callback; + +- (void)animate:(id)args; + +/** + Whether or not the animation is a transition animation type. + @return _YES_ if the animation is a transition animation type, _NO_ otherwise. + */ +- (BOOL)isTransitionAnimation; + +- (NSTimeInterval)animationDuration; +- (void)animationCompleted:(NSString *)animationID finished:(NSNumber *)finished context:(void *)context; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiApp.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiApp.h new file mode 100644 index 0000000..fbf3dc1 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiApp.h @@ -0,0 +1,299 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2015 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import +#import + +#import "KrollBridge.h" +#import "TiHost.h" +#import "TiRootViewController.h" +#import + +extern BOOL applicationInMemoryPanic; // TODO: Remove in SDK 9.0+ + +// TODO: Remove in SDK 9.0+ +TI_INLINE void waitForMemoryPanicCleared() //WARNING: This must never be run on main thread, or else there is a risk of deadlock! +{ +} + +/** + TiApp represents an instance of an application. There is always only one instance per application which could be accessed through class method. + */ +@interface TiApp : TiHost { + UIWindow *window; + UIImageView *loadView; + UIView *splashScreenView; + BOOL loaded; + + JSContextGroupRef contextGroup; + KrollBridge *kjsBridge; + + NSMutableDictionary *launchOptions; + NSTimeInterval started; + + int32_t networkActivityCount; + + TiRootViewController *controller; + NSString *userAgent; + NSString *remoteDeviceUUID; + + NSDictionary *remoteNotification; + + NSMutableDictionary *pendingCompletionHandlers; + NSMutableDictionary *pendingReplyHandlers; + NSMutableDictionary *backgroundTransferCompletionHandlers; + NSMutableDictionary *queuedBootEvents; + NSMutableDictionary *> *uploadTaskResponses; + + NSMutableDictionary *> *_queuedApplicationSelectors; + NSMutableSet *_applicationDelegates; + + BOOL appBooted; + + NSString *sessionId; + + UIBackgroundTaskIdentifier bgTask; + NSMutableArray *backgroundServices; + NSMutableArray *runningServices; + NSDictionary *localNotification; + UIApplicationShortcutItem *launchedShortcutItem; +} + +/** + Returns or set the user agent string to use for network requests. + */ +@property (nonatomic, retain) NSString *userAgent; + +/** + Determines if the application finished booting. + */ +@property (nonatomic, readonly) BOOL appBooted; + +/** + Prevents network activity indicator from showing. + Setting this property to YES disables appearance of network activity indicator when startNetwork is called. + In case network activity indicator is currently visible, it will be hidden. + + @see startNetwork + @see stopNetwork + */ +@property (nonatomic, assign) BOOL disableNetworkActivityIndicator; + +/** + TODO: Document this property! + */ +@property (nonatomic) BOOL forceSplashAsSnapshot; + +/** + Returns application's primary window. + + Convenience method to access the application's primary window + */ +@property (nonatomic, retain) IBOutlet UIWindow *window; + +/** + TODO: Document this property! + */ +@property (nonatomic, readonly) NSMutableDictionary *pendingCompletionHandlers; + +/** + TODO: Document this property! + */ +@property (nonatomic, readonly) NSMutableDictionary *backgroundTransferCompletionHandlers; + +/** + Returns details for the last remote notification. + + Dictionary containing details about remote notification, or _nil_. + */ +@property (nonatomic, readonly) NSDictionary *remoteNotification; + +/** + Returns local notification that has bees sent on the application. + + @return Dictionary containing details about local notification, or _nil_. + */ +@property (nonatomic, readonly) NSDictionary *localNotification; + +/** + Returns the application's root view controller. + */ +@property (nonatomic, retain) TiRootViewController *controller; + +/** + TODO: Document this property! + */ +@property (nonatomic, readonly) JSContextGroupRef contextGroup; + +/** + TODO: Document this property! + */ +@property (nonatomic, readonly) BOOL willTerminate; + +/** + Returns singleton instance of TiApp application object. + */ ++ (TiApp *)app NS_SWIFT_NAME(sharedApp()); + +/** + * Returns a read-only dictionary from tiapp.xml properties + */ ++ (NSDictionary *)tiAppProperties; + +/* + Convenience method to returns root view controller for TiApp instance. + @return The application's root view controller. + @see controller + */ ++ (TiRootViewController *)controller; + ++ (JSContextGroupRef)contextGroup; + +- (BOOL)windowIsKeyWindow; + +- (UIView *)topMostView; + +- (void)registerApplicationDelegate:(id)applicationDelegate; + +- (void)unregisterApplicationDelegate:(id)applicationDelegate; + +/** + Returns the queued boot events scheduled with `tryToPostNotification:withNotificationName:completionHandler:``. + + @return The dictionary of queued boot events. + */ +- (NSMutableDictionary *)queuedBootEvents; + +/** + Returns application launch options + + The method provides access to application launch options that became available when application just launched. + @return The launch options dictionary. + */ +- (NSDictionary *)launchOptions; + +/** + Returns remote UUID for the current running device. + + @return Current device UUID. + */ +- (NSString *)remoteDeviceUUID; + +/** + Tells application to show network activity indicator. + + Every call of startNetwork should be paired with . + @see stopNetwork + */ +- (void)startNetwork; + +/** + Tells application to hide network activity indicator. + + Every call of stopNetwork should have corresponding call. + @see startNetwork + */ +- (void)stopNetwork; + +/** + Generates a native notification from the given dictionary. + + @param dict The dictionary to use to generate the native notification. + */ +- (void)generateNotification:(NSDictionary *)dict; + +/** + Tells application to display modal error. + + @param message The message to show in the modal error screen. + */ +- (void)showModalError:(NSString *)message; + +/** + Tells application to display modal view controller. + + @param controller The view controller to display. + @param animated If _YES_, animates the view controller as it’s presented; otherwise, does not. + */ +- (void)showModalController:(UIViewController *)controller animated:(BOOL)animated; + +/** + Tells application to hide modal view controller. + + @param controller The view controller to hide. + @param animated If _YES_, animates the view controller as it’s hidden; otherwise, does not. + */ +- (void)hideModalController:(UIViewController *)controller animated:(BOOL)animated; + +/** + Returns unique identifier for the current application launch. + + @return Current session id. + */ +- (NSString *)sessionId; + +/** + Starts searching for background services. + */ +- (void)beginBackgrounding; + +/** + Ends background services operations. + */ +- (void)endBackgrounding; + +/** + Returns the user agent string to use for system network requests. + */ +- (NSString *)systemUserAgent; + +/** + Returns a dictionary containing the native notification information (iOS 10 and later). + */ ++ (NSDictionary *)dictionaryWithUserNotification:(UNNotification *)notification withIdentifier:(NSString *)identifier; + +/** + Returns a dictionary containing the native notification information. + */ ++ (NSDictionary *)dictionaryWithLocalNotification:(id)notification withIdentifier:(NSString *)identifier; + +/** + Tries to invoke a given selector with the given arguments. If the app did not finish launching so far, it will be queued + and processed once the JSCore bridge is ready. + + @param selector The selector to invoke. + @param arguments The arguments to pass to the selector. + */ +- (void)tryToInvokeSelector:(SEL)selector withArguments:(NSOrderedSet *)arguments; + +/** + Tries to post a given notification with the given name. If the app did not finish launching so far, it will be queued + and processed once the JSCore bridge is ready. + + @param _notification The dictionary of user-info to pass to the notification. + @param _notificationName The name of the notification to schedule. + @param completionHandler The optional completion handler to invoke if requried. + */ +- (void)tryToPostNotification:(NSDictionary *)_notification withNotificationName:(NSString *)_notificationName completionHandler:(void (^)(void))completionHandler; + +/** + Tries to post a given background-mode notification with the given name. If the app did not finish launching so far, it will be queued + and processed once the JSCore bridge is ready. + + @param userInfo The dictionary of user-info to pass to the notification. + @param notificationName The name of the notification to schedule. + */ +- (void)tryToPostBackgroundModeNotification:(NSMutableDictionary *)userInfo withNotificationName:(NSString *)notificationName; + +- (void)registerBackgroundService:(TiProxy *)proxy; +- (void)unregisterBackgroundService:(TiProxy *)proxy; +- (void)stopBackgroundService:(TiProxy *)proxy; +- (void)performCompletionHandlerWithKey:(NSString *)key andResult:(UIBackgroundFetchResult)result removeAfterExecution:(BOOL)removeAfterExecution; +- (void)performCompletionHandlerForBackgroundTransferWithKey:(NSString *)key; +- (void)watchKitExtensionRequestHandler:(id)key withUserInfo:(NSDictionary *)userInfo; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBase.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBase.h new file mode 100644 index 0000000..8f761d2 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBase.h @@ -0,0 +1,643 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2015 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "TiSharedConfig.h" +#import +#import + +#ifndef TI_BASE_H +#define TI_BASE_H + +#ifdef __cplusplus +extern "C" { +#endif + +#define MEMORY_DEBUG 0 +#define VIEW_DEBUG 0 + +#ifndef __IPHONE_4_1 +#define __IPHONE_4_1 40100 +#endif + +#ifndef __IPHONE_4_2 +#define __IPHONE_4_2 40200 +#endif + +#ifndef __IPHONE_4_3 +#define __IPHONE_4_3 40300 +#endif + +#ifndef __IPHONE_5_0 +#define __IPHONE_5_0 50000 +#endif + +#ifndef __IPHONE_5_1 +#define __IPHONE_5_1 50100 +#endif + +#ifndef __IPHONE_6_0 +#define __IPHONE_6_0 60000 +#endif + +#ifdef DEBUG +// Kroll memory debugging +#define KROLLBRIDGE_MEMORY_DEBUG MEMORY_DEBUG +#define KOBJECT_MEMORY_DEBUG MEMORY_DEBUG +#define CONTEXT_MEMORY_DEBUG MEMORY_DEBUG + +// Proxy memory debugging +#define PROXY_MEMORY_TRACK MEMORY_DEBUG +#define TABWINDOW_MEMORY_DEBUG MEMORY_DEBUG +#define CONTEXT_DEBUG MEMORY_DEBUG + +// Kroll debugging +#define KOBJECT_DEBUG MEMORY_DEBUG +#define KMETHOD_DEBUG MEMORY_DEBUG +#endif + +// in simulator we redefine to format for Titanium Developer console + +#define TI_INLINE static __inline__ + +#define TI_BACKGROUNDFETCH_MAX_INTERVAL 29 + +// We need to overload NSLog as a macro so that we capture system messages as well. +// It has to be a wrapper because other appc-libraries use TiBase's NSLog, and can't +// spoof TiApp without symbol conflicts and other issues + +#define NSLog(...) \ + { \ + TiLogMessage(__VA_ARGS__); \ + } + +// create a mutable array that doesn't retain internal references to objects +NSMutableArray *TiCreateNonRetainingArray(void); + +// create a mutable dictionary that doesn't retain internal references to objects +NSMutableDictionary *TiCreateNonRetainingDictionary(void); + +CGPoint midpointBetweenPoints(CGPoint a, CGPoint b); +void TiLogMessage(NSString *str, ...); + +/** + * Protocol for classes to provide their JavaScript details (class name, in particular). + */ +@protocol JavascriptClass +@required ++ (NSString *)javascriptClassName; +@end + +NSString *JavascriptNameForClass(Class c); + +#define CLASS2JS(x) JavascriptNameForClass(x) +#define OBJTYPE2JS(x) JavascriptNameForClass([x class]) + +#define degreesToRadians(x) (M_PI * x / 180.0) +#define radiansToDegrees(x) (x * (180.0 / M_PI)) + +// TODO: Need to update RELEASE_TO_NIL etc. to be friendly to rememberproxy/forgetproxy for concurrent +// memory mgt. +#define RELEASE_TO_NIL(x) \ + { \ + if (x != nil) { \ + [x release]; \ + x = nil; \ + } \ + } +#define RELEASE_TO_NIL_AUTORELEASE(x) \ + { \ + if (x != nil) { \ + [x autorelease]; \ + x = nil; \ + } \ + } +#define RELEASE_AND_REPLACE(x, y) \ + { \ + [x release]; \ + x = [y retain]; \ + } + +#ifdef DEBUG +#define CODELOCATION [NSString stringWithFormat:@"%s (%@:%d)", __FUNCTION__, [[NSString stringWithFormat:@"%s", __FILE__] lastPathComponent], __LINE__] +#else +#define CODELOCATION @"" +#endif + +#define NULL_IF_NIL(x) ({ id xx = (x); (xx==nil)?[NSNull null]:xx; }) + +#define IS_NULL_OR_NIL(x) ((x == nil) || ((id)x == [NSNull null])) + +#define ENSURE_CLASS_OR_NIL(x, t) \ + if (IS_NULL_OR_NIL(x)) { \ + x = nil; \ + } else if (![x isKindOfClass:t]) { \ + [self throwException:TiExceptionInvalidType subreason:[NSString stringWithFormat:@"expected: %@ or nil, was: %@", CLASS2JS(t), OBJTYPE2JS(x)] location:CODELOCATION]; \ + } + +#define ENSURE_TYPE_OR_NIL(x, t) ENSURE_CLASS_OR_NIL(x, [t class]) + +#define ENSURE_CLASS(x, t) \ + if (![x isKindOfClass:t]) { \ + [self throwException:TiExceptionInvalidType subreason:[NSString stringWithFormat:@"expected: %@, was: %@", CLASS2JS(t), OBJTYPE2JS(x)] location:CODELOCATION]; \ + } + +#define ENSURE_TYPE(x, t) ENSURE_CLASS(x, [t class]) + +//NOTE: these checks can be pulled out of production build type + +//Question: Given that some of these silently massage the data during development but not production, +//Should the data massage either be kept in production or removed in development? --Blain. + +#define ENSURE_STRING_OR_NIL(x) \ + if ([x respondsToSelector:@selector(stringValue)]) { \ + x = [(id)x stringValue]; \ + } else { \ + ENSURE_TYPE_OR_NIL(x, NSString); \ + } + +#define ENSURE_SINGLE_ARG(x, t) \ + if ([x isKindOfClass:[NSArray class]] && [(NSArray *)x count] > 0) { \ + x = (t *)[x objectAtIndex:0]; \ + } \ + ENSURE_TYPE(x, t); + +#define ENSURE_SINGLE_ARG_OR_NIL(x, t) \ + if (IS_NULL_OR_NIL(x)) { \ + x = nil; \ + } else { \ + ENSURE_SINGLE_ARG(x, t); \ + } + +#define ENSURE_ARG_AT_INDEX(out, args, index, type) \ + if ([args isKindOfClass:[NSArray class]] && [(NSArray *)args count] > index) { \ + out = (type *)[(NSArray *)args objectAtIndex:index]; \ + } \ + ENSURE_TYPE(out, type); + +#define ENSURE_ARG_OR_NIL_AT_INDEX(out, args, index, type) \ + if (IS_NULL_OR_NIL(args)) { \ + out = nil; \ + } else if ([args isKindOfClass:[NSArray class]]) { \ + if ([(NSArray *)args count] > index) { \ + out = [(NSArray *)args objectAtIndex:index]; \ + } else { \ + out = nil; \ + } \ + if (out && ![out isKindOfClass:[type class]]) { \ + [self throwException:TiExceptionInvalidType subreason:[NSString stringWithFormat:@"expected: %@, was: %@", CLASS2JS([type class]), OBJTYPE2JS(out)] location:CODELOCATION]; \ + } \ + } + +#define COERCE_TO_INT(out, in) \ + if (![in respondsToSelector:@selector(intValue)]) { \ + [self throwException:TiExceptionInvalidType subreason:[NSString stringWithFormat:@"cannot coerce type %@ to int", OBJTYPE2JS(in)] location:CODELOCATION]; \ + } \ + out = [in intValue]; + +#define ENSURE_INT_AT_INDEX(out, args, index) \ + { \ + id tmp = nil; \ + ENSURE_ARG_AT_INDEX(tmp, args, index, NSObject); \ + COERCE_TO_INT(out, tmp); \ + } + +#define ENSURE_INT_OR_NIL_AT_INDEX(out, args, index, hasValue) \ + { \ + id tmp = nil; \ + ENSURE_ARG_OR_NIL_AT_INDEX(tmp, args, index, NSObject); \ + if (tmp == nil) { \ + hasValue = NO; \ + } else { \ + hasValue = YES; \ + COERCE_TO_INT(out, tmp) \ + } \ + } + +#define ENSURE_ARG_FOR_KEY(out, args, key, type) \ + { \ + out = [args objectForKey:key]; \ + ENSURE_TYPE(out, type); \ + } + +#define ENSURE_ARG_OR_NIL_FOR_KEY(out, args, key, type) \ + { \ + out = [args objectForKey:key]; \ + ENSURE_TYPE_OR_NIL(out, type); \ + } + +#define ENSURE_INT_FOR_KEY(out, args, key) \ + { \ + id tmp = nil; \ + ENSURE_ARG_FOR_KEY(tmp, args, key, NSObject); \ + COERCE_TO_INT(out, tmp); \ + } + +#define ENSURE_INT_OR_NIL_FOR_KEY(out, args, key, hasValue) \ + { \ + id tmp = nil; \ + ENSURE_ARG_OR_NIL_FOR_KEY(tmp, args, key, NSObject); \ + if (tmp == nil) { \ + hasValue = NO; \ + } else { \ + hasValue = YES; \ + COERCE_TO_INT(out, tmp); \ + } \ + } + +//Because both NSString and NSNumber respond to intValue, etc, this is a wider net +#define ENSURE_METHOD(x, t) \ + if (![x respondsToSelector:@selector(t)]) { \ + [self throwException:TiExceptionInvalidType subreason:[NSString stringWithFormat:@"%@ doesn't respond to method: %@", OBJTYPE2JS(x), @ #t] location:CODELOCATION]; \ + } + +#define ENSURE_ARG_COUNT(x, c) \ + if ([x count] < c) { \ + [self throwException:TiExceptionNotEnoughArguments subreason:[NSString stringWithFormat:@"expected %d arguments, received: %lu", c, (unsigned long)[x count]] location:CODELOCATION]; \ + } + +#define VALUE_AT_INDEX_OR_NIL(x, i) \ + ({ NSArray * y = (x); ([y count]>i)?[y objectAtIndex:i]:nil; }) + +#define ENSURE_CONSISTENCY(x) \ + if (!(x)) { \ + [self throwException:TiExceptionInternalInconsistency subreason:nil location:CODELOCATION]; \ + } + +#define ENSURE_VALUE_CONSISTENCY(x, v) \ + { \ + __typeof__(x) __x = (x); \ + __typeof__(v) __v = (v); \ + if (__x != __v) { \ + [self throwException:TiExceptionInternalInconsistency subreason:[NSString stringWithFormat:@"(" #x ") was not (" #v ")"] location:CODELOCATION]; \ + } \ + } + +#define ENSURE_VALUE_RANGE(x, minX, maxX) \ + { \ + __typeof__(x) __x = (x); \ + __typeof__(minX) __minX = (minX); \ + __typeof__(maxX) __maxX = (maxX); \ + if ((__x < __minX) || (__x > __maxX)) { \ + [self throwException:TiExceptionRangeError subreason:[NSString stringWithFormat:@"%lld was not >= %lld and <= %lld", (long long)__x, (long long)__maxX, (long long)__minX] location:CODELOCATION]; \ + } \ + } + +#define ENSURE_DICT(x) ENSURE_TYPE(x, NSDictionary) +#define ENSURE_ARRAY(x) ENSURE_TYPE(x, NSArray) +#define ENSURE_STRING(x) ENSURE_TYPE(x, NSString) + +void TiExceptionThrowWithNameAndReason(NSString *exceptionName, NSString *reason, NSString *subreason, NSString *location); + +#define DEFINE_EXCEPTIONS \ + -(void)throwException : (NSString *)reason subreason : (NSString *)subreason location : (NSString *)location \ + { \ + NSString *exceptionName = [@"org.appcelerator." stringByAppendingString:NSStringFromClass([self class])]; \ + TiExceptionThrowWithNameAndReason(exceptionName, reason, subreason, location); \ + } \ + \ + +(void)throwException : (NSString *)reason subreason : (NSString *)subreason location : (NSString *)location \ + { \ + NSString *exceptionName = @"org.appcelerator"; \ + TiExceptionThrowWithNameAndReason(exceptionName, reason, subreason, location); \ + } + +#define THROW_INVALID_ARG(m) \ + [self throwException:TiExceptionInvalidType subreason:m location:CODELOCATION]; + +#define MAKE_SYSTEM_PROP_IPAD(name, map) \ + -(NSNumber *)name \ + { \ + if ([TiUtils isIPad]) { \ + return [NSNumber numberWithInt:map]; \ + } \ + } + +#define MAKE_SYSTEM_PROP(name, map) \ + -(NSNumber *)name \ + { \ + return [NSNumber numberWithInt:map]; \ + } + +#define MAKE_SYSTEM_PROP_UINTEGER(name, map) \ + -(NSNumber *)name \ + { \ + return [NSNumber numberWithUnsignedInteger:map]; \ + } + +#define MAKE_SYSTEM_PROP_DEPRECATED_REPLACED(name, map, api, in, newapi) \ + -(NSNumber *)name \ + { \ + DEPRECATED_REPLACED(api, in, newapi) \ + return [NSNumber numberWithInt:map]; \ + } + +#define MAKE_SYSTEM_PROP_DEPRECATED_REPLACED_REMOVED(name, map, api, in, removed, newapi) \ + -(NSNumber *)name \ + { \ + DEPRECATED_REPLACED_REMOVED(api, in, removed, newapi) \ + return [NSNumber numberWithInt:map]; \ + } + +#define MAKE_SYSTEM_PROP_DEPRECATED_REMOVED(name, map, api, in, removed) \ + -(NSNumber *)name \ + { \ + DEPRECATED_REMOVED(api, in, removed) \ + return [NSNumber numberWithInt:map]; \ + } + +#define MAKE_SYSTEM_PROP_DBL(name, map) \ + -(NSNumber *)name \ + { \ + return [NSNumber numberWithDouble:map]; \ + } + +#define MAKE_SYSTEM_STR(name, map) \ + -(NSString *)name \ + { \ + return (NSString *)map; \ + } + +#define MAKE_SYSTEM_UINT(name, map) \ + -(NSNumber *)name \ + { \ + return [NSNumber numberWithUnsignedInt:map]; \ + } + +#define MAKE_SYSTEM_NUMBER(name, map) \ + -(NSNumber *)name \ + { \ + return map; \ + } + +#define DEPRECATED_REMOVED(api, in, removed) \ + DebugLog(@"[WARN] Ti.%@ DEPRECATED in %@: REMOVED in %@", api, in, removed); + +#define DEPRECATED_REPLACED_REMOVED(api, in, removed, newapi) \ + DebugLog(@"[WARN] Ti.%@ DEPRECATED in %@, in favor of Ti.%@: REMOVED in %@", api, in, newapi, removed); + +#define DEPRECATED_REPLACED(api, in, newapi) \ + DebugLog(@"[WARN] Ti.%@ DEPRECATED in %@, in favor of Ti.%@", api, in, newapi); + +#define NUMBOOL(x) \ + [NSNumber numberWithBool:x] + +#define NUMLONG(x) \ + [NSNumber numberWithLong:x] + +#define NUMULONG(x) \ + [NSNumber numberWithUnsignedLong:x] + +#define NUMLONGLONG(x) \ + [NSNumber numberWithLongLong:x] + +#define NUMINT(x) \ + [NSNumber numberWithInt:x] + +#define NUMUINT(x) \ + [NSNumber numberWithUnsignedInt:x] + +#define NUMDOUBLE(x) \ + [NSNumber numberWithDouble:x] + +#define NUMFLOAT(x) \ + [NSNumber numberWithFloat:x] + +#define NUMINTEGER(x) \ + [NSNumber numberWithInteger:x] + +#define NUMUINTEGER(x) \ + [NSNumber numberWithUnsignedInteger:x] + +//MUST BE NEGATIVE, as it inhabits the same space as UIBarButtonSystemItem +enum { + UITitaniumNativeItemNone = -1, + UITitaniumNativeItemSpinner = -2, + UITitaniumNativeItemProgressBar = -3, + + UITitaniumNativeItemSlider = -4, + UITitaniumNativeItemSwitch = -5, + UITitaniumNativeItemMultiButton = -6, + UITitaniumNativeItemSegmented = -7, + + UITitaniumNativeItemTextView = -8, + UITitaniumNativeItemTextField = -9, + UITitaniumNativeItemSearchBar = -10, + + UITitaniumNativeItemPicker = -11, + UITitaniumNativeItemDatePicker = -12, + + UITitaniumNativeItemInfoLight = -13, + UITitaniumNativeItemInfoDark = -14, + + UITitaniumNativeItemDisclosure = -15, + + UITitaniumNativeItemContactAdd = -16 +}; + +// common sizes for iPhone (will these change for iPad?) + +#define TI_STATUSBAR_HEIGHT 20 + +#define TI_NAVBAR_HEIGHT 44 +#define TI_NAVBAR_HEIGHT_WITH_PROMPT 64 //? +#define TI_NAVBAR_BUTTON_WIDTH 20 +#define TI_NAVBAR_BUTTON_HEIGHT 20 + +#define TI_TABBAR_HEIGHT 49 + +#define TI_TEXTFIELD_HEIGHT 31 + +#define TI_KEYBOARD_PORTRAIT_HEIGHT 216 +#define TI_KEYBOARD_LANDSCAPE_HEIGHT 140 + +#define TI_SEARCHBAR_HEIGHT 56 + +#define TI_STATUSBAR_TAG 11101 + +#ifdef DEBUG +#define FRAME_DEBUG(f) \ + NSLog(@"FRAME -- size=%fx%f, origin=%f,%f", f.size.width, f.size.height, f.origin.x, f.origin.y); + +#else +#define FRAME_DEBUG(f) +#endif + +#define DEFINE_DEF_PROP(name, defval) \ + -(id)name \ + { \ + id value = [super valueForUndefinedKey:@ #name]; \ + if (value == nil || value == [NSNull null]) { \ + return defval; \ + } \ + return value; \ + } + +#define DEFINE_DEF_BOOL_PROP(name, defval) DEFINE_DEF_PROP(name, NUMBOOL(defval)) +#define DEFINE_DEF_NULL_PROP(name) DEFINE_DEF_PROP(name, [NSNull null]) +#define DEFINE_DEF_INT_PROP(name, val) DEFINE_DEF_PROP(name, NUMINT(val)) + +// TI_VERSION will be set via an external source if not set +// display a warning and set it to 0.0.0 + +#ifndef TI_VERSION +#define TI_VERSION 0.0.0 +#endif + +#define _QUOTEME(x) #x +#define STRING(x) _QUOTEME(x) + +#define TI_VERSION_STR STRING(TI_VERSION) + +//#define VERBOSE + +#ifdef VERBOSE +#define VerboseLog(...) \ + { \ + NSLog(__VA_ARGS__); \ + } +#else +#define VerboseLog(...) \ + { \ + } +#endif + +#ifdef DEVELOPER +#define DeveloperLog(...) \ + { \ + NSLog(__VA_ARGS__); \ + } +#else +#define DeveloperLog(...) \ + { \ + } +#endif + +#ifndef DebugLog +#define DebugLog(...) \ + { \ + if ([TiSharedConfig defaultConfig].debugEnabled) { \ + NSLog(__VA_ARGS__); \ + } \ + } +#endif + +#define VAL_OR_NSNULL(foo) (((foo) != nil) ? ((id)foo) : [NSNull null]) + +NSString *hexString(NSData *thedata); + +typedef enum { + TiNetworkConnectionStateNone = 0, + TiNetworkConnectionStateWifi = 1, + TiNetworkConnectionStateMobile = 2, + TiNetworkConnectionStateLan = 3, + TiNetworkConnectionStateUnknown = 4, +} TiNetworkConnectionState; + +typedef enum { + TI_BYTE = 1, + TI_SHORT, + TI_INT, + TI_LONG, + TI_FLOAT, + TI_DOUBLE +} TiDataType; + +typedef enum { + TI_READ = 1 << 0, + TI_WRITE = 1 << 1, + TI_APPEND = 1 << 2 +} TiStreamMode; + +extern NSString *const kTiASCIIEncoding; +extern NSString *const kTiISOLatin1Encoding; +extern NSString *const kTiUTF8Encoding; +extern NSString *const kTiUTF16Encoding; +extern NSString *const kTiUTF16LEEncoding; +extern NSString *const kTiUTF16BEEncoding; + +extern NSString *const kTiByteTypeName; +extern NSString *const kTiShortTypeName; +extern NSString *const kTiIntTypeName; +extern NSString *const kTiLongTypeName; +extern NSString *const kTiFloatTypeName; +extern NSString *const kTiDoubleTypeName; + +extern NSString *const kTiContextShutdownNotification; +extern NSString *const kTiWillShutdownNotification; +extern NSString *const kTiShutdownNotification; +extern NSString *const kTiSuspendNotification; +extern NSString *const kTiPausedNotification; +extern NSString *const kTiResumeNotification; +extern NSString *const kTiResumedNotification; +extern NSString *const kTiErrorNotification; +extern NSString *const kTiAnalyticsNotification; +extern NSString *const kTiRemoteDeviceUUIDNotification; +extern NSString *const kTiGestureShakeNotification; +extern NSString *const kTiRemoteControlNotification; +extern NSString *const kTiBackgroundFetchNotification; +extern NSString *const kTiSilentPushNotification; +extern NSString *const kTiBackgroundTransfer; +extern NSString *const kTiCurrentLocale; +extern NSString *const kTiUserInteraction; +extern NSString *const kTiFrameAdjustNotification; +extern NSString *const kTiLocalNotification; +extern NSString *const kTiLocalNotificationAction; +extern NSString *const kTiRemoteNotificationAction; +extern NSString *const kTiRemoteExtentionWillExpire; +extern NSString *const kTiUserNotificationSettingsNotification; +extern NSString *const kTiURLDownloadFinished; +extern NSString *const kTiURLSessionCompleted; +extern NSString *const kTiURLSessionEventsCompleted; +extern NSString *const kTiURLDowloadProgress; +extern NSString *const kTiURLUploadProgress; +extern NSString *const kTiWatchKitExtensionRequest; +extern NSString *const kTiContinueActivity; +extern NSString *const kTiApplicationShortcut; +extern NSString *const kTiApplicationLaunchedFromURL; +extern NSString *const kTiTraitCollectionChanged; + +#ifndef TI_USE_AUTOLAYOUT +extern NSString *const kTiBehaviorSize; +extern NSString *const kTiBehaviorFill; +extern NSString *const kTiBehaviorAuto; +extern NSString *const kTiUnitPixel; +extern NSString *const kTiUnitCm; +extern NSString *const kTiUnitMm; +extern NSString *const kTiUnitInch; +extern NSString *const kTiUnitDip; +extern NSString *const kTiUnitDipAlternate; +extern NSString *const kTiUnitSystem; +extern NSString *const kTiUnitPercent; +#endif +extern NSString *const kTiExceptionSubreason; +extern NSString *const kTiExceptionLocation; + +#ifndef ASI_AUTOUPDATE_NETWORK_INDICATOR +#define ASI_AUTOUPDATE_NETWORK_INDICATOR 0 +#endif + +#ifndef ASI_AUTOUPDATE_NETWORK_INDICATOR +#define REACHABILITY_20_API 1 +#endif + +#include "TiThreading.h" + +/** + * TiThreadPerformOnMainThread should replace all Titanium instances of + * performSelectorOnMainThread, ESPECIALLY if wait is to be yes. That way, + * exceptional-case main thread activities can process them outside of the + * standard event loop. + */ +void TiThreadPerformOnMainThread(void (^mainBlock)(void), BOOL waitForFinish); + +#include "TiPublicAPI.h" + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBindingRunLoop.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBindingRunLoop.h new file mode 100644 index 0000000..03ba088 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBindingRunLoop.h @@ -0,0 +1,40 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2012 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#if TARGET_OS_IPHONE + +#import "KrollContext.h" + +typedef KrollContext *TiBindingRunLoop; + +#else + +typedef void *TiBindingRunLoop; + +#endif + +typedef void (*TiBindingCallback)(TiBindingRunLoop runLoop, void *payload); + +/* TiBindingRunLoop's Enqueue will add a callback that will be run once + * during the run loop's idle. This is for things like events, callbacks, + * and other invocations from native into Javascript. + */ +void TiBindingRunLoopEnqueue(TiBindingRunLoop runLoop, TiBindingCallback callback, void *payload); + +/* TiBindingRunLoop's CallOnStart will add a callback that will be run + * every time a run loop is started, before the file is executed. Because + * the file the run loop uses is not parsed or run yet, there won't be a + * path, but this lets you enqeue methods to run immediately after the + * parsing, or set up changes to the runtime environment. The Titanium + * and other globals WILL be set during the callback's execution. + * + * These callbacks are invoked before: + * app.js is started + * A background service is started + * A window with an url property is being opened + */ +void TiBindingRunLoopCallOnStart(TiBindingCallback callback, void *payload); diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBlob.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBlob.h new file mode 100644 index 0000000..a2bf689 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBlob.h @@ -0,0 +1,225 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-Present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "ObjcProxy.h" +#import + +//@class TiFile; // forward declare +@class TiBlob; +@class UIImage; + +@protocol BlobExports + +// Properties (and accessors) +// FIXME: Change to TiFile* once it's been moved to a new obj-c proxy +/** + Returns the blob file. + @return The file. + */ +READONLY_PROPERTY(JSValue *, file, File); +/** + Returns height if the blob object is an image, _0_ otherwise. + */ +READONLY_PROPERTY(NSUInteger, height, Height); +/** + Returns height of image after factoring in EXIF orientation, _0_ otherwise. + */ +READONLY_PROPERTY(NSUInteger, uprightHeight, UprightHeight); +/** + Returns the data length. + */ +READONLY_PROPERTY(NSUInteger, length, Length); +/** + Returns the blob mime type. + @return The mime type string. + */ +READONLY_PROPERTY(NSString *, mimeType, MimeType); +/** + Returns the blob native path (Android compatibility). + @return The blob native path. + */ +READONLY_PROPERTY(NSString *, nativePath, NativePath); +/** + Return the data size. + + For file, data returns the size in bytes, for image, returns the width x height. + */ +READONLY_PROPERTY(NSUInteger, size, Size); +/** + Return a textual representation of the blob. + + The method converts data into a textual representation. Appropriate only for types TiBlobTypeFile and TiBlobTypeData. + */ +READONLY_PROPERTY(NSString *, text, Text); +/** + Returns width if the blob object is an image, _0_ otherwise. + */ +READONLY_PROPERTY(NSUInteger, width, Width); +/** + Returns width of image after factoring in EXIF orientation, _0_ otherwise. + */ +READONLY_PROPERTY(NSUInteger, uprightWidth, UprightWidth); + +// Methods +- (void)append:(TiBlob *)blob; +- (TiBlob *)imageAsCompressed:(float)compressionQuality; +- (TiBlob *)imageAsCropped:(NSDictionary *)options; +JSExportAs(imageAsResized, + -(TiBlob *)imageAsResized + : (NSUInteger)width withHeight + : (NSUInteger)height); +JSExportAs(imageAsThumbnail, + -(TiBlob *)imageAsThumbnail + : (NSUInteger)size withBorder + : (NSNumber *)optionalBorderSize withRadius + : (NSNumber *)optionalCornerRadius); +- (TiBlob *)imageWithAlpha; +JSExportAs(imageWithRoundedCorner, + -(TiBlob *)imageWithRoundedCorner + : (NSUInteger)cornerSize withBorder + : (NSNumber *)optionalBorderSize); +- (TiBlob *)imageWithTransparentBorder:(NSUInteger)size; +- (NSString *)toString; +- (JSValue *)toArrayBuffer; +- (JSValue *)arrayBuffer; + +@end + +typedef enum { + TiBlobTypeImage = 0, + TiBlobTypeFile = 1, + TiBlobTypeData = 2, + TiBlobTypeSystemImage = 3 +} TiBlobType; + +/** + Blob object class. + */ +@interface TiBlob : ObjcProxy { + @private + TiBlobType type; + NSString *mimetype; + NSData *data; + UIImage *image; + NSString *path; + BOOL imageLoadAttempted; + NSString *systemImageName; +} + +/** + Initialize the blob with an image. + @param image The image + @deprecated Only here for backwards compatibility with SDK < 8.1.0. Use `initWithImage:` instead. + */ +- (id)_initWithPageContext:(__unused id)pageContext andImage:(UIImage *)image __attribute__((deprecated)); + +/** + Initialize the blob with data. + @param data The raw data. + @param mimetype The data mime type. + @deprecated Only here for backwards compatibility with SDK < 8.1.0. Use `initWithData:mimeType:` instead. + */ +- (id)_initWithPageContext:(__unused id)pageContext andData:(NSData *)data mimetype:(NSString *)mimetype __attribute__((deprecated)); + +/** + Initialize the blob with contents of a file. + @param path The path to the file. + @deprecated Only here for backwards compatibility with SDK < 8.1.0. Use `initWithFile:` instead. + */ +- (id)_initWithPageContext:(__unused id)pageContext andFile:(NSString *)path __attribute__((deprecated)); + +/** + Initialize the blob with an image. + @param image The image + */ +- (id)initWithImage:(UIImage *)image; + +/** +Initialize the blob with a system image. +@param imageName The system image name +*/ +- (id)initWithSystemImage:(NSString *)imageName; + +/** + Returns the System Image Name . + @return The string or nil. + */ +- (NSString *)systemImageName; + +/** + Initialize the blob with data. + @param data_ The raw data. + @param mimetype_ The data mime type. + */ +- (id)initWithData:(NSData *)data_ mimetype:(NSString *)mimetype_; + +/** + Initialize the blob with data. Used for encrypted files/assets. + @param data_ The raw data. + @param path_ The path to the file. + */ +- (id)initWithData:(NSData *)data_ andPath:(NSString *)path_; + +/** + Initialize the blob with contents of a file. + @param path The path to the file. + */ +- (id)initWithFile:(NSString *)path; + +/** + Initialises blob with data. + @param data Th data to set. + */ +- (void)setData:(NSData *)data; + +/** + Initializes blob with image. + @param image The image to set. + */ +- (void)setImage:(UIImage *)image; + +/** + Sets the blob type. + @param mime The mime type string. + @param type The blob type. + */ +- (void)setMimeType:(NSString *)mime type:(TiBlobType)type; + +/** + Returns the blob type. + @return The blob type. + */ +- (TiBlobType)type; + +/** + Returns the blob raw data. + @return The raw data. + */ +- (NSData *)data; + +/** + Returns the blob image. + @return The image or _nil_ if the blob data cannot represent an image. + */ +- (UIImage *)image; + +/** + Returns the blob file path. + @return The file path. + */ +- (NSString *)path; + +/** + Tells the blob to write its data to a file. + @param path The file path. + @param error The error result if failed. + @return _YES_ if the write operation succeeded, _NO_ otherwise. + */ +- (BOOL)writeTo:(NSString *)path error:(NSError **)error; + +#pragma mark Image specific blob manipulations + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBuffer.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBuffer.h new file mode 100644 index 0000000..ed8c936 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiBuffer.h @@ -0,0 +1,62 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-Present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "TiProxy.h" +#import + +@class TiBlob; // forward declare + +// TODO: Support array-style access of bytes +/** + The class represents a buffer of bytes. + */ +@interface TiBuffer : TiProxy { + NSMutableData *data; + NSNumber *byteOrder; +} +/** + Provides access to raw data. + */ +@property (nonatomic, retain) NSMutableData *data; + +// Public API +- (NSNumber *)append:(id)args; +- (NSNumber *)insert:(id)args; + +//This API is meant for the Javascript, and because of ARC conflating this with +//copy from NSObject(UIResponderStandardEditActions), we can't declare it here. +//Note that this does not affect calling from JS. +#if !__has_feature(objc_arc) +- (NSNumber *)copy:(id)args; +#endif + +- (TiBuffer *)clone:(id)args; +- (void)fill:(id)args; + +- (void)clear:(id)_void; +- (void)release:(id)_void; + +- (TiBlob *)toBlob:(id)_void; +- (NSString *)toString:(id)_void; + +/** + Provides access to the buffer length. + */ +@property (nonatomic, assign) NSNumber *length; + +/** + Provides access to the data byte order. + + The byte order values are: 1 - little-endian, 2 - big-endian. + */ +@property (nonatomic, retain) NSNumber *byteOrder; + +// SPECIAL NOTES: +// Ti.Buffer objects have an 'overloaded' Ti.Buffer[x] operation for x==int (making them behave like arrays). +// See the code for how this works. + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiColor.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiColor.h new file mode 100644 index 0000000..23679a1 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiColor.h @@ -0,0 +1,51 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "TiProxy.h" +#import + +/** + The UIColor proxy for cases where you need to return the color + that was set and you need to return the original value (like #fff) back + to the user - UIColor doesn't give you a way to get the RGB complements + so this proxy does it for you. + */ +@interface TiColor : TiProxy { + UIColor *color; + NSString *name; +} +/** + Returns color proxy by name. + @param name The color name. + @return The color proxy object. + */ ++ (id)colorNamed:(NSString *)name; + +/** + Initializes the color proxy with color and name. + @param color The color. + @param name The color name. + */ +- (id)initWithColor:(UIColor *)color name:(NSString *)name; + +/** + Returns the color. + @return The color. + */ +@property (nonatomic, readonly) UIColor *color; + +/** + Returns the color name. + @return The color name. + */ +@property (nonatomic, readonly) NSString *name; + +#pragma mark Deprecated + +- (UIColor *)_color; +- (NSString *)_name; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiComplexValue.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiComplexValue.h new file mode 100644 index 0000000..d135ef7 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiComplexValue.h @@ -0,0 +1,40 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +/** + The simple wrapper for properties which have "withObject" + argument semantics that need to be stored inside our proxy until the + view is available. currently the key/value store of the properties + makes it difficult to handle without marshalling them inside a wrapped + container like this. + */ + +#import + +@interface TiComplexValue : NSObject { + id value; + NSDictionary *properties; +} + +/** + Initializes the value. + @param value The value to set. + @param properties The additional properties. + */ +- (id)initWithValue:(id)value properties:(NSDictionary *)properties; + +/** + Returns the underlying value. + */ +@property (nonatomic, readonly) id value; + +/** + Returns the associated properties dictionary. + */ +@property (nonatomic, readonly) NSDictionary *properties; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiControllerProtocols.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiControllerProtocols.h new file mode 100644 index 0000000..714491d --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiControllerProtocols.h @@ -0,0 +1,106 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2013-Present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "TiViewProxy.h" +#import + +@class KrollPromise; + +/** + Protocol for orientation controller. + */ +@protocol TiOrientationController +@required +- (void)childOrientationControllerChangedFlags:(id)orientationController; +@property (nonatomic, readonly) TiOrientationFlags orientationFlags; +@property (nonatomic, readwrite, assign) id parentOrientationController; + +@end + +/** + Protocol for Window + */ +@protocol TiWindowProtocol + +- (KrollPromise *)open:(id)args; +- (KrollPromise *)close:(id)args; +- (BOOL)_handleOpen:(id)args; +- (BOOL)_handleClose:(id)args; +- (BOOL)opening; +- (BOOL)closing; +- (BOOL)isModal; +- (BOOL)hidesStatusBar; +- (BOOL)homeIndicatorAutoHide; +- (UIStatusBarStyle)preferredStatusBarStyle; + +// Containing controller will call these callbacks(appearance/rotation) on contained windows when it receives them. +- (void)viewWillAppear:(BOOL)animated; +- (void)viewWillDisappear:(BOOL)animated; +- (void)viewDidAppear:(BOOL)animated; +- (void)viewDidDisappear:(BOOL)animated; +- (void)presentationControllerDidDismiss:(UIPresentationController *)presentationController; +- (void)presentationControllerWillDismiss:(UIPresentationController *)presentationController; + +- (void)preferredContentSizeDidChangeForChildContentContainer:(id)container; +- (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id)coordinator; +- (void)systemLayoutFittingSizeDidChangeForChildContentContainer:(id)container; +- (void)willTransitionToTraitCollection:(UITraitCollection *)newCollection withTransitionCoordinator:(id)coordinator; + +// Focus callbacks from containing or hosting controller +- (void)gainFocus; +- (void)resignFocus; +- (BOOL)handleFocusEvents; + +// ViewController support. Always returns TiViewController (or subclass). +- (UIViewController *)hostingController; + +@property (nonatomic, readwrite, assign) BOOL isManaged; + +@end + +/** + Protocol for containment controller. Implemented by UIViewControllers that can host Titanium Windows + */ +@protocol TiControllerContainment +@required +- (BOOL)canHostWindows; +- (UIView *)hostingView; +//Called by light weight windows from their windowWillOpen, windowWillClose, windowDidOpen, windowDidClose methods +- (void)willOpenWindow:(id)theWindow; +- (void)willCloseWindow:(id)theWindow; +- (void)didOpenWindow:(id)theWindow; +- (void)didCloseWindow:(id)theWindow; +- (void)showControllerModal:(UIViewController *)theController animated:(BOOL)animated; +- (void)hideControllerModal:(UIViewController *)theController animated:(BOOL)animated; +@end + +@protocol TiRootControllerProtocol +/** + The protocol for root controller. + It is not intended to be implemented by clients. + @see TiRootViewController + */ + +@required + +//Background Control +- (void)setBackgroundImage:(UIImage *)arg; +- (void)setBackgroundColor:(UIColor *)arg; +- (void)dismissDefaultImage; + +//Keyboard stuff +- (BOOL)keyboardVisible; +- (void)dismissKeyboard; +- (void)didKeyboardFocusOnProxy:(TiViewProxy *)visibleProxy; +- (void)didKeyboardBlurOnProxy:(TiViewProxy *)blurredProxy; + +//ViewController stuff +- (TiOrientationFlags)getDefaultOrientations; +- (UIViewController *)topPresentedController; +- (UIViewController *)topContainerController; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiDefines.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiDefines.h new file mode 100644 index 0000000..6d3cdda --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiDefines.h @@ -0,0 +1,11 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2018-present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#ifndef TiDefines_h +#define TiDefines_h + +#endif /* TiDefines_h */ diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiDimension.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiDimension.h new file mode 100644 index 0000000..e9ad591 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiDimension.h @@ -0,0 +1,159 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#ifdef TI_USE_AUTOLAYOUT +#import "LayoutConstraint.h" +#import "TiLayoutDimension.h" +#else + +#import "TiBase.h" +#include + +#define INCH_IN_CM 2.54 +#define INCH_IN_MM 25.4 + +//Not a class for speed reasons, like LayoutConstraint. + +typedef enum { + TiDimensionTypeUndefined, + TiDimensionTypeDip, + TiDimensionTypeAuto, + TiDimensionTypeAutoSize, + TiDimensionTypeAutoFill, + TiDimensionTypePercent, +} TiDimensionType; + +/** + The dimension struct. + */ +struct TiDimension { + TiDimensionType type; + CGFloat value; + //If type is TiDimensionTypeDip, value is a Dip constant, + //If type is TiDimensionTypePercent, value ranges from 0 (0%) to 1.0 (100%) +}; + +typedef struct TiDimension TiDimension; + +extern const TiDimension TiDimensionZero; +extern const TiDimension TiDimensionAuto; +extern const TiDimension TiDimensionAutoSize; +extern const TiDimension TiDimensionAutoFill; +extern const TiDimension TiDimensionUndefined; + +TiDimension TiDimensionMake(TiDimensionType type, CGFloat value); +TiDimension TiDimensionFromObject(id object); +CGFloat convertInchToPixels(CGFloat value); +CGFloat convertPixelsToDip(CGFloat value); +CGFloat convertDipToInch(CGFloat value); +CGFloat convertDipToDefaultUnit(CGFloat value); + +CGFloat convertDipToPixels(CGFloat value); + +TI_INLINE TiDimension TiDimensionDip(CGFloat value) +{ + return TiDimensionMake(TiDimensionTypeDip, value); +} + +TI_INLINE bool TiDimensionIsPercent(TiDimension dimension) +{ + return dimension.type == TiDimensionTypePercent; +} + +TI_INLINE bool TiDimensionIsAuto(TiDimension dimension) +{ + return dimension.type == TiDimensionTypeAuto; +} + +TI_INLINE bool TiDimensionIsAutoSize(TiDimension dimension) +{ + return dimension.type == TiDimensionTypeAutoSize; +} + +TI_INLINE bool TiDimensionIsAutoFill(TiDimension dimension) +{ + return dimension.type == TiDimensionTypeAutoFill; +} + +TI_INLINE bool TiDimensionIsDip(TiDimension dimension) +{ + return dimension.type == TiDimensionTypeDip; +} + +TI_INLINE bool TiDimensionIsUndefined(TiDimension dimension) +{ + return dimension.type == TiDimensionTypeUndefined; +} + +TI_INLINE bool TiDimensionEqual(TiDimension dimension1, TiDimension dimension2) +{ + if (dimension1.type != dimension2.type) { + return false; + } + if (TiDimensionIsDip(dimension1) || TiDimensionIsPercent(dimension1)) { + return dimension1.value == dimension2.value; + } + return true; +} + +TI_INLINE BOOL TiDimensionDidCalculateValue(TiDimension dimension, CGFloat boundingValue, CGFloat *result) +{ + switch (dimension.type) { + case TiDimensionTypeDip: + *result = dimension.value; + return YES; + case TiDimensionTypePercent: + *result = floorf(dimension.value * boundingValue); + return YES; + default: { + break; + } + } + return NO; +} + +TI_INLINE CGFloat TiDimensionCalculateValue(TiDimension dimension, CGFloat boundingValue) +{ + CGFloat result; + if (TiDimensionDidCalculateValue(dimension, boundingValue, &result)) { + return result; + } + return 0.0; +} + +TI_INLINE CGFloat TiDimensionCalculateRatio(TiDimension dimension, CGFloat boundingValue) +{ + switch (dimension.type) { + case TiDimensionTypePercent: + return dimension.value; + case TiDimensionTypeDip: + return dimension.value / boundingValue; + default: { + break; + } + } + return 0.0; +} + +TI_INLINE CGFloat TiDimensionCalculateMargins(TiDimension dimension1, TiDimension dimension2, CGFloat boundingValue) +{ + return boundingValue - (TiDimensionCalculateValue(dimension1, boundingValue) + TiDimensionCalculateValue(dimension2, boundingValue)); +} + +//TODO: Do these ALL have to be TI_INLINE? +TI_INLINE CGRect TiDimensionLayerContentCenter(TiDimension top, TiDimension left, TiDimension bottom, TiDimension right, CGSize imageSize) +{ + CGRect result; + result.origin.y = TiDimensionCalculateRatio(top, imageSize.height); + result.size.height = 1.0 - TiDimensionCalculateRatio(bottom, imageSize.height) - result.origin.y; + result.origin.x = TiDimensionCalculateRatio(left, imageSize.width); + result.size.width = 1.0 - TiDimensionCalculateRatio(right, imageSize.width) - result.origin.x; + + return result; +} + +#endif \ No newline at end of file diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiEvaluator.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiEvaluator.h new file mode 100644 index 0000000..bf010a8 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiEvaluator.h @@ -0,0 +1,47 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "KrollContext.h" +#import + +@class TiHost; + +@protocol TiEvaluator + +- (TiHost *)host; + +- (NSString *)basename; + +@property (nonatomic, readwrite, retain) NSURL *currentURL; + +- (void)evalJSWithoutResult:(NSString *)code; + +- (void)evalFile:(NSString *)file; + +- (BOOL)evaluationError; + +// NOTE: this must only be called on a thread JS thread or an exception will occur +- (id)evalJSAndWait:(NSString *)code; + +- (void)fireEvent:(id)listener withObject:(id)obj remove:(BOOL)yn thisObject:(id)thisObject_; + +- (id)preloadForKey:(id)key name:(id)key; + +- (KrollContext *)krollContext; + +//Creates a kroll object to be used with the proxy. +- (id)registerProxy:(id)proxy; + +//Removes the kroll object and the proxy. +- (void)unregisterProxy:(id)proxy; + +//Returns YES if and only iff the proxy has been registered. +- (BOOL)usesProxy:(id)proxy; + +//Returns the kroll object created iff the proxy has been registered. Otherwise, returns nil. +- (id)krollObjectForProxy:(id)proxy; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiExceptionHandler.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiExceptionHandler.h new file mode 100644 index 0000000..2355baf --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiExceptionHandler.h @@ -0,0 +1,129 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2012 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import +#import + +@class KrollContext; +@class JSValue; +@class JSContext; + +#pragma mark - TiScriptError + +/** + * Script Error class + */ +@interface TiScriptError : NSObject + +/** + * Returns source URL where error happened. + */ +@property (nonatomic, readonly) NSString *sourceURL; + +/** + * Returns the actual source code line as a string where the error happened. + */ +@property (nonatomic, readonly) NSString *sourceLine; + +/** + * Returns line number where error happened. + */ +@property (nonatomic, readonly) NSInteger lineNo; + +/** + * Returns line column where error happened. + */ +@property (nonatomic, readonly) NSInteger column; + +/** + * Returns error related message + */ +@property (nonatomic, readonly) NSString *message; + +/** + * If created with a dictionary, returns the creating dictionary. Otherwise, may be nil. + */ +@property (nonatomic, readonly) NSDictionary *dictionaryValue; + +/** + * Returns the call stack as a static string. May or may not include the most recent function. + */ +@property (nonatomic, readonly) NSString *backtrace; + +/** + * Returns the native stack as a static string. + */ +@property (nonatomic, readonly) NSArray *nativeStack; + +/** + * Returns the pre-formated and cleaned native stack trace. + */ +@property (nonatomic, readonly) NSArray *formattedNativeStack; + +- (id)initWithMessage:(NSString *)message sourceURL:(NSString *)sourceURL lineNo:(NSInteger)lineNo; +- (id)initWithDictionary:(NSDictionary *)dictionary; + +/** + * Returns detailed description. + */ +- (NSString *)detailedDescription; + +@end + +#pragma mark - TiExceptionHandlerDelegate + +/** + * Exception handler delegate protocol. + */ +@protocol TiExceptionHandlerDelegate + +/** + * Called when a Objective-C exception is thrown. + * @param exception An original NSException object + */ +- (void)handleUncaughtException:(NSException *)exception; + +/** + * Called when a JavaScript script error occured. + * @param error An JavaScript script error + */ +- (void)handleScriptError:(TiScriptError *)error; + +@end + +#pragma mark - TiExceptionHandler + +/** + * The Exception Handler class. Singleton instance accessed via + */ +@interface TiExceptionHandler : NSObject + +/** + * Delegate for error/exception handling + * @see TiExceptionHandlerDelegate + */ +@property (nonatomic, assign) id delegate; + +/** + * Presents provided script error to user. Default behavior in development mode. + * @param error The script error object/ + */ +- (void)showScriptError:(TiScriptError *)error; + +/** + * Returns singleton instance of TiExceptionHandler. + * @return singleton instance + */ ++ (TiExceptionHandler *)defaultExceptionHandler; + +- (void)reportScriptError:(TiScriptError *)error; + +- (void)reportScriptError:(JSValueRef)errorRef inKrollContext:(KrollContext *)krollContext; + +- (void)reportScriptError:(JSValue *)error inJSContext:(JSContext *)context; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFile.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFile.h new file mode 100644 index 0000000..bff9473 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFile.h @@ -0,0 +1,63 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-Present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "TiProxy.h" + +@class TiBlob; // forward declare +/** + The main interface for File-based proxies -- this is in the API + since Filesystem implements it but we want to be able to have other + modules be able to cast to it transparently (such as database) + but without causing a compile-time dependency on Filesystem module. + */ +@interface TiFile : TiProxy { + @protected + NSString *path; + BOOL deleteOnExit; +} + +/** + Returns absolute path of the file on file system. + */ +@property (nonatomic, readonly) NSString *path; + +/** + Returns size of the file on file. + */ +@property (nonatomic, readonly) unsigned long long size; + +/** + Creates new instance of TiFile with specified path. + @param path The absolute path. + @return A created instance of TiFile. + */ +- (id)initWithPath:(NSString *)path; + +/** + Creates new instance of TiFile for a temporary file with specified path. + + The references file will be deleted on file system when the TiFile object is released. + @param path The absolute path. + @return A created instance of TiFile. + */ +- (id)initWithTempFilePath:(NSString *)path; + +/** + Creates a new instance of TiFile for a temporary file created with specified extension in the default temporary folder. + @param extension The temporary file extension. + @return A created instance of TiFile. + */ ++ (TiFile *)createTempFile:(NSString *)extension; + +/** + Returns the contents of the file as a TiBlob. + @return The TiBlob object. + */ +- (TiBlob *)blob; + +- (TiBlob *)toBlob:(id)args; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFilesystemFileProxy.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFilesystemFileProxy.h new file mode 100644 index 0000000..1482b2f --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFilesystemFileProxy.h @@ -0,0 +1,29 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2018 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "TiFile.h" + +@class TiFilesystemFileStreamProxy; + +@interface TiFilesystemFileProxy : TiFile { +} + +- (id)initWithFile:(NSString *)path; + +- (TiFilesystemFileStreamProxy *)open:(id)args; + ++ (TiFilesystemFileProxy *)makeTemp:(BOOL)isDirectory; + +@property (nonatomic, readonly) NSString *name; +@property (nonatomic, readonly) NSString *nativePath; +@property (nonatomic, readonly) NSNumber *readonly; +@property (nonatomic, readonly) NSNumber *writable; +@property (nonatomic, readonly) NSNumber *symbolicLink; +@property (nonatomic, readonly) NSNumber *executable; +@property (nonatomic, readonly) NSNumber *hidden; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFilesystemFileStreamProxy.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFilesystemFileStreamProxy.h new file mode 100644 index 0000000..a02570e --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiFilesystemFileStreamProxy.h @@ -0,0 +1,17 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "TiStreamProxy.h" + +@interface TiFilesystemFileStreamProxy : TiStreamProxy { + + @private + NSFileHandle *fileHandle; + TiStreamMode mode; +} + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiGradient.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiGradient.h new file mode 100644 index 0000000..de6b8b6 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiGradient.h @@ -0,0 +1,54 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "TiProxy.h" + +#import "TiDimension.h" +#import "TiPoint.h" + +#import +#import + +typedef enum { + TiGradientTypeLinear, + TiGradientTypeRadial, +} TiGradientType; + +@interface TiGradient : TiProxy { + TiGradientType type; + + TiPoint *startPoint; + TiPoint *endPoint; + + TiDimension startRadius; + TiDimension endRadius; + + BOOL backfillStart; + BOOL backfillEnd; + + CGGradientRef cachedGradient; + + CFMutableArrayRef colorValues; + CGFloat *colorOffsets; //A -1 indicates a lack of entry. + NSUInteger arraySize; + int offsetsDefined; + @private +} + +@property (nonatomic, readwrite, assign) BOOL backfillStart; +@property (nonatomic, readwrite, assign) BOOL backfillEnd; + +- (void)paintContext:(CGContextRef)context bounds:(CGRect)bounds; + ++ (TiGradient *)gradientFromObject:(id)value proxy:(TiProxy *)proxy; + +@end + +@interface TiGradientLayer : CALayer { + TiGradient *gradient; +} +@property (nonatomic, readwrite, retain) TiGradient *gradient; +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiHost.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiHost.h new file mode 100644 index 0000000..406b26f --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiHost.h @@ -0,0 +1,51 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2020 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "Bridge.h" +#import "Module.h" +#import "TiEvaluator.h" +#import "TiProxy.h" +#import "TiStylesheet.h" + +@interface TiHost : NSObject { + NSMutableDictionary> *modules; + NSMutableDictionary> *contexts; + NSURL *startURL; + NSURL *baseURL; + TiStylesheet *stylesheet; + BOOL debugMode; +} +@property (nonatomic, assign) BOOL debugMode; +@property (nonatomic, assign) BOOL profileMode; + +- (NSString *)appID; +- (NSURL *)baseURL; +- (NSURL *)startURL; ++ (NSString *)resourcePath; +/** + * Get path relative to resources dir. + * @param url a file URL + */ ++ (NSString *)resourceRelativePath:(NSURL *)url; + +- (TiStylesheet *)stylesheet; + ++ (NSURL *)resourceBasedURL:(NSString *)fn baseURL:(NSString **)base; + +- (id)moduleNamed:(NSString *)name context:(id)context; + +- (void)fireEvent:(id)listener withObject:(id)obj remove:(BOOL)remove context:(id)context thisObject:(TiProxy *)thisObject_; +- (void)removeListener:(id)listener context:(id)context; +- (void)evaluateJS:(NSString *)js context:(id)context; + +- (void)registerContext:(id)context forToken:(NSString *)token; +- (void)unregisterContext:(id)context forToken:(NSString *)token; +- (id)contextForToken:(NSString *)token; + +- (KrollBridge *)krollBridge; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLayoutQueue.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLayoutQueue.h new file mode 100644 index 0000000..850b06d --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLayoutQueue.h @@ -0,0 +1,35 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#ifndef TI_USE_AUTOLAYOUT + +#import + +@class TiViewProxy; + +/** + Layout queue utility class. + */ +@interface TiLayoutQueue : NSObject { +} + +/** + Adds view proxy to the layout queue. + @param newViewProxy The view proxy to add. + */ ++ (void)addViewProxy:(TiViewProxy *)newViewProxy; + +/** + Forces view proxy refresh. + @param thisProxy The view proxy to layout. + */ ++ (void)layoutProxy:(TiViewProxy *)thisProxy; + ++ (void)resetQueue; +@end + +#endif \ No newline at end of file diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLocale.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLocale.h new file mode 100644 index 0000000..5031738 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLocale.h @@ -0,0 +1,49 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +/** + The class represents locale. + */ +@interface TiLocale : NSObject { + NSString *currentLocale; + NSBundle *bundle; +} + +/** + Returns the current locate. + @see currentLocale + */ +@property (nonatomic, readwrite, retain) NSString *currentLocale; + +/** + Returns the bundle associated with the locale. + + Read-only property. + */ +@property (nonatomic, readwrite, retain) NSBundle *bundle; + +/** + Returns default locale. + */ ++ (NSString *)defaultLocale; + +/** + Sets current locale. + @param locale The locale to set. + */ ++ (void)setLocale:(NSString *)locale; + +/** + Return localized text for the key. + @param key The text key. + @param defaultValue The default value. + */ ++ (NSString *)getString:(NSString *)key comment:(NSString *)defaultValue; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLogServer.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLogServer.h new file mode 100644 index 0000000..1a9b867 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiLogServer.h @@ -0,0 +1,76 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +@import Foundation; + +/** + * Important: Do NOT call NSLog() from this file. The app will go into an + * infinite loop of death. Use forcedNSLog() instead. + * + * iOS platform hackers: when you manually run this project from Xcode, it may + * be handy, but not necessary, to connect to the log server and here's some + * Node.js code to help: + * + * require('net').connect(10571) + * .on('data', data => process.stdout.write(data.toString())) + * .on('error', err => console.log('Error:', err)) + * .on('end', () => console.log('Disconnected from server')); + */ + +@interface TiLogServer : NSObject + +@property (nonatomic, assign) NSUInteger port; + +/** + * The default shared log server instance. + * + * @return id An initialized instance of this class + */ ++ (TiLogServer *)defaultLogServer; + +/** + * Writes the log message to all active connections. If there are no active + * connections, then the message is added to the log queue. + * @param message The message to log to the console + */ +- (void)log:(NSString *)message; + +/** + * Starts the log server. It only listens on the local loopback. This function + * is re-entrant. + */ +- (void)start; + +/** + * Stops the log server. This function is re-entrant. + */ +- (void)stop; + +@end + +/** + * Encapsulates connection state. + */ +@interface TiLogServerConnection : NSObject { + int socket; + dispatch_source_t readSource; +} + +/** + * Create a new socket by a given socket descriptor. + * + * @param _socket The non-negative file descriptor of the accepted socket + */ +- (id)initWithSocket:(int)_socket; + +/** + * Sends a raw data to the socket connection. + * + * @param buffer The socket buffer to send + */ +- (void)send:(dispatch_data_t *)buffer; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiModule.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiModule.h new file mode 100644 index 0000000..584c0cb --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiModule.h @@ -0,0 +1,86 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2020 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "Module.h" +#import "TiEvaluator.h" +#import "TiProxy.h" +#import "TiUtils.h" + +@class TiHost; + +/** + The base class for all Titanium modules + */ +@interface TiModule : TiProxy { + @protected + TiHost *host; + @private + CFMutableDictionaryRef classNameLookup; + NSString *moduleName; + id moduleAssets; +} + +// internal +- (void)_setName:(NSString *)name; +- (void)setPageContext:(id)evaluator; +- (void)setHost:(TiHost *)host; +- (id)createProxy:(NSArray *)args forName:(NSString *)name context:(id)evaluator; + +// module related utilities + +- (NSString *)moduleId; +- (BOOL)isJSModule; +- (NSData *)moduleJS; +- (NSData *)loadModuleAsset:(NSString *)fromPath; + +/* + Converts a resource name in to a URL. + @param name The name of the resource. + @return The URL of the resource + */ +- (NSURL *)moduleResourceURL:(NSString *)name; + +- (id)bindCommonJSModule:(NSString *)code; +- (id)bindCommonJSModuleForPath:(NSURL *)path; + +// lifecycle + +/** + Titanium Platform calls this method on startup. + */ +- (void)startup; + +/** + Titanium Platform calls this method on shutdown. + @param sender The sender of the event. + */ +- (void)shutdown:(id)sender; + +/** + Titanium Platform calls this method on suspend. + @param sender The sender of the event. + */ +- (void)suspend:(id)sender; + +/** + Titanium Platform calls this method on entering background. + @param sender The sender of the event. + */ +- (void)paused:(id)sender; + +/** + Titanium Platform calls this method on resume. + @param sender The sender of the event. + */ +- (void)resume:(id)sender; + +/** + Tells the module that it was resumed. + @param sender The sender of the event. + */ +- (void)resumed:(id)sender; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiPoint.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiPoint.h new file mode 100644 index 0000000..e512a5c --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiPoint.h @@ -0,0 +1,53 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "TiDimension.h" +#import "TiProxy.h" + +/** + The class for point proxy. + */ +@interface TiPoint : TiProxy { + TiDimension xDimension; + TiDimension yDimension; +} + +/** + Initializes the point object from point struct. + @param point_ The point struct. + */ +- (id)initWithPoint:(CGPoint)point_; + +- (id)initWithObject:(id)object; + +- (void)setValues:(id)object; + +/** + Provides access to point struct. + */ +@property (nonatomic, assign) CGPoint point; + +/** + Provides access to the point x coordinate. + */ +@property (nonatomic, retain) NSNumber *x; + +/** + Provides access to the point y coordiante. + */ +@property (nonatomic, retain) NSNumber *y; + +/** + Returns the point x coordinate as a dimension. + */ +@property (nonatomic, assign) TiDimension xDimension; + +/** + Returns the point y coordinate as a dimension. + */ +@property (nonatomic, assign) TiDimension yDimension; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiProxy.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiProxy.h new file mode 100644 index 0000000..484250e --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiProxy.h @@ -0,0 +1,346 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "KrollCallback.h" +#import "KrollObject.h" +#import "TiBindingRunLoop.h" +#import "TiEvaluator.h" +#import + +#ifndef TI_BASE_H +#import "TiBase.h" +#endif + +@class KrollBridge; +@class KrollObject; + +// Common exceptions to throw when the function call was improper +extern NSString *const TiExceptionInvalidType; +extern NSString *const TiExceptionNotEnoughArguments; +extern NSString *const TiExceptionRangeError; + +extern NSString *const TiExceptionOSError; + +// This is when a normally allowed command is not allowed (Say, adding a row to a table when it already is added elsewhere) +extern NSString *const TiExceptionInternalInconsistency; + +// Rare exceptions to indicate a bug in the titanium code (Eg, function that a subclass should have implemented) +extern NSString *const TiExceptionUnimplementedFunction; + +// Rare exception in the case of malloc failure +extern NSString *const TiExceptionMemoryFailure; + +@class TiHost; +@class TiProxy; + +typedef enum { + NativeBridge, + WebBridge +} TiProxyBridgeType; + +/** + The proxy delegate protocol + */ +@protocol TiProxyDelegate + +@required + +/** + Tells the delegate that the proxy property has changed. + @param key The property name. + @param oldValue An old value of the property. + @param newValue A new value of the property. + @param proxy The proxy where the property has changed. + */ +- (void)propertyChanged:(NSString *)key oldValue:(id)oldValue newValue:(id)newValue proxy:(TiProxy *)proxy; + +@optional + +/** + Tells the delegate to read proxy values. + @param keys The enumeration of keys to read. + */ +- (void)readProxyValuesWithKeys:(id)keys; + +/** + Tells the delegate that a listener has been added to the proxy. + @param type The listener type. + @param count The current number of active listeners + */ +- (void)listenerAdded:(NSString *)type count:(int)count; + +/** + Tells the delegate that a listener has been removed to the proxy. + @param type The listener type. + @param count The current number of active listeners after the remove + */ +- (void)listenerRemoved:(NSString *)type count:(int)count; + +/** + Tells the delegate to detach from proxy. + */ +- (void)detachProxy; + +@end + +SEL SetterForKrollProperty(NSString *key); +SEL SetterWithObjectForKrollProperty(NSString *key); + +void DoProxyDelegateChangedValuesWithProxy(UIView *target, NSString *key, id oldValue, id newValue, TiProxy *proxy); +void DoProxyDelegateReadValuesWithKeysFromProxy(UIView *target, id keys, TiProxy *proxy); +//Why are these here? Because they can be commonly used between TiUIView and TiUITableViewCell. + +/** + The base class for Titanium proxies. + */ +@interface TiProxy : NSObject { + @public + BOOL _bubbleParent; + + @private + NSMutableDictionary *listeners; + BOOL destroyed; + id modelDelegate; + NSURL *baseURL; + NSString *krollDescription; + pthread_rwlock_t listenerLock; + BOOL reproxying; + @protected + NSMutableDictionary *dynprops; + NSMutableArray *dynpropnames; + pthread_rwlock_t dynpropsLock; // NOTE: You must respect the dynprops lock when accessing dynprops elsewhere! + + int bridgeCount; + KrollObject *pageKrollObject; + id pageContext; + id executionContext; +} + +/* Convenience method, especially for autoloading modules. The selector + * is a class method taking one argument, which is the TiBindingRunLoop + * started. + */ ++ (void)performSelectorDuringRunLoopStart:(SEL)selector; + +- (void)boundBridge:(id)newBridge withKrollObject:(KrollObject *)newKrollObject; +- (void)unboundBridge:(id)oldBridge; + +@property (readonly, nonatomic) id pageContext; +@property (readonly, nonatomic) id executionContext; + +@property (readonly, nonatomic) int bindingRunLoopCount; +@property (readonly, nonatomic) TiBindingRunLoop primaryBindingRunLoop; +@property (readonly, nonatomic) NSArray *bindingRunLoopArray; + +/** + Provides access to proxy delegate. + */ +@property (nonatomic, retain, readwrite) id modelDelegate; + ++ (BOOL)shouldRegisterOnInit; + +#pragma mark Private + +- (id)_initWithPageContext:(id)context; +- (id)_initWithPageContext:(id)context args:(NSArray *)args; +- (void)_initWithProperties:(NSDictionary *)properties; + +/** + Whether or not the proxy has listeners for the specified event type. + @param type The event type. + @return _YES_ if the proxy has any listeners for the specified event type, _NO_ otherwise. + */ +- (BOOL)_hasListeners:(NSString *)type; + +/** + Tells the proxy to fire an event of the specified type to a listener. + @param type The event type. + @param obj The event properties. + @param listener The listener to fire event for. + @param thisObject The object representing 'this' in the context of the event handler. + */ +- (void)_fireEventToListener:(NSString *)type withObject:(id)obj listener:(KrollCallback *)listener thisObject:(TiProxy *)thisObject; + +- (id)_proxy:(TiProxyBridgeType)type; +- (void)contextWasShutdown:(id)context; +- (TiHost *)_host; +- (NSURL *)_baseURL; +- (void)_setBaseURL:(NSURL *)url; +- (void)_destroy; + +/** + Called to perform the proxy initial configuration. + */ +- (void)_configure; + +- (void)_dispatchWithObjectOnUIThread:(NSArray *)args; +- (void)didReceiveMemoryWarning:(NSNotification *)notification; +- (void)contextShutdown:(id)sender; +- (id)toString:(id)args; + +/** + Whether or not the proxy was destroyed. + @return _YES_ if destroyed, _NO_ otherwise. + */ +- (BOOL)destroyed; + +/** + Tells the proxy that it is in reproxying stage. + @param yn _YES_ if the proxy is in reproxying stage, _NO_ otherwise. + */ +- (void)setReproxying:(BOOL)yn; + +/** + Whether or not the proxy is in reproxying stage. + @return _YES_ if the proxy is in reproxying stage, _NO_ otherwise. + */ +- (BOOL)inReproxy; + +#pragma Subclassable + +/** + Returns proxy that should receive the event next in a case of bubbling. + Return nil if the class does not bubble or there is no parent. Optionally + return nil if bubbleParent is false -- i.e., bubbleParent must be checked + as well. + + Override this method for views that do not follow the standard children/parent + model (e.g., table rows). Note that this is NOT for use by JS, because this is + intentionally an iOS-only solution. + */ +- (TiProxy *)parentForBubbling; + +/** + Returns an array of properties that must be set on the proxy object in a specific order, ordered from first to last. + Any properties which are not in this list are set after the listed properties, and are set in undefined order. + + Override this method if the order in which properties are set is significant. + @return The array of property keys. + */ +- (NSArray *)keySequence; + +#pragma JS - facing +/** + Indicates that this proxy should honor bubbling of user events, if the proxy + is the type that has a parent to bubble to (This is primairly views, but may + have some exceptions). + */ +- (NSNumber *)bubbleParent; +- (void)setBubbleParent:(id)arg; + +#pragma mark Utility +- (KrollObject *)krollObjectForContext:(KrollContext *)context; + +- (BOOL)retainsJsObjectForKey:(NSString *)key; + +//TODO: Find everywhere were we retain a proxy in a non-assignment way, and do remember/forget properly. + +/** + Tells the proxy to associate another proxy with it. + + The associated proxy will be retained. + Note: rememberProxy/forgetProxy are not reference counted - multiple calls to are all undone by a single call to + @param rememberedProxy The proxy to remember. + @see forgetProxy: + */ +- (void)rememberProxy:(TiProxy *)rememberedProxy; + +/** + Tells the proxy to disassociate another proxy from it. + + The deassociated proxy will be released. + Note: rememberProxy/forgetProxy are not reference counted - multiple calls to are all undone by a single call to + @param forgottenProxy The proxy to forget. + @see rememberProxy: + */ +- (void)forgetProxy:(TiProxy *)forgottenProxy; + +//These are when, say, a window is opened, so you want to do JSValueProtect to make SURE it doesn't go away. + +/** + Tells the proxy to retain associated JS object. + */ +- (void)rememberSelf; + +/** + Tells the proxy to release associated JS object. + */ +- (void)forgetSelf; + +//SetCallback is done internally by setValue:forUndefinedKey: +- (void)fireCallback:(NSString *)type withArg:(NSDictionary *)argDict withSource:(id)source; +- (void)fireCallback:(NSString *)type withArg:(NSDictionary *)argDict withSource:(id)source withHandler:(void (^)(id result))handler; + +#pragma mark Public + +/** + Returns an enumeration of keys of all properties set on the proxy object. + @return The enumeration of property keys. + */ +- (id)allKeys; + ++ (void)throwException:(NSString *)reason subreason:(NSString *)subreason location:(NSString *)location; +- (void)throwException:(NSString *)reason subreason:(NSString *)subreason location:(NSString *)location; +- (void)addEventListener:(NSArray *)args; +- (void)removeEventListener:(NSArray *)args; + +- (void)fireEvent:(id)args; +- (void)fireEvent:(NSString *)type withObject:(id)obj; + +//For UI events: +- (void)fireEvent:(NSString *)type withObject:(id)obj propagate:(BOOL)yn; + +//For events that report an error or success +- (void)fireEvent:(NSString *)type withObject:(id)obj errorCode:(NSInteger)code message:(NSString *)message; + +//What classes should actually override: +- (void)fireEvent:(NSString *)type withObject:(id)obj propagate:(BOOL)propagate reportSuccess:(BOOL)report errorCode:(NSInteger)code message:(NSString *)message; + +//Temporary override point during the transition. Both the one below AND the one above should be overridden if needed. +- (void)fireEvent:(NSString *)type withObject:(id)obj withSource:(id)source propagate:(BOOL)propagate reportSuccess:(BOOL)report errorCode:(int)code message:(NSString *)message; + +//** Deprecated: bubbling is done at a lower point so source is always 'self' at this point. +- (void)fireEvent:(NSString *)type withObject:(id)obj withSource:(id)source; +- (void)fireEvent:(NSString *)type withObject:(id)obj withSource:(id)source propagate:(BOOL)yn; + +/** + Returns a dictionary of all properties set on the proxy object. + @return The dictionary containing all properties. + */ +- (NSDictionary *)allProperties; + +/** + Initializes a new property on the proxy object. + @param name The property name. + @param value The initial value to set on the property. + */ +- (void)initializeProperty:(NSString *)name defaultValue:(id)value; + +/** + Sets or replaces the property on the proxy object. + @param value The new value. + @param key The property key. + @param notify The flag to send value change notification to model delegate. + */ +- (void)replaceValue:(id)value forKey:(NSString *)key notification:(BOOL)notify; + +/** + Removes the property on the proxy object. + @param key The property key. + */ +- (void)deleteKey:(NSString *)key; + +- (id)sanitizeURL:(id)value; + +- (void)setExecutionContext:(id)context; + ++ (id)createProxy:(NSString *)qualifiedName withProperties:(NSDictionary *)properties inContext:(id)context; + +- (NSString *)apiName; + +- (JSContext *)currentContext; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiPublicAPI.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiPublicAPI.h new file mode 100644 index 0000000..5cea2ad --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiPublicAPI.h @@ -0,0 +1,72 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +/* You would expect these macros to be used in the header files, but because they can generate checking code, they should be in the .m files instead.*/ + +/* This declares that the class is publically viewable, and that should be considered a subclass of the closest superclass that also marked with a TI_PUBLIC_CLASS */ +/* To speed lookup, this will produce a method on the module to generate an instance.*/ +#define TI_PUBLIC_CLASS(moduleName, className) \ + @class moduleName##Module; \ + @interface moduleName \ + ##Module(className##_generation) \ + - (id)create##className : (id)args; \ + @end \ + @implementation moduleName \ + ##Module(className##_generation) \ + - (TiProxy *)create##className : (id)args \ + { \ + TiProxy *result = [[Ti##moduleName##className##Proxy alloc] _initWithPageContext:[self executionContext] args:args]; \ + return [result autorelease]; \ + } \ + @end + +#ifdef DEBUG + +#define TI_PUBLIC_METHOD(methodName, returnType) \ + -(returnType)methodName : (id)args \ + { \ + int argCount = [args count]; + +#define TI_PUBLIC_METHOD_ARG_OBJECT(argPosition, argName, argType, argOptional, argCheck) \ + argType *argName = nil; \ + if (argCount < argPosition) { \ + argType *argName = [(NSArray *)args objectAtIndex:argPosition]; \ + if (![argName isKindOfClass:[argType class]]) { \ + [self throwException:TiExceptionInvalidType \ + subreason: \ + [NSString stringWithFormat:@"argument #%d (%s) needs to be of type %s, but was %@ instead.", \ + argPosition, #argName, #argType, [argName class]] \ + location:CODELOCATION]; \ + } \ + argCheck; \ + } else if (!argOptional) { \ + [self throwException:TiExceptionNotEnoughArguments \ + subreason:[NSString stringWithFormat:@"argument #%d (%s) was missing and is not optional", argPosition, #argName] \ + location:CODELOCATION]; \ + } + +#define TI_PUBLIC_METHOD_END_ARGS(methodName, returnType) \ + if (![@"void" isEqualToString:@"" #returnType]) { \ + return [self methodName##_CONTINUE:args]; \ + } \ + } \ + -(returnType)methodName##_CONTINUE : (id)args + +#else + +#define TI_PUBLIC_METHOD(methodName, returnType) \ + //No-op + +#define TI_PUBLIC_METHOD_ARG_OBJECT(argPosition, argName, argType, argOptional, argCheck) \ + //No-op + +#define TI_PUBLIC_METHOD_END_ARGS(methodName, returnType) \ + -(returnType)methodName : (id)args + +#endif //Debug diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiRect.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiRect.h new file mode 100644 index 0000000..067a520 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiRect.h @@ -0,0 +1,54 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "TiProxy.h" + +/** + The class for rectangle object proxy. + */ +@interface TiRect : TiProxy { + CGRect rect; +} + +/** + Initializes the rect proxy from rect struct. + @param rect_ The rect struct. + */ +- (void)setRect:(CGRect)rect_; + +/** + Returns rect struct. + @return The rect struct. + */ +- (CGRect)rect; + +/** + Provides access to rectangle x coordinate. + */ +@property (nonatomic, retain) NSNumber *x; + +/** + Provides access to rectangle y coordinate. + */ +@property (nonatomic, retain) NSNumber *y; + +/** + Provides access to rectangle width. + */ +@property (nonatomic, retain) NSNumber *width; + +/** + Provides access to rectangle height. + */ +@property (nonatomic, retain) NSNumber *height; + +/** + Converts a rect to the specified unit. Assumes that the current rect size is in dip. + @param unit The unit type (as a string) to convert the rect to. + */ +- (void)convertToUnit:(NSString *)unit; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiRootViewController.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiRootViewController.h new file mode 100644 index 0000000..a0e05d6 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiRootViewController.h @@ -0,0 +1,72 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "TiControllerProtocols.h" +#import + +@interface TiRootViewController : UIViewController { + //Default background properties + UIColor *bgColor; + UIImage *bgImage; + UIView *hostView; + NSInteger curTransformAngle; + BOOL forceLayout; + UIView *defaultImageView; + + //Keyboard stuff + BOOL updatingAccessoryView; + UIView *enteringAccessoryView; //View that will enter. + UIView *accessoryView; //View that is onscreen. + UIView *leavingAccessoryView; //View that is leaving the screen. + TiViewProxy *keyboardFocusedProxy; //View whose becoming key affects things. + + CGRect startFrame; //Where the keyboard was before the handling + CGRect targetedFrame; //The keyboard place relative to where the accessoryView is moving; + CGRect endFrame; //Where the keyboard will be after the handling + BOOL keyboardVisible; //If false, use enterCurve. If true, use leaveCurve. + UIViewAnimationCurve enterCurve; + CGFloat enterDuration; + UIViewAnimationCurve leaveCurve; + CGFloat leaveDuration; + + //Orientation Stuff + UIInterfaceOrientation orientationHistory[4]; + BOOL forcingStatusBarOrientation; + BOOL isCurrentlyVisible; + TiOrientationFlags defaultOrientations; + NSMutableArray *containedWindows; + NSMutableArray *modalWindows; + BOOL forcingRotation; + BOOL statusBarInitiallyHidden; + BOOL viewControllerControlsStatusBar; + UIStatusBarStyle defaultStatusBarStyle; + + UIInterfaceOrientation deviceOrientation; + + BOOL statusBarIsHidden; + BOOL statusBarVisibilityChanged; + NSInteger activeAlertControllerCount; +} + +//Titanium Support +- (CGRect)resizeView; +- (void)repositionSubviews; +- (UIView *)topWindowProxyView; +- (NSUInteger)supportedOrientationsForAppDelegate; +- (void)incrementActiveAlertControllerCount; +- (void)decrementActiveAlertControllerCount; +- (UIViewController *)topPresentedController; +- (UIInterfaceOrientation)lastValidOrientation:(TiOrientationFlags)orientationFlags; +- (void)updateStatusBar; +@property (nonatomic, readonly) BOOL statusBarInitiallyHidden; +@property (nonatomic, readonly) UIStatusBarStyle defaultStatusBarStyle; +@property (nonatomic, readonly) BOOL statusBarVisibilityChanged; +@property (nonatomic, readonly) TiViewProxy *keyboardFocusedProxy; +- (void)shutdownUi:(id)arg; +- (UIImage *)defaultImageForOrientation:(UIDeviceOrientation)orientation resultingOrientation:(UIDeviceOrientation *)imageOrientation idiom:(UIUserInterfaceIdiom *)imageIdiom; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiSharedConfig.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiSharedConfig.h new file mode 100644 index 0000000..c2ab512 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiSharedConfig.h @@ -0,0 +1,127 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2018-present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import +#import + +/** + Contains information about the app and build-related meta data. + */ +@interface TiSharedConfig : NSObject + +NS_ASSUME_NONNULL_BEGIN + +/** + Name of the application, e.g. "MyApp". + */ +@property (nonatomic, strong) NSString *applicationName; + +/** + Application ID, e.g. "com.example.appid". + */ +@property (nonatomic, strong) NSString *applicationID; + +/** + Version of the application, e.g. "1.0.0". + */ +@property (nonatomic, strong) NSString *applicationVersion; + +/** + Publisher of the application, if set. + */ +@property (nonatomic, strong, nullable) NSString *applicationPublisher; + +/** + URL of the application, if set. + */ +@property (nonatomic, strong, nullable) NSURL *applicationURL; + +/** + Copyright of the application, if set. + */ +@property (nonatomic, strong, nullable) NSString *applicationCopyright; + +/** + Description of the application. + */ +@property (nonatomic, strong, nullable) NSString *applicationDescription; + +/** + Deploy type of the application, e.g. "development", currently **unused**. + */ +@property (nonatomic, strong, nullable) NSString *applicationDeployType; + +/** + GUID of the application, e.g. "11111111-1111-1111-1111-111111111111". + */ +@property (nonatomic, strong) NSString *applicationGUID; + +/** + Path to the resources directory, if custom set, e.g. "Resources". Currently + set to an empty string to indicate the default behavior, can change in the future. + */ +@property (nonatomic, strong, nullable) NSString *applicationResourcesDirectory; + +/** + Build type of the application, currently **unused. + */ +@property (nonatomic, strong, nullable) NSString *applicationBuildType; + +/** + Build hash, only used internally. + */ +@property (nonatomic, strong, nullable) NSString *buildHash; + +/** + Build date, only used internally. + */ +@property (nonatomic, strong, nullable) NSString *buildDate; + +/** + SDK version, only used internally. + */ +@property (nonatomic, strong, nullable) NSString *sdkVersion; + +/** + Indicates whether or not APSAnalytics is currently enabled. + Defaults to `true` for new application, can be disabled via `false` + in the tiapp.xml. + */ +@property (nonatomic, assign, getter=isAnalyticsEnabled) BOOL analyticsEnabled; + +/** + Indicates whether or not the error screen should be shown if an + error occurs. Defaults to `true` for `production` and `test` deploy types, + `false` for deploy type `development`. Can be overriden by the `hide-error-controller` + CLI parameter. + */ +@property (nonatomic, assign) BOOL showErrorController; + +/** + Default background color from tiapp.xml + + #ff0000 + + */ +@property (nonatomic, strong, nullable) UIColor *defaultBackgroundColor; + +/** + Indicates whether or not TiLogServer is currently enabled. + */ +@property (nonatomic, assign) BOOL logServerEnabled; + +/** + Indicates whether debug is enabled or not. + */ + +@property (nonatomic, assign) BOOL debugEnabled; + ++ (TiSharedConfig *)defaultConfig; + +NS_ASSUME_NONNULL_END + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiStreamProxy.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiStreamProxy.h new file mode 100644 index 0000000..95c2aa7 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiStreamProxy.h @@ -0,0 +1,43 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2011 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "KrollCallback.h" +#import "TiBase.h" +#import "TiBuffer.h" +#import "TiProxy.h" +#import + +// This is meant to be a largely "virtual" class which defines the following behaviors: +// 1. Interprets read()/write() calls to the appropriate interal function +// 2. Provide protocol defining necessary internal functions; read/write, asynch read/write, readAll, +@protocol TiStreamInternal +@required +// DEFINED BEHAVIOR: callback != nil indicates an asynch operation. length==0 indicates to read all available data into +// the buffer (and grow it if necessary). These methods MAY be called by classes other than the TiStreamProxy ducktype (i.e. Ti.Stream module methods) +- (NSInteger)readToBuffer:(TiBuffer *)buffer offset:(NSInteger)offset length:(NSInteger)length callback:(KrollCallback *)callback; +- (NSInteger)writeFromBuffer:(TiBuffer *)buffer offset:(NSInteger)offset length:(NSInteger)length callback:(KrollCallback *)callback; + +// Used for writeStream/pumping +- (NSInteger)writeToStream:(id)output chunkSize:(NSInteger)size callback:(KrollCallback *)callback; +- (void)pumpToCallback:(KrollCallback *)callback chunkSize:(NSInteger)size asynch:(BOOL)asynch; + +// Public API : No defined behavior +- (NSNumber *)isReadable:(id)_void; // PUBLIC API FUNCTION +- (NSNumber *)isWritable:(id)_void; // PUBLIC API FUNCTION + +- (void)close:(id)_void; // PUBLIC API FUNCTION +@end + +// TODO: We absolutely MUST discuss public/private API separation and how it interacts with ducktypes. +@interface TiStreamProxy : TiProxy { +} + +// Public API +- (NSNumber *)read:(id)args; +- (NSNumber *)write:(id)write; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiStylesheet.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiStylesheet.h new file mode 100644 index 0000000..8ad8188 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiStylesheet.h @@ -0,0 +1,22 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +@interface TiStylesheet : NSObject { + NSDictionary *tagsDict; + NSDictionary *tagsDictByDensity; + NSDictionary *classesDict; + NSDictionary *classesDictByDensity; + NSDictionary *idsDict; + NSDictionary *idsDictByDensity; +} + +- (BOOL)basename:(NSString *)basename density:(NSString *)density hasTag:(NSString *)tagName; +- (id)stylesheet:(NSString *)objectId density:(NSString *)density basename:(NSString *)basename classes:(NSArray *)classes tags:(NSArray *)tags; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiTab.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiTab.h new file mode 100644 index 0000000..d7f5199 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiTab.h @@ -0,0 +1,42 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2021 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "TiTabGroup.h" + +@class TiProxy; +@class TiWindowProxy; +@class KrollPromise; + +/** + The protocol for tabs. + */ +@protocol TiTab + +@required + +/** + Returns the tag group associated with the tab. + @return A tab group. + */ +- (TiProxy *)tabGroup; + +/** + Returns the navigation controller associated with the tab. + @return A navigation controller. + */ +- (UINavigationController *)controller; + +- (KrollPromise *)openWindow:(NSArray *)args; +- (KrollPromise *)closeWindow:(NSArray *)args; + +/** + Tells the tab that its associated window is closing. + @param window The window being closed. + @param animated _YES_ if window close is animated, _NO_ otherwise. + */ +- (void)windowClosing:(TiWindowProxy *)window animated:(BOOL)animated; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiTabGroup.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiTabGroup.h new file mode 100644 index 0000000..849619b --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiTabGroup.h @@ -0,0 +1,21 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +/** + The tab group protocol + */ +@protocol TiTabGroup + +/** + Returns the tab bar for the tag group. + @return The tag bar. + */ +- (UITabBar *)tabbar; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiThreading.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiThreading.h new file mode 100644 index 0000000..9e68b81 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiThreading.h @@ -0,0 +1,103 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2017 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +#define ENSURE_UI_THREAD_1_ARG(x) \ + if (![NSThread isMainThread]) { \ + SEL callback = _cmd; \ + TiThreadPerformOnMainThread( \ + ^{ \ + [self performSelector:callback withObject:x]; \ + }, \ + NO); \ + return; \ + } + +#define ENSURE_UI_THREAD_0_ARGS ENSURE_UI_THREAD_1_ARG(nil) + +//TODO: Is there any time where @selector(x:) is not _sel (IE, the called method for 1 arg? +//Similarly, if we already have x:withObject: as a selector in _sel, could we +//We may want phase out asking the method explicitly when the compiler can do it for us +//For now, leaving it unchanged and using _X_ARG(S) to denote no method name used. + +#define ENSURE_UI_THREAD(x, y) \ + if (![NSThread isMainThread]) { \ + TiThreadPerformOnMainThread( \ + ^{ \ + [self x:y]; \ + }, \ + NO); \ + return; \ + } + +#define ENSURE_IOS_API(version, message) \ + if ([[[UIDevice currentDevice] systemVersion] compare:version options:NSNumericSearch] != NSOrderedAscending) { \ + NSLog(@"[WARN] %@ is only available on iOS %@ and later.", message, version); \ + return; \ + } + +//TODO: Now that we have TiThreadPerform, we should optimize this out. +#define ENSURE_UI_THREAD_WITH_OBJ(x, y, z) \ + if (![NSThread isMainThread]) { \ + id o = [NSArray arrayWithObjects:@"" #x, NULL_IF_NIL(y), NULL_IF_NIL(z), nil]; \ + TiThreadPerformOnMainThread( \ + ^{ \ + [self _dispatchWithObjectOnUIThread:o]; \ + }, \ + NO); \ + return; \ + } + +#define BEGIN_UI_THREAD_PROTECTED_VALUE(method, type) \ + -(id)_sync_##method : (NSMutableArray *)array_ \ + { \ + \ + type *result = nil; + +#define END_UI_THREAD_PROTECTED_VALUE(method) \ + if (array_ != nil) \ + [array_ addObject:result]; \ + return result; \ + } \ + -(id)method \ + { \ + if (![NSThread isMainThread]) { \ + __block id result = nil; \ + __block id bself = self; \ + TiThreadPerformOnMainThread( \ + ^{ \ + result = [[bself _sync_##method:nil] retain]; \ + }, \ + YES); \ + return [result autorelease]; \ + } \ + return [self _sync_##method:nil]; \ + } + +#ifdef VERBOSE + +#define WARN_IF_BACKGROUND_THREAD \ + if (![NSThread isMainThread]) { \ + DeveloperLog(@"[WARN] %@ not running on the main thread.", CODELOCATION); \ + } + +#define WARN_IF_BACKGROUND_THREAD_OBJ \ + if (![NSThread isMainThread]) { \ + DeveloperLog(@"[WARN] %@%@ was not running on the main thread.", NSStringFromClass([self class]), CODELOCATION); \ + } + +#else + +#define WARN_IF_BACKGROUND_THREAD \ + { \ + } +#define WARN_IF_BACKGROUND_THREAD_OBJ \ + { \ + } + +#endif //VERBOSE diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiToolbar.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiToolbar.h new file mode 100644 index 0000000..6f3b8bf --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiToolbar.h @@ -0,0 +1,23 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "TiViewProxy.h" + +// marker interface for toolbars + +/** + Protocol for toolbar classes. + */ +@protocol TiToolbar +@required + +/** + Returns the underlying toolbar. + @return The toolbar. + */ +- (UIToolbar *)toolbar; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIView.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIView.h new file mode 100644 index 0000000..75b222f --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIView.h @@ -0,0 +1,298 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "LayoutConstraint.h" +#import "TiAnimation.h" +#import "TiGradient.h" +#import "TiProxy.h" +#ifdef TI_USE_AUTOLAYOUT +#import "TiLayoutView.h" +#endif +//By declaring a scrollView protocol, TiUITextWidget can access +@class TiUIView; + +/** + The protocol for scrolling. + */ +@protocol TiScrolling + +/** + Tells the scroll view that keyboard did show. + @param keyboardTop The keyboard height. + */ +- (void)keyboardDidShowAtHeight:(CGFloat)keyboardTop; + +/** + Tells the scroll view to scroll to make the specified view visible. + @param firstResponderView The view to make visible. + @param keyboardTop The keyboard height. + */ +- (void)scrollToShowView:(TiUIView *)firstResponderView withKeyboardHeight:(CGFloat)keyboardTop; + +@end + +void InsetScrollViewForKeyboard(UIScrollView *scrollView, CGFloat keyboardTop, CGFloat minimumContentHeight); +void OffsetScrollViewForRect(UIScrollView *scrollView, CGFloat keyboardTop, CGFloat minimumContentHeight, CGRect responderRect); + +void ModifyScrollViewForKeyboardHeightAndContentHeightWithResponderRect(UIScrollView *scrollView, CGFloat keyboardTop, CGFloat minimumContentHeight, CGRect responderRect); + +@class TiViewProxy; + +/** + Base class for all Titanium views. + @see TiViewProxy + */ +#ifdef TI_USE_AUTOLAYOUT +@interface TiUIView : TiLayoutView +#else +@interface TiUIView : UIView +#endif +{ + @protected + BOOL configurationSet; + + @private + TiProxy *proxy; + TiAnimation *animation; + + CAShapeLayer *_shadowLayer; + CALayer *gradientLayer; + CALayer *bgdImageLayer; + CAShapeLayer *_borderLayer; + int clipMode; + + CGAffineTransform virtualParentTransform; + id transformMatrix; + BOOL childrenInitialized; + BOOL touchEnabled; + + unsigned int animationDelayGuard; + unsigned int animationDelayGuardForLayout; + + // Touch detection + BOOL changedInteraction; + BOOL handlesTouches; + UIView *touchDelegate; // used for touch delegate forwarding + BOOL animating; + + UITapGestureRecognizer *singleTapRecognizer; + UITapGestureRecognizer *doubleTapRecognizer; + UITapGestureRecognizer *twoFingerTapRecognizer; + UIPinchGestureRecognizer *pinchRecognizer; + UISwipeGestureRecognizer *leftSwipeRecognizer; + UISwipeGestureRecognizer *rightSwipeRecognizer; + UISwipeGestureRecognizer *upSwipeRecognizer; + UISwipeGestureRecognizer *downSwipeRecognizer; + UILongPressGestureRecognizer *longPressRecognizer; + + //Resizing handling + CGSize oldSize; + + // Image capping/backgrounds + id backgroundImage; + BOOL backgroundRepeat; + TiDimension leftCap; + TiDimension topCap; +} + +/** + Returns current status of the view animation. + @return _YES_ if view is being animated, _NO_ otherwise. + */ +- (BOOL)animating; + +/** + Provides access to a proxy object of the view. + */ +@property (nonatomic, readwrite, assign) TiProxy *proxy; + +/** + Provides access to touch delegate of the view. + + Touch delegate is the control that receives all touch events. + */ +@property (nonatomic, readwrite, assign) UIView *touchDelegate; + +/** + Returns view's transformation matrix. + */ +@property (nonatomic, readonly) id transformMatrix; + +/** + Provides access to background image of the view. + */ +@property (nonatomic, readwrite, retain) id backgroundImage; + +/** + Returns enablement of touch events. + @see updateTouchHandling + */ +@property (nonatomic, readonly) BOOL touchEnabled; +@property (nonatomic, readonly) CGSize oldSize; + +@property (nonatomic, readonly) UITapGestureRecognizer *singleTapRecognizer; +@property (nonatomic, readonly) UITapGestureRecognizer *doubleTapRecognizer; +@property (nonatomic, readonly) UITapGestureRecognizer *twoFingerTapRecognizer; +@property (nonatomic, readonly) UIPinchGestureRecognizer *pinchRecognizer; +@property (nonatomic, readonly) UISwipeGestureRecognizer *leftSwipeRecognizer; +@property (nonatomic, readonly) UISwipeGestureRecognizer *rightSwipeRecognizer; +@property (nonatomic, readonly) UILongPressGestureRecognizer *longPressRecognizer; + +- (void)configureGestureRecognizer:(UIGestureRecognizer *)gestureRecognizer; +- (UIGestureRecognizer *)gestureRecognizerForEvent:(NSString *)event; +- (void)handleListenerRemovedWithEvent:(NSString *)event; +- (void)handleListenerAddedWithEvent:(NSString *)event; +- (BOOL)proxyHasGestureListeners; +- (void)ensureGestureListeners; +- (void)updateClipping; +- (UIBezierPath *)bezierPathOfView; +/** + Returns CA layer for the background image of the view. + */ +- (CALayer *)backgroundImageLayer; +/** + Returns CA layer for the background gradient of the view. + */ +- (CALayer *)gradientLayer; +/** + Returns CA layer for shadow component of the view. + */ +- (CAShapeLayer *)shadowLayer; +/** + Tells the view to start specified animation. + @param newAnimation The animation to start. + */ +- (void)animate:(TiAnimation *)newAnimation; + +#pragma mark Framework + +/** + Performs view's initialization procedure. + */ +- (void)initializeState; + +/** + Performs view's configuration procedure. + */ +- (void)configurationSet; + +/** + Sets virtual parent transformation for the view. + @param newTransform The transformation to set. + */ +- (void)setVirtualParentTransform:(CGAffineTransform)newTransform; +- (void)setTransform_:(id)matrix; + +/* + Tells the view to load an image. + @param image The string referring the image. + @return The loaded image. + */ +- (UIImage *)loadImage:(id)image; + +- (id)proxyValueForKey:(NSString *)key; +- (void)readProxyValuesWithKeys:(id)keys; + +/* + Tells the view to change its proxy to the new one provided. + @param newProxy The new proxy to set on the view. + @param deep true for deep transfer + */ +- (void)transferProxy:(TiViewProxy *)newProxy deep:(BOOL)deep; + +/* + Returns whether the view tree matches proxy tree for later transfer. + @param proxy The proxy to validate view tree with. + @param deep true for deep validation + */ +- (BOOL)validateTransferToProxy:(TiViewProxy *)proxy deep:(BOOL)deep; + +/** + Tells the view to update its touch handling state. + @see touchEnabled + */ +- (void)updateTouchHandling; + +/** + Tells the view that its frame and/or bounds has chnaged. + @param frame The frame rect + @param bounds The bounds rect + */ +- (void)frameSizeChanged:(CGRect)frame bounds:(CGRect)bounds; + +/** + Tells the view to make its root view a first responder. + */ +- (void)makeRootViewFirstResponder; +- (void)animationStarted; +- (void)animationCompleted; + +/** + The convenience method to raise an exception for the view. + @param reason The exception reason. + @param subreason The exception subreason. + @param location The exception location. + */ ++ (void)throwException:(NSString *)reason subreason:(NSString *)subreason location:(NSString *)location; + +- (void)throwException:(NSString *)reason subreason:(NSString *)subreason location:(NSString *)location; + +/** + Returns default enablement for interactions. + + Subclasses may override. + @return _YES_ if the control has interactions enabled by default, _NO_ otherwise. + */ +- (BOOL)interactionDefault; + +- (BOOL)interactionEnabled; + +/** + Whether or not the view has any touchable listeners attached. + @return _YES_ if the control has any touchable listener attached, _NO_ otherwise. + */ +- (BOOL)hasTouchableListener; + +- (void)handleControlEvents:(UIControlEvents)events; + +- (void)setVisible_:(id)visible; + +- (void)setBackgroundImage_:(id)value; + +- (UIView *)gradientWrapperView; +- (void)checkBounds; + +@property (nonatomic, readonly) id accessibilityElement; + +- (void)setAccessibilityLabel_:(id)accessibilityLabel; +- (void)setAccessibilityValue_:(id)accessibilityValue; +- (void)setAccessibilityHint_:(id)accessibilityHint; +- (void)setAccessibilityHidden_:(id)accessibilityHidden; + +/** + Whether or not a view not normally picked up by the Titanium view hierarchy (such as wrapped iOS UIViews) was touched. + @return _YES_ if the view contains specialized content (such as a system view) which should register as a touch for this view, _NO_ otherwise. + */ +- (BOOL)touchedContentViewWithEvent:(UIEvent *)event; + +- (void)processTouchesBegan:(NSSet *)touches withEvent:(UIEvent *)event; +- (void)processTouchesMoved:(NSSet *)touches withEvent:(UIEvent *)event; +- (void)processTouchesEnded:(NSSet *)touches withEvent:(UIEvent *)event; +- (void)processTouchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event; +- (void)processKeyPressed:(NSString *)key; + +@end + +#pragma mark TO REMOVE, used only during transition. + +#define USE_PROXY_FOR_METHOD(resultType, methodname, inputType) \ + -(resultType)methodname : (inputType)value \ + { \ + DeveloperLog(@"[DEBUG] Using view proxy via redirection instead of directly for %@.", self); \ + return [(TiViewProxy *)[self proxy] methodname:value]; \ + } + +#define USE_PROXY_FOR_VERIFY_AUTORESIZING USE_PROXY_FOR_METHOD(UIViewAutoresizing, verifyAutoresizing, UIViewAutoresizing) diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIViewProxy.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIViewProxy.h new file mode 100644 index 0000000..9f5b70d --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIViewProxy.h @@ -0,0 +1,12 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "TiViewProxy.h" + +@interface TiUIViewProxy : TiViewProxy { +} +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIWindow.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIWindow.h new file mode 100644 index 0000000..b11149c --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIWindow.h @@ -0,0 +1,12 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "TiUIView.h" + +@interface TiUIWindow : TiUIView { +} + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIWindowProxy.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIWindowProxy.h new file mode 100644 index 0000000..3bbd258 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIWindowProxy.h @@ -0,0 +1,34 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "KrollBridge.h" +#import "TiUIView.h" +#import "TiViewProxy.h" +#import "TiWindowProxy.h" + +//TODO: we probably should split this ViewProxy into a a separate TiUIView like normal + +@interface TiUIWindowProxy : TiWindowProxy { + @private + KrollBridge *context; + BOOL hasToolbar; + BOOL contextReady; + BOOL shouldUpdateNavBar; + UIImageView *barImageView; + NSURL *oldBaseURL; + id latch; + UIEdgeInsets oldSafeAreaInsets; +} + +- (void)refreshBackButton; +- (void)updateNavBar; +- (void)boot:(BOOL)timeout args:(id)args; + +@property (nonatomic, assign) TiViewProxy *safeAreaViewProxy; +@property (nonatomic) BOOL shouldExtendSafeArea; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIiOSTransitionAnimationProxy.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIiOSTransitionAnimationProxy.h new file mode 100644 index 0000000..a282d93 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUIiOSTransitionAnimationProxy.h @@ -0,0 +1,20 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2013 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "TiAnimation.h" +#import "TiProxy.h" + +@interface TiUIiOSTransitionAnimationProxy : TiProxy { + id _transitionContext; + TiAnimation *_transitionTo; + TiAnimation *_transitionFrom; + BOOL _endedTo; + BOOL _endedFrom; + NSNumber *_duration; +} + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUtils.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUtils.h new file mode 100644 index 0000000..3fc9cd3 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiUtils.h @@ -0,0 +1,871 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2014 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "TiDimension.h" + +@class TiProxy; +@class TiColor; +@class TiFile; +@class TiBuffer; +@class WebFont; +@class TiScriptError; +@class TiUIView; +@class TiViewProxy; + +/* NOTE TO MODULE DEVELOPERS: + * The following 4 imports will be going away as it's better to simply + * forward-declare the classes in headers. If you've been relying on TiUtils + * to do the including of TiProxy for you, please fix this. However, to + * avoid breaking modules + */ +#import "TiBuffer.h" +#import "TiColor.h" +#import "TiFile.h" +#import "WebFont.h" + +typedef enum { + BAD_DEST_OFFSET = -1, + BAD_SRC_OFFSET = -2, + BAD_ENCODING = -4, + BAD_TYPE = -8, + BAD_ENDIAN = -16, + TOO_SMALL = -32, +} EncodingError; + +/** + Titanium orientation flags. + */ +typedef enum { + TiOrientationNone = 0, + TiOrientationAny = 0xFFFF, + + /** + Portrait orientation flag. + */ + TiOrientationPortrait = 1 << UIInterfaceOrientationPortrait, + + /** + Upside-down portrait orientation flag. + */ + TiOrientationPortraitUpsideDown = 1 << UIInterfaceOrientationPortraitUpsideDown, + + /** + Landscape left orientation flag. + */ + TiOrientationLandscapeLeft = 1 << UIInterfaceOrientationLandscapeLeft, + + /** + Landscape right orientation flag. + */ + TiOrientationLandscapeRight = 1 << UIInterfaceOrientationLandscapeRight, + + /** + Landscape (left or right) orientation flag. + */ + TiOrientationLandscapeOnly = TiOrientationLandscapeLeft | TiOrientationLandscapeRight, + + /** + Portrait (normal or upside-down) orientation flag. + */ + TiOrientationPortraitOnly = TiOrientationPortrait | TiOrientationPortraitUpsideDown, + +} TiOrientationFlags; + +#define TI_ORIENTATION_ALLOWED(flag, bit) (flag & (1 << bit)) +#define TI_ORIENTATION_SET(flag, bit) (flag |= (1 << bit)) + +@protocol VolumeSupport +@required +- (void)setVolume:(float)volume; +- (float)volume; +@end + +/** + Utilities class. + */ +@interface TiUtils : NSObject + ++ (TiOrientationFlags)TiOrientationFlagsFromObject:(id)args; + +/** + Converts date to UTC format. + + @param date The input date. + @return The date string in UTC format. + */ ++ (NSString *)UTCDateForDate:(NSDate *)date; + +/** + Converts string in UTC format into a date. + + @param date The date string in UTC format. + @return The converted date. + */ ++ (NSDate *)dateForUTCDate:(NSString *)date; + +/** + Returns current date in UTC format. + + @return The date string in UTC format. + */ ++ (NSString *)UTCDate; + +/** + Generates a new UUID. + + @return The generate UUID. + */ ++ (NSString *)createUUID; + +/** + Creates a temporary file with name extension. + + @param extension The filename extension. + @return The created temporary file object. + */ ++ (TiFile *)createTempFile:(NSString *)extension; + +/** + Loads application bundle resource by URL. + + @param url The resource URL + @return The resource data. + */ ++ (NSData *)loadAppResource:(NSURL *)url; + +/** + Encodes the input string according by escaping illegal characters. + + @param unencodedString The input string. + @return The encoded string. + */ ++ (NSString *)encodeQueryPart:(NSString *)unencodedString; + +/** + Encodes the URL query string by escaping illegal characters. + + @param unencodedString The input string. + @return The encoded string. + */ ++ (NSString *)encodeURIParameters:(NSString *)unencodedString; + ++ (UIImage *)toImage:(id)object proxy:(TiProxy *)proxy size:(CGSize)imageSize; ++ (UIImage *)toImage:(id)object proxy:(TiProxy *)proxy; + +/** + Changes to image rotation, so the image is facing up. + + @param image The image to be rotated. + @return The rotated image. + */ ++ (UIImage *)adjustRotation:(UIImage *)image; + +/** + Tint image to specified color. + + @param image The image to be tinted. + @param tintColor The color to tint the image. + @return The tinted image. + */ ++ (UIImage *)imageWithTint:(UIImage *)image tintColor:(UIColor *)tintColor; + +/** + Constructs URL from string using provided base URL. + + @param relativeString The relative URL + @param rootPath The base URL. + @return The absolute URL. + */ ++ (NSURL *)toURL:(NSString *)relativeString relativeToURL:(NSURL *)rootPath; + +/** + Constructs URL from string using proxy's base URL. + + @param relativeString The relative URL + @param proxy The proxy to use as base URL. + @return The absolute URL. + */ ++ (NSURL *)toURL:(NSString *)relativeString proxy:(TiProxy *)proxy; + +/** + Loads and returns image for the provided object. + + If the _object_ parameter type is , it will be converted to image and returned. + Otherwise if the _object_ type is NSString, it will be first converted to URL using _proxy_ as a base, then the image will be loaded from the URL. + + @param object The input object. It could be either or NSString. + @param proxy The proxy to use as base URL for image loading if _object_ type is NSString. + @return The loaded image. + @see toURL:proxy: + */ ++ (UIImage *)image:(id)object proxy:(TiProxy *)proxy; + ++ (UIImage *)stretchableImage:(id)object proxy:(TiProxy *)proxy; + +/** + Converts input value into a string. + + @param value The input value. + @return The textual representation of the value. + */ ++ (NSString *)stringValue:(id)value; + ++ (NSString *)replaceString:(NSString *)string characters:(NSCharacterSet *)characterSet withString:(NSString *)replacementString; + ++ (NSNumber *)numberFromObject:(id)obj; + +/** + Converts input value into a boolean. + + @param value The input value. + @return The boolean representation of the value. + @see boolValue:def: + */ ++ (BOOL)boolValue:(id)value; + +/** + Converts input value into a boolean with default fallback. + + @param value The input value. + @param def The default value if the input value cannot be converted. + @return The boolean representation of the value or default value otherwise. + @see boolValue: + */ ++ (BOOL)boolValue:(id)value def:(BOOL)def; + +/** + Converts input value into a point type. + + @param value The input value of either type or NSDictionary with {x,y} keys. + @return The point representation of the value or {0,0} if the input value cannot be converted. + @see pointValue:valid: + */ ++ (CGPoint)pointValue:(id)value; + +/** + Converts input value into the point type. + + @param value The input value of either type or NSDictionary with {x,y} keys. + @param isValid The optional output parameter indicating the status of the convertion. If not _NULL_, its value is set to _YES_ if the value was converted successfully and _NO_ otherwise. + @return The point representation of the value or {0,0} if the input value cannot be converted. + @see pointValue: + */ ++ (CGPoint)pointValue:(id)value valid:(BOOL *)isValid; + ++ (CGPoint)pointValue:(id)value bounds:(CGRect)bounds defaultOffset:(CGPoint)defaultOffset; + ++ (CGRect)rectValue:(id)value; + +/** + Converts input value into a float. + + @param value The input value. + @return The float representation of the value. + @see floatValue:def: + */ ++ (CGFloat)floatValue:(id)value; + +/** + Converts input value into a float with default fallback. + + @param value The input value. + @param def The default value if the input value cannot be converted. + @return The float representation of the value. + @see floatValue: + */ ++ (CGFloat)floatValue:(id)value def:(CGFloat)def; + +/** + Converts input value into a float with default fallback. + + @param value The input value. + @param def The default value if the input value cannot be converted. + @param isValid The optional output parameter indicating the status of the convertion. If not _NULL_, its value is set to _YES_ if the value was converted successfully and _NO_ otherwise. + @return The float representation of the value. + @see floatValue: + */ ++ (CGFloat)floatValue:(id)value def:(CGFloat)def valid:(BOOL *)isValid; + +/** + Converts input value into a double. + + @param value The input value. + @return The double representation of the value. + @see doubleValue:def: + */ ++ (double)doubleValue:(id)value; + +/** + Converts input value into a double with default fallback. + + @param value The input value. + @param def The default value if the input value cannot be converted. + @return The double representation of the value. + @see doubleValue: + */ ++ (double)doubleValue:(id)value def:(double)def; + +/** + Converts input value into a double with default fallback. + + @param value The input value. + @param def The default value if the input value cannot be converted. + @param isValid The optional output parameter indicating the status of the convertion. If not _NULL_, its value is set to _YES_ if the value was converted successfully and _NO_ otherwise. + @return The double representation of the value. + @see doubleValue: + */ ++ (double)doubleValue:(id)value def:(double)def valid:(BOOL *)isValid; + +/** + Converts input value into an int. + + @param value The input value. + @return The int representation of the value. + @see intValue:def: + */ ++ (int)intValue:(id)value; + +/** + Converts input value into an int with default fallback. + + @param value The input value. + @param def The default value if the input value cannot be converted. + @return The int representation of the value. + @see intValue: + */ ++ (int)intValue:(id)value def:(int)def; + +/** + Converts input value into an int with default fallback. + + @param value The input value. + @param def The default value if the input value cannot be converted. + @param isValid The optional output parameter indicating the status of the convertion. If not _NULL_, its value is set to _YES_ if the value was converted successfully and _NO_ otherwise. + @return The int representation of the value. + @see intValue: + */ ++ (int)intValue:(id)value def:(int)def valid:(BOOL *)isValid; + +/** + Converts input value into the color type. + + @param value The input value of either TiColor type or class with string representation that could be converted to a color. + @return The color representation of the value or _nil_ if the input value cannot be converted. + */ ++ (TiColor *)colorValue:(id)value; + +/** + Converts a native color value into the string-color. + + @param color The input value of a UIColor type. + @return The string-representation of the value. + */ ++ (NSString *)hexColorValue:(UIColor *)color; + +/** + Converts input value into the dimention type. + + @param value The input value that could be converted to a color. + @return The dimension representation of the value or TiDimensionUndefined if the input value cannot be converted. + */ ++ (TiDimension)dimensionValue:(id)value; + ++ (id)valueFromDimension:(TiDimension)dimension; + +/** + Looks up a value for the key in the provided dictionary and returns it as an int. + + @param name The lookup key. + @param properties The dictionary. + @param def The default value if the key doesn't exist in the dictionary. + @param exists The optional output parameter indicating the status of dictionary lookup. If not _NULL_, its value is set to _YES_ if the key was founda and _NO_ otherwise. + @return The resulting value as an int + */ ++ (int)intValue:(NSString *)name properties:(NSDictionary *)properties def:(int)def exists:(BOOL *)exists; + +/** + Looks up a value for the key in the provided dictionary and returns it as a double. + + @param name The lookup key. + @param properties The dictionary. + @param def The default value if the key doesn't exist in the dictionary. + @param exists The optional output parameter indicating the status of dictionary lookup. If not _NULL_, its value is set to _YES_ if the key was founda and _NO_ otherwise. + @return The resulting value as a double + */ ++ (double)doubleValue:(NSString *)name properties:(NSDictionary *)properties def:(double)def exists:(BOOL *)exists; + +/** + Looks up a value for the key in the provided dictionary and returns it as a float. + + @param name The lookup key. + @param properties The dictionary. + @param def The default value if the key doesn't exist in the dictionary. + @param exists The optional output parameter indicating the status of dictionary lookup. If not _NULL_, its value is set to _YES_ if the key was founda and _NO_ otherwise. + @return The resulting value as a float + */ ++ (float)floatValue:(NSString *)name properties:(NSDictionary *)properties def:(float)def exists:(BOOL *)exists; + +/** + Looks up a value for the key in the provided dictionary and returns it as a boolean. + + @param name The lookup key. + @param properties The dictionary. + @param def The default value if the key doesn't exist in the dictionary. + @param exists The optional output parameter indicating the status of dictionary lookup. If not _NULL_, its value is set to _YES_ if the key was founda and _NO_ otherwise. + @return The resulting value as a boolean + */ ++ (BOOL)boolValue:(NSString *)name properties:(NSDictionary *)properties def:(BOOL)def exists:(BOOL *)exists; + +/** + Looks up a value for the key in the provided dictionary and returns it as a string. + + @param name The lookup key. + @param properties The dictionary. + @param def The default value if the key doesn't exist in the dictionary. + @param exists The optional output parameter indicating the status of dictionary lookup. If not _NULL_, its value is set to _YES_ if the key was founda and _NO_ otherwise. + @return The resulting value as a string + */ ++ (NSString *)stringValue:(NSString *)name properties:(NSDictionary *)properties def:(NSString *)def exists:(BOOL *)exists; + +/** + Looks up a value for the key in the provided dictionary and returns it as a point. + + @param name The lookup key. + @param properties The dictionary. + @param def The default value if the key doesn't exist in the dictionary. + @param exists The optional output parameter indicating the status of dictionary lookup. If not _NULL_, its value is set to _YES_ if the key was founda and _NO_ otherwise. + @return The resulting value as a point + */ ++ (CGPoint)pointValue:(NSString *)name properties:(NSDictionary *)properties def:(CGPoint)def exists:(BOOL *)exists; + +/** + Looks up a value for the key in the provided dictionary and returns it as a color. + + @param name The lookup key. + @param properties The dictionary. + @param def The default value if the key doesn't exist in the dictionary. + @param exists The optional output parameter indicating the status of dictionary lookup. If not _NULL_, its value is set to _YES_ if the key was founda and _NO_ otherwise. + @return The resulting value as a color + */ ++ (TiColor *)colorValue:(NSString *)name properties:(NSDictionary *)properties def:(TiColor *)def exists:(BOOL *)exists; + +#ifndef TI_USE_AUTOLAYOUT +/** + Looks up a value for the key in the provided dictionary and returns it as a dimension. + + @param name The lookup key. + @param properties The dictionary. + @param def The default value if the key doesn't exist in the dictionary. + @param exists The optional output parameter indicating the status of dictionary lookup. If not _NULL_, its value is set to _YES_ if the key was founda and _NO_ otherwise. + @return The resulting value as a dimension + */ ++ (TiDimension)dimensionValue:(NSString *)name properties:(NSDictionary *)properties def:(TiDimension)def exists:(BOOL *)exists; +#endif + ++ (NSShadow *)shadowValue:(id)value; + ++ (int)intValue:(NSString *)name properties:(NSDictionary *)props def:(int)def; + ++ (double)doubleValue:(NSString *)name properties:(NSDictionary *)props def:(double)def; + ++ (float)floatValue:(NSString *)name properties:(NSDictionary *)props def:(float)def; + ++ (BOOL)boolValue:(NSString *)name properties:(NSDictionary *)props def:(BOOL)def; + ++ (NSString *)stringValue:(NSString *)name properties:(NSDictionary *)properties def:(NSString *)def; + ++ (CGPoint)pointValue:(NSString *)name properties:(NSDictionary *)properties def:(CGPoint)def; + ++ (TiColor *)colorValue:(NSString *)name properties:(NSDictionary *)properties def:(TiColor *)def; + +#ifndef TI_USE_AUTOLAYOUT ++ (TiDimension)dimensionValue:(NSString *)name properties:(NSDictionary *)properties def:(TiDimension)def; +#endif + ++ (WebFont *)fontValue:(NSDictionary *)properties def:(WebFont *)def; + ++ (UIDeviceOrientation)orientationValue:(id)value def:(UIDeviceOrientation)def; + ++ (int)intValue:(NSString *)name properties:(NSDictionary *)props; + ++ (double)doubleValue:(NSString *)name properties:(NSDictionary *)props; + ++ (float)floatValue:(NSString *)name properties:(NSDictionary *)props; + ++ (BOOL)boolValue:(NSString *)name properties:(NSDictionary *)props; + ++ (NSString *)stringValue:(NSString *)name properties:(NSDictionary *)properties; + ++ (CGPoint)pointValue:(NSString *)name properties:(NSDictionary *)properties; + ++ (TiColor *)colorValue:(NSString *)name properties:(NSDictionary *)properties; + +#ifndef TI_USE_AUTOLAYOUT ++ (TiDimension)dimensionValue:(NSString *)name properties:(NSDictionary *)properties; +#endif ++ (NSDictionary *)pointToDictionary:(CGPoint)point; + ++ (NSDictionary *)rectToDictionary:(CGRect)rect; + ++ (NSDictionary *)sizeToDictionary:(CGSize)size; + +/** + Converts input values in to a NSDictionary. + + @param touch The UITouch object. Containing all the UITouch attributes. + @param view The view, in which the touch is being used. + @return NSDictionary containing the point coordinates and UITouch properties. + */ ++ (NSDictionary *)touchPropertiesToDictionary:(UITouch *)touch andView:(UIView *)view; + ++ (UIEdgeInsets)contentInsets:(id)value; + ++ (CGRect)contentFrame:(BOOL)window; + ++ (CGFloat)sizeValue:(id)value; + ++ (WebFont *)fontValue:(id)value; + ++ (TiScriptError *)scriptErrorValue:(id)value; + ++ (TiScriptError *)scriptErrorFromValueRef:(JSValueRef)valueRef inContext:(JSGlobalContextRef)contextRef; + ++ (NSTextAlignment)textAlignmentValue:(id)alignment; + ++ (NSString *)jsonStringify:(id)value; ++ (id)jsonParse:(NSString *)value; + ++ (NSString *)currentArchitecture; + ++ (NSString *)jsonStringify:(id)value error:(NSError **)error; ++ (id)jsonParse:(NSString *)value error:(NSError **)error; +; + +/** + Whether or not the current device orientation is portrait. + + @return _YES_ is the current device orientation is portrait, _NO_ otherwise. + */ ++ (BOOL)isOrientationPortait; + +/** + Whether or not the current device orientation is landscape. + + @return _YES_ is the current device orientation is landscape, _NO_ otherwise. + */ ++ (BOOL)isOrientationLandscape; + +/** + Detects and returns the current device orientation. + + @return The current device orientation. + */ ++ (UIInterfaceOrientation)orientation; + ++ (CGRect)navBarRect; + ++ (CGSize)navBarTitleViewSize; + ++ (CGRect)navBarTitleViewRect; + ++ (CGRect)screenRect; + ++ (CGPoint)centerSize:(CGSize)smallerSize inRect:(CGRect)largerRect; + ++ (CGRect)centerRect:(CGRect)smallerRect inRect:(CGRect)largerRect; + +/** + Sets the view's bounds and center coordinates. + + @param view The view to make changes on. + @param frameRect The rectangle containing bounds to apply to the view. + */ ++ (void)setView:(UIView *)view positionRect:(CGRect)frameRect; + ++ (void)applyConstraintToView:(TiUIView *)view forProxy:(TiViewProxy *)proxy withBounds:(CGRect)bounds; + ++ (NSString *)composeAccessibilityIdentifier:(id)object; + ++ (CGRect)viewPositionRect:(UIView *)view; + ++ (BOOL)barTranslucencyForColor:(TiColor *)color; ++ (UIColor *)barColorForColor:(TiColor *)color; ++ (UIBarStyle)barStyleForColor:(TiColor *)color; + ++ (void)applyColor:(TiColor *)color toNavigationController:(UINavigationController *)navController; + +/** + Whether or not the current device interface idiom is iPad. + + @return _YES_ if the current device interface idiom is iPad, _NO_ otherwise. + */ ++ (BOOL)isIPad; + +/** + Whether or not the current OS version is equal to or greater than 7.0. + + @return _YES_ if the current OS version is equal to or greater than 7.0, _NO_ otherwise. + */ ++ (BOOL)isIOS7OrGreater __deprecated_msg("Use isIOSVersionOrGreater insted"); + +/** + Whether or not the current OS version is equal to or greater than 8.0. + + @return _YES_ if the current OS version is equal to or greater than 8.0, _NO_ otherwise. + */ ++ (BOOL)isIOS8OrGreater __deprecated_msg("Use isIOSVersionOrGreater insted"); + +/** + Whether or not the current OS version is equal to or greater than 8.2. + + @return _YES_ if the current OS version is equal to or greater thann 8.2, _NO_ otherwise. + */ ++ (BOOL)isIOS82rGreater __deprecated_msg("Use isIOSVersionOrGreater insted"); + +/** + Whether or not the current OS version is equal to or greater than 9.0. + @return _YES_ if the current OS version is equal to or greater than 9.0, _NO_ otherwise. + */ ++ (BOOL)isIOS9OrGreater __deprecated_msg("Use isIOSVersionOrGreater insted"); + +/** + Whether or not the current OS version is equal to or greater than 9.1. + + @return _YES_ if the current OS version is equal to or greater than 9.1, _NO_ otherwise. + */ ++ (BOOL)isIOS9_1OrGreater __deprecated_msg("Use isIOSVersionOrGreater insted"); + +/** + Whether or not the current OS version is equal to or greater than 9.3. + + @return _YES_ if the current OS version is equal to or greater than 9.3, _NO_ otherwise. + */ ++ (BOOL)isIOS9_3OrGreater __deprecated_msg("Use isIOSVersionOrGreater insted"); + +/** + Whether or not the current OS version is equal to or greater than 10.0. + + @return _YES_ if the current OS version is equal to or greater than 10.0, _NO_ otherwise. + */ ++ (BOOL)isIOS10OrGreater __deprecated_msg("Use isIOSVersionOrGreater insted"); + +/** + Whether or not the current OS version is equal to or greater than 11.0. + + @return _YES_ if the current OS version is equal to or greater than 11.0, _NO_ otherwise. + */ ++ (BOOL)isIOS11OrGreater __deprecated_msg("Use isIOSVersionOrGreater insted"); + +/** + Whether or not the current OS version is equal to or greater than the specified version. + + @param version The version to compare. + @return _YES_ if the current OS version is equal to or greater than the specified version, _NO_ otherwise. + */ ++ (BOOL)isIOSVersionOrGreater:(NSString *)version; + +/** + Whether or not the current OS version is lower than the specified version. + @param version The version to compare. + @return _YES_ if the current OS version is lower than the specified version, _NO_ otherwise. + */ ++ (BOOL)isIOSVersionLower:(NSString *)version; + +/** + Whether or not the current device is an iPhone 4. + + @return _YES_ if the current device is an iPhone 4, _NO_ otherwise. + */ ++ (BOOL)isIPhone4; + +/** + Whether or not the current device has HD retina display (@3x). + @return _YES_ if the current device has HD retina display, _NO_ otherwise. + @deprecated Use `[TiUtils is3xRetina]` instead. + */ ++ (BOOL)isRetinaHDDisplay __deprecated_msg("Use `[TiUtils is3xRetina]` instead."); + +/** + Whether or not the current device has retina display. + + @return _YES_ if the current device has retina display, _NO_ otherwise. + @deprecated Use `[TiUtils is2xRetina]` instead. + */ ++ (BOOL)isRetinaDisplay __deprecated_msg("Use `[TiUtils is2xRetina]` instead."); + +/** + Whether or not the current device has HD retina display (@3x). + @return _YES_ if the current device has HD retina display, _NO_ otherwise. + */ ++ (BOOL)is3xRetina; + +/** + Whether or not the current device has retina display (@2x). + @return _YES_ if the current device has retina display, _NO_ otherwise. + */ ++ (BOOL)is2xRetina; + +/** + Whether or not the current device has a 4 inch retina display (iPhone5). + + @return _YES_ if the current device has a 4 inch retina display, _NO_ otherwise. + */ ++ (BOOL)isRetinaFourInch; + +/** + Whether or not the current device has a 4.7 inch retina display (iPhone 6). + + @return _YES_ if the current device has a 4.7 inch retina display, _NO_ otherwise. + @deprecated Use `[TiUtils isRetina4_7Inch]` instead. + */ ++ (BOOL)isRetinaiPhone6 __deprecated_msg("Use `[TiUtils isRetina4_7Inch]` instead."); + +/** + Whether or not the current device has a 5.5 inch retina display (iPhone 6). + @return _YES_ if the current device has a 5.5 inch retina display, _NO_ otherwise. + @deprecated Use `[TiUtils isRetina5_5Inch]` instead. + */ ++ (BOOL)isRetinaiPhone6Plus __deprecated_msg("Use `[TiUtils isRetina5_5Inch]` instead."); + +/** + Whether or not the current device has a 5.8 inch super retina display (iPhone X). + @return _YES_ if the current device has a 5.8 inch super retina display, _NO_ otherwise. + @deprecated Use `[TiUtils isSuperRetina5_8Inch]` instead. + */ ++ (BOOL)isRetinaiPhoneX __deprecated_msg("Use `[TiUtils isSuperRetina5_8Inch]` instead."); + +/** + Whether or not the current device has a 4.7 inch retina display (iPhone 6). + @return _YES_ if the current device has a 4.7 inch retina display, _NO_ otherwise. + */ ++ (BOOL)isRetina4_7Inch; + +/** + Whether or not the current device has a 5.5 inch retina display (iPhone 6). + @return _YES_ if the current device has a 5.5 inch retina display, _NO_ otherwise. + */ ++ (BOOL)isRetina5_5Inch; + +/** + Whether or not the current device has a 5.8 inch super retina display (iPhone X). + @return _YES_ if the current device has a 5.8 inch super retina display, _NO_ otherwise. + */ ++ (BOOL)isSuperRetina5_8Inch; +/** + Whether or not the current device has a 6.1 inch retina display (iPhone X Max). + @return _YES_ if the current device has a 6.1 inch retina display, _NO_ otherwise. + */ ++ (BOOL)isRetina6_1Inch; + +/** + Whether or not the current device has a 6.5 inch super retina display (iPhone X Max). + @return _YES_ if the current device has a 6.5 inch super retina display, _NO_ otherwise. + */ ++ (BOOL)isSuperRetina6_5Inch; + ++ (void)setVolume:(float)volume onObject:(id)object; + ++ (float)volumeFromObject:(id)theObject default:(float)def; + ++ (void)configureController:(UIViewController *)controller withObject:(id)object; + ++ (CGRect)frameForController:(UIViewController *)theController; + ++ (int)dpi; + ++ (NSStringEncoding)charsetToEncoding:(NSString *)charset; + ++ (TiDataType)constantToType:(NSString *)typeStr; + ++ (int)dataSize:(TiDataType)type; + ++ (int)encodeString:(NSString *)string toBuffer:(TiBuffer *)dest charset:(NSString *)charset offset:(NSUInteger)destPosition sourceOffset:(NSUInteger)srcPosition length:(NSUInteger)srcLength; + ++ (int)encodeNumber:(NSNumber *)data toBuffer:(TiBuffer *)dest offset:(int)position type:(NSString *)type endianness:(CFByteOrder)byteOrder; + +/** + Generates MD5 hash for the provided data. + + @param data The input data. + @return MD5 hash string. + */ ++ (NSString *)md5:(NSData *)data; + +/** + Converts array of byte into a hex string. + + @param input The array of bytes. + @param length The length of the input array. + @return Hex representation of the input array. + */ ++ (NSString *)convertToHex:(unsigned char *)input length:(size_t)length; + ++ (NSString *)convertToHexFromData:(NSData *)data; + ++ (NSString *)getResponseHeader:(NSString *)header fromHeaders:(NSDictionary *)responseHeaders; + ++ (UIImage *)loadBackgroundImage:(id)image forProxy:(TiProxy *)proxy; + ++ (UIImage *)loadCappedBackgroundImage:(id)image forProxy:(TiProxy *)proxy withLeftCap:(TiDimension)leftCap topCap:(TiDimension)topCap; + +/** + Convenience method to extract a useful error message from NSError, or nil if none exist. + + @param error The NSError + @return error's localizedDescription and userDescription concatenated + */ ++ (NSString *)messageFromError:(NSError *)error; + +/** + Convenience method to create a mutable dictionary prepopulated with success, code, and error values. + This is for use with callbacks that are not events. While it is possible to use this in events, + the built-in event error reporting functionality is faster. + + @param code The integer representing an error. Use 0 for a success, and -1 for an unknown error. + @param message The optional string describing the error. + */ ++ (NSMutableDictionary *)dictionaryWithCode:(NSInteger)code message:(NSString *)message; + +/** + Checks the force touch capability of the current device. + + @return _YES_ if the device supported force touch. + */ ++ (BOOL)forceTouchSupported; + +/** + Checks the live photo capability of the current device. + + @return _YES_ if the device supported force touch. + */ ++ (BOOL)livePhotoSupported; + +/** + Converts a color into an image. + + @return The generated image. + */ ++ (UIImage *)imageWithColor:(UIColor *)color; + +/** + Checks if this app is using launch-screen storyboards. We may want to deprecate the + old image-based launch-screens in the future, but prefer to align with Apples plans. + + @return _YES_ if launch-screen storyboard are used. + */ ++ (BOOL)isUsingLaunchScreenStoryboard; + +/** + Checks if Hyperloop is available in this app. + + @return _YES_ if Hyperloop is available, _NO_ otherwise. + */ ++ (BOOL)isHyperloopAvailable; + ++ (BOOL)isMacOS; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewController.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewController.h new file mode 100644 index 0000000..a74e1e0 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewController.h @@ -0,0 +1,22 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import "TiControllerProtocols.h" +#import + +@interface TiViewController : UIViewController { + + TiViewProxy *_proxy; + TiOrientationFlags _supportedOrientations; +} + +@property (nonatomic, retain) NSArray *previewActions; + +- (id)initWithViewProxy:(TiViewProxy *)window; +- (TiViewProxy *)proxy; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewProxy.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewProxy.h new file mode 100644 index 0000000..32f9ea3 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewProxy.h @@ -0,0 +1,621 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "TiProxy.h" +#import "TiRect.h" +#import "TiUIView.h" +#import "TiViewTemplate.h" +#import + +/** + Protocol for views that can receive keyboard focus. + */ +@protocol TiKeyboardFocusableView + +#pragma mark Public Titanium APIs. + +/** + Tells the view to focus. + @param args Unused. + */ +- (void)focus:(id)args; + +/** + Tells the view to stop generating focus/blur events. This should not be + JS-accessable, and is meant to handle tableview and layout issues. + */ +@property (nonatomic, readwrite, assign) BOOL suppressFocusEvents; + +/** + Tells the view to blur. + @param args Unused. + */ +- (void)blur:(id)args; +/** + Tells if this proxy is currently focused + */ +- (BOOL)focused:(id)unused; + +#pragma mark Private internal APIs. + +/** + Returns keyboard accessory view. + */ +@property (nonatomic, readonly) UIView *keyboardAccessoryView; + +/** + Returns keyboard accessory height. + */ +@property (nonatomic, readonly) CGFloat keyboardAccessoryHeight; + +@end + +/* + This Protocol will be implemented by objects that want to + monitor views not in the normal view hierarchy. +*/ +@protocol TiProxyObserver +@optional +- (void)proxyDidRelayout:(id)sender; + +@end + +@protocol TiViewEventOverrideDelegate +@required +- (NSDictionary *)overrideEventObject:(NSDictionary *)eventObject forEvent:(NSString *)eventType fromViewProxy:(TiViewProxy *)viewProxy; + +@end + +#pragma mark dirtyflags used by TiViewProxy +#define NEEDS_LAYOUT_CHILDREN 1 +//Set this flag to true to disable instant updates +static const BOOL ENFORCE_BATCH_UPDATE = NO; + +enum { + TiRefreshViewPosition = 2, + TiRefreshViewChildrenPosition, + TiRefreshViewZIndex, + TiRefreshViewSize, + + TiRefreshViewEnqueued, +}; + +@class TiAction, TiBlob; +//For TableRows, we need to have minimumParentHeightForWidth: + +/** + The class represents a proxy that is attached to a view. + The class is not intended to be overriden. + */ +@interface TiViewProxy : TiProxy { + @protected + //TODO: Actually have a rhyme and reason on keeping things @protected vs @private. + //For now, for sake of proper value grouping, we're all under one roof. + +#ifndef TI_USE_AUTOLAYOUT +#pragma mark Layout properties + LayoutConstraint layoutProperties; +#endif + int vzIndex; + BOOL hidden; // This is the boolean version of ![TiUtils boolValue:visible def:YES] + BOOL safeAreaProxyAdded; + +#pragma mark Parent/Children relationships + TiViewProxy *parent; + pthread_rwlock_t childrenLock; + NSMutableArray *children; + // NSMutableArray *pendingAdds; + +#pragma mark Visual components + TiUIView *view; + UIBarButtonItem *barButtonItem; + +#pragma mark Layout caches that can be recomputed + CGFloat verticalLayoutBoundary; + CGFloat horizontalLayoutBoundary; + CGFloat horizontalLayoutRowHeight; //Note, this has nothing to do with table views. + int lastChildArranged; + + CGRect sandboxBounds; + CGPoint positionCache; //Recomputed and stored when position changes. + CGRect sizeCache; //Recomputed and stored when size changes. + UIViewAutoresizing autoresizeCache; //Changed by repositioning or resizing. + + BOOL parentVisible; + //In most cases, this is the same as [parent parentVisible] && ![parent hidden] + //However, in the case of windows attached to the root view, the parent is ALWAYS visible. + //That is, will be true if and only if all parents are visible or are the root controller. + //Use parentWillShow and parentWillHide to set this. + +#pragma mark Housecleaning that is set and used + NSRecursiveLock *destroyLock; + + BOOL windowOpened; + BOOL windowOpening; + + int dirtyflags; //For atomic actions, best to be explicit about the 32 bitness. + BOOL viewInitialized; + BOOL repositioning; + BOOL isUsingBarButtonItem; + //This flag is set to true on beginning of _initWithProperties() call and false near the end of the method + BOOL updateStarted; + BOOL allowLayoutUpdate; + + NSMutableDictionary *layoutPropDictionary; + + id observer; + id eventOverrideDelegate; +} + +#pragma mark public API + +@property (nonatomic, readonly) TiRect *size; +@property (nonatomic, readonly) TiRect *rect; +/* + Provides access to z-index value. + */ +@property (nonatomic, readwrite, assign) int vzIndex; +/** + Provides access to visibility of parent view proxy. + */ +@property (nonatomic, readwrite, assign) BOOL parentVisible; // For tableview magic ONLY + +/** + Returns children view proxies for the proxy. + */ +@property (nonatomic, readonly) NSArray *children; + +- (void)setTempProperty:(id)propVal forKey:(id)propName; +- (void)processTempProperties:(NSDictionary *)arg; +- (BOOL)_hasListeners:(NSString *)type checkParent:(BOOL)check; +- (void)setProxyObserver:(id)arg; + +/** + Tells the view proxy to add a child proxy. + @param arg A single proxy to add or NSArray of proxies. + */ +- (void)add:(id)arg; + +/** + Tells the view proxy to remove a child proxy. + @param arg A single proxy to remove. + */ +- (void)remove:(id)arg; + +/** + Tells the view proxy to remove all child proxies. + @param arg Ignored. + */ +- (void)removeAllChildren:(id)arg; + +/** + Tells the view proxy to set visibility on a child proxy to _YES_. + @param arg A single proxy to show. + */ +- (void)show:(id)arg; + +/** + Tells the view proxy to set visibility on a child proxy to _NO_. + @param arg A single proxy to hide. + */ +- (void)hide:(id)arg; + +/** + Clears all previously created motion effects (if set). + @param unused An unused parameter for proxy swizzling. + */ +- (void)clearMotionEffects:(id)unused; + +/** + Returns the view by the given ID. + @param arg The ID of the view to receive. + */ +- (id)getViewById:(id)arg; + +/** + Tells the view proxy to run animation on its view. + @param arg An animation object. + */ +- (void)animate:(id)arg; + +#ifndef TI_USE_AUTOLAYOUT +- (void)setTop:(id)value; +- (void)setBottom:(id)value; +- (void)setLeft:(id)value; +- (void)setRight:(id)value; +- (void)setWidth:(id)value; +- (void)setHeight:(id)value; +#endif +- (void)setZIndex:(id)value; +- (id)zIndex; + +// See the code for setValue:forUndefinedKey: for why we can't have this +#ifndef TI_USE_AUTOLAYOUT +- (void)setMinWidth:(id)value; +- (void)setMinHeight:(id)value; +- (void)setCenter:(id)value; +#endif +- (NSMutableDictionary *)center; +- (id)animatedCenter; + +- (void)setBackgroundGradient:(id)arg; +- (TiBlob *)toImage:(id)args; + +#pragma mark nonpublic accessors not related to Housecleaning + +/** + Provides access to parent proxy of the view proxy. + @see add: + @see remove: + @see children + */ +@property (nonatomic, assign) TiViewProxy *parent; +//TODO: make this a proper readwrite property declaration. + +#ifndef TI_USE_AUTOLAYOUT +/** + Provides access to layout properties of the underlying view. + */ +@property (nonatomic, readonly, assign) LayoutConstraint *layoutProperties; +#endif + +/** + Provides access to sandbox bounds of the underlying view. + */ +@property (nonatomic, readwrite, assign) CGRect sandboxBounds; +//This is unaffected by parentVisible. So if something is truely visible, it'd be [self visible] && parentVisible. +- (void)setHidden:(BOOL)newHidden withArgs:(id)args; + +@property (nonatomic, retain) UIBarButtonItem *barButtonItem; +- (TiUIView *)barButtonViewForSize:(CGSize)bounds; + +//NOTE: DO NOT SET VIEW UNLESS IN A TABLE VIEW, AND EVEN THEN. +@property (nonatomic, readwrite, retain) TiUIView *view; + +@property (nonatomic, readwrite, assign) id eventOverrideDelegate; + +/** + Returns language conversion table. + + Subclasses may override. + @return The dictionary + */ +- (NSMutableDictionary *)langConversionTable; + +#pragma mark Methods subclasses should override for behavior changes + +/** + Whether or not the view proxy can have non Ti-Views which have to be pushed to the bottom when adding children. + **This method is only meant for legacy classes. New classes must implement the proper wrapperView code** + Subclasses may override. + @return _NO_ if the view proxy can have non Ti-Views in its view hierarchy + */ +- (BOOL)optimizeSubviewInsertion; + +/** + Whether or not the view proxy needs to suppress relayout. + + Subclasses may override. + @return _YES_ if relayout should be suppressed, _NO_ otherwise. + */ +- (BOOL)suppressesRelayout; + +/** + Whether or not the view proxy supports navigation bar positioning. + + Subclasses may override. + @return _YES_ if navigation bar positioning is supported, _NO_ otherwise. + */ +- (BOOL)supportsNavBarPositioning; + +/** + Whether or not the view proxy can have a UIController object in its parent view. + + Subclasses may override. + @return _YES_ if the view proxy can have a UIController object in its parent view + */ +- (BOOL)canHaveControllerParent; + +/** + Whether or not the view proxy should detach its view on unload. + + Subclasses may override. + @return _YES_ if the view should be detached, _NO_ otherwise. + */ +- (BOOL)shouldDetachViewOnUnload; + +/** + Returns parent view for child proxy. + + The method is used in cases when proxies hierarchy is different from views hierarchy. + Subclasses may override. + @param child The child view proxy for which return the parent view. + @return The parent view + */ +- (UIView *)parentViewForChild:(TiViewProxy *)child; + +#pragma mark Event trigger methods + +/** + Tells the view proxy that the attached window will open. + @see windowDidOpen + */ +- (void)windowWillOpen; + +/** + Tells the view proxy that the attached window did open. + @see windowWillOpen + */ +- (void)windowDidOpen; + +/** + Tells the view proxy that the attached window will close. + @see windowDidClose + */ +- (void)windowWillClose; + +/** + Tells the view proxy that the attached window did close. + @see windowWillClose + */ +- (void)windowDidClose; + +/** + Tells the view proxy that its properties are about to change. + @see didFirePropertyChanges + */ +- (void)willFirePropertyChanges; + +/** + Tells the view proxy that its properties are changed. + @see willFirePropertyChanges + */ +- (void)didFirePropertyChanges; + +/** + Tells the view proxy that a view will be attached to it. + @see viewDidAttach + */ +- (void)viewWillAttach; // Need this for video player & possibly other classes which override newView + +/** + Tells the view proxy that a view was attached to it. + @see viewWillAttach + */ +- (void)viewDidAttach; + +/** + Tells the view proxy that a view will be detached from it. + @see viewDidDetach + */ +- (void)viewWillDetach; + +/** + Tells the view proxy that a view was detached from it. + @see viewWillDetach + */ +- (void)viewDidDetach; + +#pragma mark Housecleaning state accessors +//TODO: Sounds like the redundancy department of redundancy was here. +/** + Whether or not a view is attached to the view proxy. + @return _YES_ if the view proxy has a view attached to it, _NO_ otherwise. + */ +- (BOOL)viewAttached; + +/** + Whether or not the view proxy has been initialized. + @return _YES_ if the view proxy has been initialized, _NO_ otherwise. + */ +- (BOOL)viewInitialized; + +/** + Whether or not the view proxy has been completely set up. + @return _YES_ if the view proxy has been initialized and its view has a superview and non-empty bounds, _NO_ otherwise. + */ +- (BOOL)viewReady; + +/** + Whether or not a window attached to the view proxy has been opened. + @return _YES_ if the view proxy's window has been opened, _NO_ otherwise. + */ +- (BOOL)windowHasOpened; + +/** + Whether or not a window attached to the view proxy is currently being opened. + @return _YES_ if the view proxy's window is being opened, _NO_ otherwise. + */ +- (BOOL)windowIsOpening; + +/** + Whether or not the view proxy is using a bar button item. + @return _YES_ if a bar button item is used, _NO_ otherwise. + */ +- (BOOL)isUsingBarButtonItem; + +- (CGRect)appFrame; //TODO: Why is this here? It doesn't have anything to do with a specific instance. + +#pragma mark Building up and tearing down +- (void)firePropertyChanges; + +/** + Returns a ne view corresponding to the view proxy. + @return The created view. + */ +- (TiUIView *)newView; + +/** + Tells the view proxy to detach its view. + */ +- (void)detachView; + +- (void)destroy; + +/** + Tells the view proxy to remove its bar button item. + */ +- (void)removeBarButtonView; + +#pragma mark Callbacks + +/** + Tells the view proxy that its view animation did complete. + @param animation The completed animation + */ +- (void)animationCompleted:(TiAnimation *)animation; +/** + Tells the view attached to the view proxy to perform a selector with given arguments. + @param selector The selector to perform. + @param object The argument for the method performed. + @param create The flag to create the view if the one is not attached. + @param wait The flag to wait till the operation completes. + */ +- (void)makeViewPerformSelector:(SEL)selector withObject:(id)object createIfNeeded:(BOOL)create waitUntilDone:(BOOL)wait; + +#pragma mark Layout events, internal and external + +/** + Tells the view proxy that the attached view size will change. + */ +- (void)willChangeSize; + +/** + Tells the view proxy that the attached view position will change. + */ +- (void)willChangePosition; + +/** + Tells the view proxy that the attached view z-index will change. + */ +- (void)willChangeZIndex; + +/** + Tells the view proxy that the attached view layout will change. + */ +- (void)willChangeLayout; + +/** + Tells the view proxy that the attached view will show. + */ +- (void)willShow; + +/** + Tells the view proxy that the attached view will hide. + */ +- (void)willHide; + +/** + Tells the view proxy that the attached view contents will change. + */ +- (void)contentsWillChange; + +/** + Tells the view proxy that the attached view's parent size will change. + */ +- (void)parentSizeWillChange; + +/** + Tells the view proxy that the attached view's parent will change position and size. + */ +- (void)parentWillRelay; + +/** + Tells the view proxy that the attached view's parent will show. + */ +- (void)parentWillShow; + +/** + Tells the view proxy that the attached view's parent will hide. + */ +- (void)parentWillHide; + +#pragma mark Layout actions + +- (void)refreshView:(TiUIView *)transferView; + +/** + Tells the view proxy to force size refresh of the attached view. + */ +- (void)refreshSize; + +/** + Tells the view proxy to force position refresh of the attached view. + */ +- (void)refreshPosition; + +/** + Puts the view in the layout queue for rendering. + */ +- (void)willEnqueue; + +//Unlike the other layout actions, this one is done by the parent of the one called by refreshView. +//This is the effect of refreshing the Z index via careful view placement. +- (void)insertSubview:(UIView *)childView forProxy:(TiViewProxy *)childProxy; + +#pragma mark Layout commands that need refactoring out + +- (void)determineSandboxBounds; + +/** + Tells the view to layout its children. + @param optimize Internal use only. Always specify _NO_. + */ +- (void)layoutChildren:(BOOL)optimize; + +/** + Tells the view to layout its children only if there were any layout changes. + */ +- (void)layoutChildrenIfNeeded; + +- (void)layoutChild:(TiViewProxy *)child optimize:(BOOL)optimize withMeasuredBounds:(CGRect)bounds; +- (NSArray *)measureChildren:(NSArray *)childArray; +- (CGRect)computeChildSandbox:(TiViewProxy *)child withBounds:(CGRect)bounds; + +/** + Tells the view to adjust its size and position according to the current layout constraints. + */ +- (void)relayout; + +- (void)reposition; //Todo: Replace +/** + Tells if the view is enqueued in the LayoutQueue + */ +- (BOOL)willBeRelaying; + +- (BOOL)widthIsAutoFill; +- (BOOL)widthIsAutoSize; +- (BOOL)heightIsAutoFill; +- (BOOL)heightIsAutoSize; +- (BOOL)belongsToContext:(id)context; + +/** + Tells the view that its child view size will change. + @param child The child view + */ +- (void)childWillResize:(TiViewProxy *)child; //Todo: Replace + +- (void)unarchiveFromTemplate:(id)viewTemplate; ++ (TiViewProxy *)unarchiveFromTemplate:(id)viewTemplate inContext:(id)context; + +@end + +#define USE_VIEW_FOR_METHOD(resultType, methodname, inputType) \ + -(resultType)methodname : (inputType)value \ + { \ + return [[self view] methodname:value]; \ + } + +#define USE_VIEW_FOR_VERIFY_WIDTH USE_VIEW_FOR_METHOD(CGFloat, verifyWidth, CGFloat) +#define USE_VIEW_FOR_VERIFY_HEIGHT USE_VIEW_FOR_METHOD(CGFloat, verifyHeight, CGFloat) +#define USE_VIEW_FOR_CONTENT_WIDTH USE_VIEW_FOR_METHOD(CGFloat, contentWidthForWidth, CGFloat) +#define USE_VIEW_FOR_CONTENT_HEIGHT USE_VIEW_FOR_METHOD(CGFloat, contentHeightForWidth, CGFloat) + +#define DECLARE_VIEW_CLASS_FOR_NEWVIEW(viewClass) \ + -(TiUIView *)newView \ + { \ + return [[viewClass alloc] init]; \ + } diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewTemplate.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewTemplate.h new file mode 100644 index 0000000..3b154b7 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiViewTemplate.h @@ -0,0 +1,21 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2013 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "TiProxy.h" + +@interface TiViewTemplate : TiProxy + +@property (nonatomic, readonly) NSString *type; +@property (nonatomic, readonly) NSDictionary *properties; +@property (nonatomic, readonly) NSDictionary *events; +@property (nonatomic, readonly) NSArray *childTemplates; + +- (id)initWithViewTemplate:(NSDictionary *)viewTemplate; +- (BOOL)isEmpty; + ++ (TiViewTemplate *)templateFromViewTemplate:(id)viewTemplate; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiWindowProxy.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiWindowProxy.h new file mode 100644 index 0000000..47b1d53 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TiWindowProxy.h @@ -0,0 +1,47 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2021 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ +#import "TiTab.h" +#import "TiViewController.h" +#import "TiViewProxy.h" + +#import "TiUIiOSTransitionAnimationProxy.h" + +@class KrollPromise; + +@interface TiWindowProxy : TiViewProxy { + @protected + TiViewController *controller; + id parentController; + TiOrientationFlags _supportedOrientations; + BOOL opening; + BOOL opened; + BOOL closing; + BOOL focussed; + BOOL isModal; + BOOL hidesStatusBar; + BOOL forceModal; + UIStatusBarStyle barStyle; + TiViewProxy *tab; + TiAnimation *openAnimation; + TiAnimation *closeAnimation; + UIView *animatedOver; + TiUIiOSTransitionAnimationProxy *transitionProxy; + KrollPromise *openPromise; + KrollPromise *closePromise; +} + +@property (nonatomic, readwrite, assign) TiViewProxy *tab; +@property (nonatomic, readonly) TiProxy *tabGroup; +@property (nonatomic) BOOL isMasterWindow; +@property (nonatomic) BOOL isDetailWindow; +@property (nonatomic) BOOL safeAreaInsetsUpdated; + +- (void)processForSafeArea; +- (UIViewController *)windowHoldingController; +- (TiUIiOSTransitionAnimationProxy *)transitionAnimation; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TitaniumKit.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TitaniumKit.h new file mode 100644 index 0000000..6e1ed6e --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/TitaniumKit.h @@ -0,0 +1,63 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2018-present by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +//! Project version number for TitaniumKit. +FOUNDATION_EXPORT double TitaniumKitVersionNumber; + +//! Project version string for TitaniumKit. +FOUNDATION_EXPORT const unsigned char TitaniumKitVersionString[]; + +// TiBase.h needs to come first because of all the macro definitions +#import + +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import + +#define TISDK_VERSION_STRING @"8.0.0" diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+Alpha.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+Alpha.h new file mode 100644 index 0000000..f9ebab6 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+Alpha.h @@ -0,0 +1,23 @@ +// UIImage+Alpha.h +// Created by Trevor Harmon on 9/20/09. +// Free for personal or commercial use, with or without modification. +// No warranty is expressed or implied. + +// NOTE: Appcelerator modified to convert from Category to +// new Class name since iPhone seems to have some issues with Categories +// of built in Classes + +// Helper methods for adding an alpha layer to an image + +#import +#import + +@interface UIImageAlpha : NSObject + ++ (BOOL)hasAlpha:(UIImage *)image; ++ (UIImage *)normalize:(UIImage *)image; ++ (UIImage *)imageWithAlpha:(UIImage *)image; ++ (UIImage *)transparentBorderImage:(NSUInteger)borderSize image:(UIImage *)image; ++ (CGImageRef)newBorderMask:(NSUInteger)borderSize size:(CGSize)size; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+Resize.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+Resize.h new file mode 100644 index 0000000..6b84f94 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+Resize.h @@ -0,0 +1,33 @@ +// UIImage+Resize.h +// Created by Trevor Harmon on 8/5/09. +// Free for personal or commercial use, with or without modification. +// No warranty is expressed or implied. + +// NOTE: Appcelerator modified to convert from Category to +// new Class name since iPhone seems to have some issues with Categories +// of built in Classes +#import "TiDimension.h" + +@interface UIImageResize : NSObject { +} ++ (UIImage *)croppedImage:(CGRect)bounds image:(UIImage *)image; + ++ (UIImage *)thumbnailImage:(NSInteger)thumbnailSize + transparentBorder:(NSUInteger)borderSize + cornerRadius:(NSUInteger)cornerRadius + interpolationQuality:(CGInterpolationQuality)quality + image:(UIImage *)image; + ++ (UIImage *)resizedImage:(CGSize)newSize + interpolationQuality:(CGInterpolationQuality)quality + image:(UIImage *)image + hires:(BOOL)hires; + ++ (UIImage *)resizedImageWithContentMode:(UIViewContentMode)contentMode + bounds:(CGSize)bounds + interpolationQuality:(CGInterpolationQuality)quality + image:(UIImage *)image; ++ (UIImage *)resizedImageWithLeftCap:(TiDimension)leftCap + topCap:(TiDimension)topCap + image:(UIImage *)image; +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+RoundedCorner.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+RoundedCorner.h new file mode 100644 index 0000000..97d1d18 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/UIImage+RoundedCorner.h @@ -0,0 +1,13 @@ +// UIImage+RoundedCorner.h +// Created by Trevor Harmon on 9/20/09. +// Free for personal or commercial use, with or without modification. +// No warranty is expressed or implied. + +// NOTE: Appcelerator modified to convert from Category to +// new Class name since iPhone seems to have some issues with Categories +// of built in Classes + +@interface UIImageRoundedCorner : NSObject { +} ++ (UIImage *)roundedCornerImage:(NSInteger)cornerSize borderSize:(NSInteger)borderSize image:(UIImage *)image; +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/WebFont.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/WebFont.h new file mode 100644 index 0000000..0003262 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/WebFont.h @@ -0,0 +1,125 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +/** + The class representing a font. + */ +@interface WebFont : NSObject { + NSString *family; + CGFloat size; + BOOL isSemiboldWeight; + BOOL isBoldWeight; + BOOL isThinWeight; + BOOL isLightWeight; + BOOL isUltraLightWeight; + BOOL isNormalWeight; + BOOL isItalicStyle; + BOOL isNormalStyle; + + UIFont *font; + + NSString *textStyle; +} + +/** + Provides access to the font family which is the official font name. + @see http://developer.appcelerator.com/apidoc/mobile/latest/Font-object.html + */ +@property (nonatomic, retain) NSString *family; + +/** + Provides access to the font size. + */ +@property (nonatomic) CGFloat size; + +/** + Whether or not the font size is not set. + @return _YES_ if the font size is not set, _NO_ otherwise. + */ +@property (nonatomic, readonly) BOOL isSizeNotSet; + +/** + Whether or not the font weight is bold. + */ +@property (nonatomic) BOOL isBoldWeight; + +/** + Whether or not the font weight is normal. + */ +@property (nonatomic) BOOL isNormalWeight; + +/** + Whether or not the font weight is thin. + */ +@property (nonatomic) BOOL isThinWeight; + +/** + Whether or not the font weight is light. + */ +@property (nonatomic) BOOL isLightWeight; + +/** + Whether or not the font weight is ultra light. + */ +@property (nonatomic) BOOL isUltraLightWeight; + +/** + Whether or not the font style is italic. + */ +@property (nonatomic) BOOL isItalicStyle; + +/** + Whether or not the font style is normal. + */ +@property (nonatomic) BOOL isNormalStyle; + +/** + Whether or not the font weight is semibold. + */ +@property (nonatomic) BOOL isSemiboldWeight; + +/** + Provides access to the Text Style. + */ +@property (nonatomic, readonly) NSString *textStyle; + +/** + Returns underlying font object. + @return The font + */ +- (UIFont *)font; + +/** + Tells the font to update its parameters from dictionary. + @param fontDict The dictionary to update from. + @param inheritedFont The font to inherit parameters from. + @return _YES_ if the update operation succeeded, _NO_ otherwise. + */ +- (BOOL)updateWithDict:(NSDictionary *)fontDict inherits:(WebFont *)inheritedFont; + +/** + Returns the default text font. + @return The default font. + */ ++ (WebFont *)defaultFont; + +/** + Returns the default bold font. + @return The default bold font. + */ ++ (WebFont *)defaultBoldFont; + +/** + Returns the font by name. + @param name The web font name. + @return The web font. + */ ++ (WebFont *)fontWithName:(NSString *)name; + +@end diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Webcolor.h b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Webcolor.h new file mode 100644 index 0000000..f13f444 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Headers/Webcolor.h @@ -0,0 +1,52 @@ +/** + * Appcelerator Titanium Mobile + * Copyright (c) 2009-2014 by Appcelerator, Inc. All Rights Reserved. + * Licensed under the terms of the Apache Public License + * Please see the LICENSE included with this distribution for details. + */ + +#import + +/** + The utility class for web colors. + */ +@interface Webcolor : NSObject { +} + ++ (UIColor *)checkmarkColor; + +/** + Returns web color by name. + @param colorName The color name. + @return The color object. + */ ++ (UIColor *)webColorNamed:(NSString *)colorName; + +/** + Returns the color for RGB function. + @param functionString The RGB function string. + @return The color object. + */ ++ (UIColor *)colorForRGBFunction:(NSString *)functionString; + +/** + Returns the color for hex string. + @param hexCode The hex string. + @return The color object. + */ ++ (UIColor *)colorForHex:(NSString *)hexCode; + ++ (void)flushCache; ++ (BOOL)isDarkColor:(UIColor *)color; + +//constants for iOS background texture colors. + +extern NSString *const IOS_COLOR_SCROLLVIEW_TEXTURED_BACKGROUND; +extern NSString *const IOS_COLOR_VIEW_FLIPSIDE_BACKGROUND; +extern NSString *const IOS_COLOR_GROUP_TABLEVIEW_BACKGROUND; +extern NSString *const IOS_COLOR_UNDER_PAGE_BACKGROUND; + +@end + +#define RGBCOLOR(r, g, b) [UIColor colorWithRed:r / 255.0 green:g / 255.0 blue:b / 255.0 alpha:1] +#define RGBACOLOR(r, g, b, a) [UIColor colorWithRed:r / 255.0 green:g / 255.0 blue:b / 255.0 alpha:a] diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Modules/module.modulemap b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Modules/module.modulemap new file mode 100644 index 0000000..28477de --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Modules/module.modulemap @@ -0,0 +1,6 @@ +framework module TitaniumKit { + umbrella header "TitaniumKit.h" + + export * + module * { export * } +} diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Resources/Info.plist b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Resources/Info.plist new file mode 100644 index 0000000..a6f4c13 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/Resources/Info.plist @@ -0,0 +1,50 @@ + + + + + BuildMachineOSBuild + 19F101 + CFBundleDevelopmentRegion + en + CFBundleExecutable + TitaniumKit + CFBundleIdentifier + com.appcelerator.TitaniumKit + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + TitaniumKit + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSupportedPlatforms + + MacOSX + + CFBundleVersion + 1 + DTCompiler + com.apple.compilers.llvm.clang.1_0 + DTPlatformBuild + 12D4e + DTPlatformName + macosx + DTPlatformVersion + 11.1 + DTSDKBuild + 20C63 + DTSDKName + macosx11.1 + DTXcode + 1240 + DTXcodeBuild + 12D4e + LSMinimumSystemVersion + 10.15 + UIDeviceFamily + + 2 + + + diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/TitaniumKit b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/TitaniumKit new file mode 100755 index 0000000..bc162b2 Binary files /dev/null and b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/TitaniumKit differ diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/_CodeSignature/CodeResources b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/_CodeSignature/CodeResources new file mode 100644 index 0000000..5443f0c --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/A/_CodeSignature/CodeResources @@ -0,0 +1,674 @@ + + + + + files + + Resources/Info.plist + + 0oJl90Olm0eQ4l+6SUCdzNsYDto= + + + files2 + + Headers/APIModule.h + + hash2 + + rRHuR2Nvy24GxVJ9pytuxKCqLEZfiESz4rIfu2CCe1M= + + + Headers/APSAnalytics.h + + hash2 + + KkOf9dkxxSUzNHITJ3W02rG+xeySewKDnztC8aOsxxo= + + + Headers/APSHTTPClient.h + + hash2 + + 7dSGOMbpVuhO8qXNjEMF1PJsBVxz+9RyzwDY5y31pBU= + + + Headers/APSHTTPHelper.h + + hash2 + + LvkAIOoZmPUwdEYTJN2wdkAf9N2OLvh1a9Eh6A/tkZo= + + + Headers/APSHTTPPostForm.h + + hash2 + + ihl406yA/HeqGJ651HgzxSI7hGiN35A5D10CXJFenXI= + + + Headers/APSHTTPRequest.h + + hash2 + + 5Yj7uzcNkjL0ovYPqRy+Cbq3st2oog2MJtbYWt4yPds= + + + Headers/APSHTTPResponse.h + + hash2 + + UN0l9dW7E64n693LERGKkjx2oKC+Av41D1oH2lyLonQ= + + + Headers/Bridge.h + + hash2 + + X1LmeOjOjMXTf7VrL4L0waEYA0F1QllygtsQQPJ3TX0= + + + Headers/ImageLoader.h + + hash2 + + RQeJXhi6Da3WSYr9lE9dF91G4TAAeZ5AkfrltGU2dAY= + + + Headers/JSValue+Addons.h + + hash2 + + 8RrpbEaI0b58YXlTPbk1I+mx8E7LYnCjthDhGymTzA4= + + + Headers/KrollBridge.h + + hash2 + + NdA3sCKdUg/RW5OIyBdQLXDRxW/Zzbr0zAEuknuMhuk= + + + Headers/KrollCallback.h + + hash2 + + yLmuSztluzutVrOccGQlYhuk7bk0w4FlegbJi8iHjAA= + + + Headers/KrollContext.h + + hash2 + + nLD8fTN4s95cLOHo1TrZ5jiKP69jcNMR9UDRCpbKkoA= + + + Headers/KrollObject.h + + hash2 + + G856iL3aQdqdOYx0yzIu8IGDi3wAo0L0+lXCWH424KE= + + + Headers/KrollPromise.h + + hash2 + + KytjK7p8jPTgdNoBKwALEjWi1mow9bbb+iK1JnpEfdE= + + + Headers/KrollWrapper.h + + hash2 + + kmMbUsEm9Elbs21xijSOOYP2OeCzyMI37UYbndadq2I= + + + Headers/LayoutConstraint.h + + hash2 + + VwhEl+6Tfupbotyd9EyMq8miZSITyiUNWwNcJCYkWtk= + + + Headers/ListenerEntry.h + + hash2 + + qEJOLIHq3IgAqqWB7oqxA+SJBu2BO2xiSwYc6/s86eY= + + + Headers/Mimetypes.h + + hash2 + + NWA70zM4hyjSu0GL3Lx8Co97auXWcQpiU5FFuFsnUpQ= + + + Headers/Module.h + + hash2 + + ZgtyUUJ8smAIiiDosvUr3m2vSu4UwiTDNqhMIz93gqs= + + + Headers/NSData+Additions.h + + hash2 + + OznvD561eJoatvYC4H8iiv06Dng3Q59v0hokS5YvHrI= + + + Headers/ObjcModule.h + + hash2 + + PhNZ0g6Usx1f+0zCENSsls+0Ysn64pHqEAv1DWnQWsU= + + + Headers/ObjcProxy.h + + hash2 + + 8ailOqbQQ9W9+yEnInXWqG9DHqMtG1fvnQcbbqXnzvU= + + + Headers/OperationQueue.h + + hash2 + + cDggg3Z9TwwxNRCTnER0SD/gj22AUTsC30ck0atUMqA= + + + Headers/SBJSON.h + + hash2 + + WOeHFXul7b8R8yBZnpXmd9BHs/jbAPg51akgWgfsDFk= + + + Headers/Ti2DMatrix.h + + hash2 + + kjAPJZv9NGztSlpHQ5ITZ/ai7H/B/cl2qukThBVg+vI= + + + Headers/Ti3DMatrix.h + + hash2 + + IiCW25WDQmg9Wo5UoTpaR9eOslUN3q8qY5/HzK/0IbE= + + + Headers/TiAnimation.h + + hash2 + + B6WBzSE3+6Rn7SESgT8fwyV3TbV3TiY5Jtoj1QgbDWw= + + + Headers/TiApp.h + + hash2 + + ecajwafTNLX+YNYU3AzmXRb010GAjiIRhzO2kIppeRk= + + + Headers/TiBase.h + + hash2 + + uVAN0MxLArHMqdaZksU8DYm1eFAptACKrezhnrvpGtU= + + + Headers/TiBindingRunLoop.h + + hash2 + + KINwimDSCQkmUgGHeVZ2Zc2VsIylEqO9hyuwM1OwkWs= + + + Headers/TiBlob.h + + hash2 + + EQMYYqqVLFrNabQkh8kKIDA4TQhgiKAXKWXOUuyMX1I= + + + Headers/TiBuffer.h + + hash2 + + qPOZ0xYornc0AtxsV28EjwZ4F/7G91O9FxXaVX62GDs= + + + Headers/TiColor.h + + hash2 + + ukujuzH7uSuTIxOv99+zSSGGY0pLQ2NvURP7v5E87NA= + + + Headers/TiComplexValue.h + + hash2 + + aTUCZE+7tcG393xFuGRE7gZVMqZjlIKIu1MUua6oMSw= + + + Headers/TiControllerProtocols.h + + hash2 + + Ayo65CR1zPeC14IRwKgIRfwVXBKeTSL8DmuX5Ogg2WU= + + + Headers/TiDefines.h + + hash2 + + B9pQ557rYFDNpIkGbAFkuGm8Hyx0PttvBu6tNLAhbwk= + + + Headers/TiDimension.h + + hash2 + + geq4/o67AR8naa7QiBf7ztwiuslrxRZXPzMVVTRakbA= + + + Headers/TiEvaluator.h + + hash2 + + Vf9lqV2vCDBDAJvGZZzBi4dkD7K2kM7+jz/tfn6aXK0= + + + Headers/TiExceptionHandler.h + + hash2 + + uKLdojDkeROHRHO11DzN1S8s0FPttSV9PS5AAgvmpY8= + + + Headers/TiFile.h + + hash2 + + GqZw6T2u5tLh6u+ugTlmwpQMv7kk8RRK6CSPBujqrSU= + + + Headers/TiFilesystemFileProxy.h + + hash2 + + EvJ4X+R7T5TFP8pPgVLvi/5zZLm0e921xSLlJB4I0QQ= + + + Headers/TiFilesystemFileStreamProxy.h + + hash2 + + iSy+X/9HOLxjnUgdaIoARaArILkASADVtT51/BH1WSA= + + + Headers/TiGradient.h + + hash2 + + t6cbpn/VBZA2G811Om1bP8gyshSM33l166L4jU/Ebr0= + + + Headers/TiHost.h + + hash2 + + ymIk4a4JAif8bRhSFpLQhHj6cJrvOPDLnfPR2VHtDKQ= + + + Headers/TiLayoutQueue.h + + hash2 + + q19ADKpRA9BRZupjvEdq4zKMLJaK4H+YJw764+r4jaM= + + + Headers/TiLocale.h + + hash2 + + IKm6cDS6Hw/DK9d+tFQ1KHALrWmM23Zh+0nwYI/KB9Y= + + + Headers/TiLogServer.h + + hash2 + + UPzmbA/gKGwZUiikzxQjrFHt372D2EZ6eo73tSMHMKw= + + + Headers/TiModule.h + + hash2 + + qNjKAWCw+Zdu2LLUDxlfQyfljVU1xuVDu9D/xCzeWIs= + + + Headers/TiPoint.h + + hash2 + + 04dN7bDy7qZbibRNzlwhjaIUSh0ZhajWb2ogntp7q7M= + + + Headers/TiProxy.h + + hash2 + + EcTsxor6yF5NauRH2Cm6RWNndDFMH0LlxodT1nYBvp4= + + + Headers/TiPublicAPI.h + + hash2 + + 3ZC6YUz0J1wwnRtTrnXfDz5p4FGPVm50VCblPilfni4= + + + Headers/TiRect.h + + hash2 + + 4Y+LkyBKEOb38Pg1wND2zwGKVY1LIe2iMXv4P/r3NMU= + + + Headers/TiRootViewController.h + + hash2 + + oIT6yD0vMPxHrR23xOWkrpiXgpr8F392sZ09Ph38g+Y= + + + Headers/TiSharedConfig.h + + hash2 + + AGbkMNHjeHgwlBqwx2GIdTsviMyYTobB4zO9SPZpv/8= + + + Headers/TiStreamProxy.h + + hash2 + + c7YN41CeYWpTUbGgCJac3804f2qJqB77hsiHscWSsZ0= + + + Headers/TiStylesheet.h + + hash2 + + FgBD4vnh3Obq2Y4mz427a/Ao+ZeIU++C2jniBzP5SI4= + + + Headers/TiTab.h + + hash2 + + c9YFNCLI3AlS0PPpFkDQAT9RNDU8ibyIz+sAx5jGx6U= + + + Headers/TiTabGroup.h + + hash2 + + JiQrnItZXqGIqdZUNlvXeCRnGk45GOH65IsHLIILfJ4= + + + Headers/TiThreading.h + + hash2 + + r84QFsh4330w6vjkP0tLsvp43GkASuWYs1jmWvAn7qs= + + + Headers/TiToolbar.h + + hash2 + + iCheSgJg5KK+2+2Uq0NTakSFy/e9a06wD5L6XZQxOzc= + + + Headers/TiUIView.h + + hash2 + + PlE2vAF1AHjkpCJgrfdQlF1qKvs4i6z9dYs71ec8IIY= + + + Headers/TiUIViewProxy.h + + hash2 + + d9BZi+xctshmpvB8JuhqG1LJ/9HQJk8Q+qZF77WtPuQ= + + + Headers/TiUIWindow.h + + hash2 + + p3KiLavWtIxjmwquDxI7yTLOy5m5q+8RQkDrFdNHNYs= + + + Headers/TiUIWindowProxy.h + + hash2 + + 9IgDrccJbCCcJzpCtT6w72+xPWsga3CzacjLSHjRTtc= + + + Headers/TiUIiOSTransitionAnimationProxy.h + + hash2 + + 4x/qnhOoy6Ng1lAUd3frT2frdXOFDvBM+fkvRlAjK/k= + + + Headers/TiUtils.h + + hash2 + + zytRIuuUGCjU4l2y5eOEp8YLLGpqx9MVMsr7OSnm3DM= + + + Headers/TiViewController.h + + hash2 + + 0PiFgDZFMyBlc1GIpGEb555qbuucSSXnNF8AJCpDHTk= + + + Headers/TiViewProxy.h + + hash2 + + TOnpbAQm2sI3haE9QsQ94FzV1G1sHWJ7Af1ZzL5gTMg= + + + Headers/TiViewTemplate.h + + hash2 + + g9ofTE9NLL1NFuHea2XT4a6cHokGwSxJb3MLAFUjlBM= + + + Headers/TiWindowProxy.h + + hash2 + + cl9lV70SiR8E3UrECHUcsiA+eNkCs9Dj3JGYj/GWuY0= + + + Headers/TitaniumKit.h + + hash2 + + u7HsabYZk2SRAvrhbyFGA3rUGyDHlx7o5VQgbmnX1zU= + + + Headers/UIImage+Alpha.h + + hash2 + + Mx15OvqmixDoyvhOdp9TGf+pvRX27ay0xWA41RfyW/k= + + + Headers/UIImage+Resize.h + + hash2 + + WgGQuO6V6ldbzvmdxnGgkgFz4sEOEjsfoQfE9Jj7FoQ= + + + Headers/UIImage+RoundedCorner.h + + hash2 + + RS4qlinLqbfmdSMLWRaq2GO3miR1r7cGe17EDXJUXbY= + + + Headers/WebFont.h + + hash2 + + uXJVaVnLzjtkmkKmUlYMVnuWHznETZQ9xP+G0qeSBkg= + + + Headers/Webcolor.h + + hash2 + + eC1vfis3CzLG0J1StJpxnzf1PWSayX4spLLxCQ77lVQ= + + + Modules/module.modulemap + + hash2 + + HPZNd7hiVso8vYLa+wHcuEdkDrMl0wm7yVbuvfVQzeU= + + + Resources/Info.plist + + hash2 + + exXhhhuL/skSfqtLQMhZSzIwK/Fd390hWi/eFv0XkZE= + + + + rules + + ^Resources/ + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^Resources/ + + weight + 20 + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/Current b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/Current new file mode 120000 index 0000000..8c7e5a6 --- /dev/null +++ b/iphone/build/Products/Debug-maccatalyst/TitaniumKit.framework/Versions/Current @@ -0,0 +1 @@ +A \ No newline at end of file diff --git a/iphone/build/Products/Debug-maccatalyst/libGuyMcdoooooTipop.a b/iphone/build/Products/Debug-maccatalyst/libGuyMcdoooooTipop.a new file mode 100644 index 0000000..181f866 Binary files /dev/null and b/iphone/build/Products/Debug-maccatalyst/libGuyMcdoooooTipop.a differ diff --git a/iphone/build/Release-iphoneos/libGuyMcdoooooTipop.a b/iphone/build/Release-iphoneos/libGuyMcdoooooTipop.a deleted file mode 100644 index 893a45c..0000000 Binary files a/iphone/build/Release-iphoneos/libGuyMcdoooooTipop.a and /dev/null differ diff --git a/iphone/build/Release-iphonesimulator/libGuyMcdoooooTipop.a b/iphone/build/Release-iphonesimulator/libGuyMcdoooooTipop.a deleted file mode 100644 index 63dfa2e..0000000 Binary files a/iphone/build/Release-iphonesimulator/libGuyMcdoooooTipop.a and /dev/null differ diff --git a/iphone/build/build_iphone.log b/iphone/build/build_iphone.log new file mode 100644 index 0000000..cbd0435 --- /dev/null +++ b/iphone/build/build_iphone.log @@ -0,0 +1,14761 @@ + +13.9.2021, 19:07:39 + +Operating System + Name = macOS + Version = 11.5.2 + Architecture = 64bit + # CPUs = 12 + Memory = 34359738368 + +Node.js + Node.js Version = 14.17.5 + npm Version = 6.14.14 + +Titanium CLI + CLI Version = 5.3.2 + +Titanium SDK + SDK Version = 10.0.2.GAcustom + SDK Path = /Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.2.GAcustom + Target Platform = iphone + +Command + /usr/local/bin/node /usr/local/bin/titanium build --build-only --sdk 10.0.2.GAcustom --platform ios -f + +[DEBUG] Titanium SDK iOS directory: /Users/marcbender/Library/Application Support/Titanium/mobilesdk/osx/10.0.2.GAcustom/iphone +[INFO] Project directory: /Users/marcbender/Downloads/tipop-master-2/iphone +[INFO] Module ID: guy.mcdooooo.tipop +[INFO] Module Type: Static Library (Objective-C) +[DEBUG] Writing module assets file: /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m +[DEBUG] Running: DEVELOPER_DIR=/Applications/Xcode-beta.app/Contents/Developer /Applications/Xcode-beta.app/Contents/Developer/usr/bin/xcodebuild archive -configuration Release -sdk iphonesimulator -archivePath /Users/marcbender/Downloads/tipop-master-2/iphone/build/iphonesimulator.xcarchive -UseNewBuildSystem=YES ONLY_ACTIVE_ARCH=NO SKIP_INSTALL=NO -scheme tipop +[TRACE] [xcode-sim] Command line invocation: +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/usr/bin/xcodebuild archive -configuration Release -sdk iphonesimulator -archivePath /Users/marcbender/Downloads/tipop-master-2/iphone/build/iphonesimulator.xcarchive -UseNewBuildSystem=YES ONLY_ACTIVE_ARCH=NO SKIP_INSTALL=NO -scheme tipop +[TRACE] [xcode-sim] User defaults from command line: +[TRACE] [xcode-sim] IDEArchivePathOverride = /Users/marcbender/Downloads/tipop-master-2/iphone/build/iphonesimulator.xcarchive +[TRACE] [xcode-sim] IDEPackageSupportUseBuiltinSCM = YES +[TRACE] [xcode-sim] UseNewBuildSystem = YES +[TRACE] [xcode-sim] Build settings from command line: +[TRACE] [xcode-sim] ONLY_ACTIVE_ARCH = NO +[TRACE] [xcode-sim] SDKROOT = iphonesimulator15.0 +[TRACE] [xcode-sim] SKIP_INSTALL = NO +[TRACE] [xcode-sim] note: Using new build system +[TRACE] [xcode-sim] note: Planning +[TRACE] [xcode-sim] Analyze workspace +[TRACE] [xcode-sim] Create build description +[TRACE] [xcode-sim] Build description signature: 59dc9dc3d92a39cbc9f50132e395bd85 +[TRACE] [xcode-sim] Build description path: /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/XCBuildData/59dc9dc3d92a39cbc9f50132e395bd85-desc.xcbuild +[TRACE] [xcode-sim] note: Build preparation complete +[TRACE] [xcode-sim] note: Building targets in parallel +[TRACE] [xcode-sim] CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj +[TRACE] [xcode-sim] builtin-create-build-directory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath +[TRACE] [xcode-sim] CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj +[TRACE] [xcode-sim] builtin-create-build-directory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation +[TRACE] [xcode-sim] CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj +[TRACE] [xcode-sim] builtin-create-build-directory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath +[TRACE] [xcode-sim] CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj +[TRACE] [xcode-sim] builtin-create-build-directory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator +[TRACE] [xcode-sim] ProcessXCFramework /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/Frameworks/TitaniumKit.xcframework /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework ios simulator +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj +[TRACE] [xcode-sim] builtin-process-xcframework --xcframework /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/Frameworks/TitaniumKit.xcframework --platform ios --environment simulator --target-path /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator +[TRACE] [xcode-sim] SymLink /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/libGuyMcdoooooTipop.a /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] /bin/ln -sfh /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/libGuyMcdoooooTipop.a +[TRACE] [xcode-sim] WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] write-file /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap +[TRACE] [xcode-sim] WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] write-file /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap +[TRACE] [xcode-sim] WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/all-product-headers.yaml (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] write-file /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/all-product-headers.yaml +[TRACE] [xcode-sim] WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop.hmap (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] write-file /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop.hmap +[TRACE] [xcode-sim] WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] write-file /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap +[TRACE] [xcode-sim] WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] write-file /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap +[TRACE] [xcode-sim] WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] write-file /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap +[TRACE] [xcode-sim] WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] write-file /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList +[TRACE] [xcode-sim] WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop.LinkFileList (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] write-file /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop.LinkFileList +[TRACE] [xcode-sim] ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17774372334488732332/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] Precompile of '/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch' required by '/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm' +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++-header -target arm64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -c /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch -MD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17774372334488732332/GuyMcdoooooTipop_Prefix.pch.d -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17774372334488732332/GuyMcdoooooTipop_Prefix.pch.gch --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17774372334488732332/GuyMcdoooooTipop_Prefix.pch.dia +[TRACE] [xcode-sim] ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/11940179466573400793/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] Precompile of '/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch' required by '/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp' +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++-header -target x86_64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DTI_VERSION\= -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -c /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch -MD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/11940179466573400793/GuyMcdoooooTipop_Prefix.pch.d -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/11940179466573400793/GuyMcdoooooTipop_Prefix.pch.gch --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/11940179466573400793/GuyMcdoooooTipop_Prefix.pch.dia +[TRACE] [xcode-sim] ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6155112011781015967/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] Precompile of '/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch' required by '/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp' +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++-header -target arm64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DTI_VERSION\= -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -c /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch -MD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6155112011781015967/GuyMcdoooooTipop_Prefix.pch.d -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6155112011781015967/GuyMcdoooooTipop_Prefix.pch.gch --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6155112011781015967/GuyMcdoooooTipop_Prefix.pch.dia +[TRACE] [xcode-sim] ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/14382950234394269514/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] Precompile of '/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch' required by '/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm' +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++-header -target x86_64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -c /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch -MD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/14382950234394269514/GuyMcdoooooTipop_Prefix.pch.d -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/14382950234394269514/GuyMcdoooooTipop_Prefix.pch.gch --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/14382950234394269514/GuyMcdoooooTipop_Prefix.pch.dia +[TRACE] [xcode-sim] ProcessPCH /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/11542792979320560672/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] Precompile of '/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch' required by '/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m' +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c-header -target arm64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu99 -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -c /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch -MD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/11542792979320560672/GuyMcdoooooTipop_Prefix.pch.d -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/11542792979320560672/GuyMcdoooooTipop_Prefix.pch.gch --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/11542792979320560672/GuyMcdoooooTipop_Prefix.pch.dia +[TRACE] [xcode-sim] ProcessPCH /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6950363898747532938/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] Precompile of '/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch' required by '/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m' +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c-header -target x86_64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu99 -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -c /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch -MD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6950363898747532938/GuyMcdoooooTipop_Prefix.pch.d -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6950363898747532938/GuyMcdoooooTipop_Prefix.pch.gch --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6950363898747532938/GuyMcdoooooTipop_Prefix.pch.dia +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/TransformationMatrix.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -target x86_64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DTI_VERSION\= -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/11940179466573400793/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/TransformationMatrix.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/TransformationMatrix.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/TransformationMatrix.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/TransformationMatrix.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -target arm64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DTI_VERSION\= -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Releas +[TRACE] [xcode-sim] e-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6155112011781015967/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/TransformationMatrix.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/TransformationMatrix.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/TransformationMatrix.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target x86_64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu99 -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/ +[TRACE] [xcode-sim] Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6950363898747532938/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:17: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiBase.h:8:9: warning: double-quoted include "TiSharedConfig.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiSharedConfig.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiBase.h:627:10: warning: double-quoted include "TiThreading.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #include "TiThreading.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiBase.h:637:10: warning: double-quoted include "TiPublicAPI.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #include "TiPublicAPI.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/APIModule.h:8:9: warning: double-quoted include "ObjcModule.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "ObjcModule.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/APIModule.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/ObjcModule.h:7:9: warning: double-quoted include "Module.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "Module.h" +[TRACE] [xcode-sim] ^~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/APIModule.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/ObjcModule.h:7: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/Module.h:1:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiEvaluator.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/APIModule.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/ObjcModule.h:7: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/Module.h:1: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiEvaluator.h:7:9: warning: double-quoted include "KrollContext.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "KrollContext.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/APIModule.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/ObjcModule.h:8:9: warning: double-quoted include "ObjcProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "ObjcProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/APIModule.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/ObjcModule.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/ObjcProxy.h:7:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiEvaluator.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:21: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/APSHTTPClient.h:21:9: warning: double-quoted include "APSHTTPHelper.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "APSHTTPHelper.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/APSHTTPClient.h:22:9: warning: double-quoted include "APSHTTPPostForm.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "APSHTTPPostForm.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/APSHTTPClient.h:23:9: warning: double-quoted include "APSHTTPRequest.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "APSHTTPRequest.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/APSHTTPClient.h:24:9: warning: double-quoted include "APSHTTPResponse.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "APSHTTPResponse.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:22: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/ImageLoader.h:7:9: warning: double-quoted include "APSHTTPClient.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "APSHTTPClient.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/ImageLoader.h:8:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiDimension.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:22: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/ImageLoader.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiDimension.h:13:9: warning: double-quoted include "TiBase.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiBase.h" +[TRACE] [xcode-sim] ^~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/Ti2DMatrix.h:8:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiProxy.h:7:9: warning: double-quoted include "KrollCallback.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "KrollCallback.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.n +[TRACE] [xcode-sim] oindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiProxy.h:7: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/KrollCallback.h:8:9: warning: double-quoted include "KrollContext.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "KrollContext.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/KrollCallback.h:9:9: warning: double-quoted include "KrollWrapper.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "KrollWrapper.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiProxy.h:7: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/KrollCallback.h:9: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/KrollWrapper.h:8:9: warning: double-quoted include "KrollContext.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "KrollContext.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiProxy.h:8:9: warning: double-quoted include "KrollObject.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "KrollObject.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiProxy.h:9:9: warning: double-quoted include "TiBindingRunLoop.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiBindingRunLoop.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiProxy.h:9: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiBindingRunLoop.h:10:9: warning: double-quoted include "KrollContext.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "KrollContext.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiProxy.h:10:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiEvaluator.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:33: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/Ti3DMatrix.h:8:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:11:9: warning: double-quoted include "KrollBridge.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "KrollBridge.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In fi +[TRACE] [xcode-sim] le included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:11: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/KrollBridge.h:8:9: warning: double-quoted include "Bridge.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "Bridge.h" +[TRACE] [xcode-sim] ^~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:11: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/KrollBridge.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/Bridge.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:11: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/KrollBridge.h:9:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiEvaluator.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:12:9: warning: double-quoted include "TiHost.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiHost.h" +[TRACE] [xcode-sim] ^~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:12: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiHost.h:8:9: warning: double-quoted include "Bridge.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "Bridge.h" +[TRACE] [xcode-sim] ^~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiHost.h:9:9: warning: double-quoted include "Module.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "Module.h" +[TRACE] [xcode-sim] ^~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiHost.h:10:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiEvaluator.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiHost.h:11:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiHost.h:12:9: warning: double-quoted include "TiStylesheet.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiStylesheet.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13:9: warning: double-quoted include "TiRootViewController.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiRootViewController.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8:9: warning: double-quoted include "TiControllerProtocols.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiControllerProtocols.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8:9: warning: double-quoted include "TiViewProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiViewProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:8:9: warning: double-quoted include "TiRect.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiRect.h" +[TRACE] [xcode-sim] ^~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRect.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9:9: warning: double-quoted include "TiUIView.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiUIView.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:7:9: warning: double-quoted include "LayoutConstraint.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "LayoutConstraint.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/ +[TRACE] [xcode-sim] marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/LayoutConstraint.h:8:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiDimension.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/LayoutConstraint.h:9:9: warning: double-quoted include "TiUtils.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiUtils.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUtils.h:8:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiDimension.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUtils.h:25:9: warning: double-quoted include "TiBuffer.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiBuffer.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUtils.h:25: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiBuffer.h:8:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/T +[TRACE] [xcode-sim] itaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUtils.h:26:9: warning: double-quoted include "TiColor.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiColor.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUtils.h:26: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiColor.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUtils.h:27:9: warning: double-quoted include "TiFile.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiFile.h" +[TRACE] [xcode-sim] ^~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUtils.h:27: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiFile.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/ +[TRACE] [xcode-sim] TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUtils.h:28:9: warning: double-quoted include "WebFont.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "WebFont.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:8:9: warning: double-quoted include "TiAnimation.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiAnimation.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiAnimation.h:7:9: warning: double-quoted include "LayoutConstraint.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "LayoutConstraint.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiAnimation.h:8:9: warning: double-quoted include "ListenerEntry.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "ListenerEntry.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiAnimation.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/ListenerEntry.h:7:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiEvaluator.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/ListenerEntry.h:8:9: warning: double-quoted include "TiModule.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiModule.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender +[TRACE] [xcode-sim] /Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiAnimation.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/ListenerEntry.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiModule.h:7:9: warning: double-quoted include "Module.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "Module.h" +[TRACE] [xcode-sim] ^~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiModule.h:8:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiEvaluator.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiModule.h:9:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiModule.h:10:9: warning: double-quoted include "TiUtils.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiUtils.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiAnimation.h:9:9: warning: double-quoted include "TiColor.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiColor.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiAnimation.h:10:9: warning: double-quoted include "TiPoint.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiPoint.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiAnimation.h:10: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiPoint.h:7:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiDimension.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiPoint.h:8:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-includ +[TRACE] [xcode-sim] e-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiAnimation.h:11:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:9:9: warning: double-quoted include "TiGradient.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiGradient.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:9: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiGradient.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiGradient.h:9:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiDimension.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiGradient.h:10:9: warning: double-quoted include "TiPoint.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiPoint.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:10:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModul +[TRACE] [xcode-sim] e.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:10:9: warning: double-quoted include "TiViewTemplate.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiViewTemplate.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:10: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewTemplate.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:35: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiBlob.h:7:9: warning: double-quoted include "ObjcProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "ObjcProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:40: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiFilesystemFileProxy.h:8:9: warning: double-quoted include "TiFile.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiFile.h" +[TRACE] [xcode-sim] ^~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:41: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiFilesystemFileStreamProxy.h:8:9: warning: double-quoted include "TiStreamProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiStreamProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:41: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiFilesystemFileStreamProxy.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiStreamProxy.h:8:9: warning: double-quoted include "KrollCallback.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "KrollCallback.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiStreamProxy.h:9:9: warning: double-quoted include "TiBase.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiBase.h" +[TRACE] [xcode-sim] ^~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiStreamProxy.h:10:9: warning: double-quoted include "TiBuffer.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiBuffer.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiStreamProxy.h:11:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:50: +[TRACE] [xcode-sim] /Users/marcbender/Downloa +[TRACE] [xcode-sim] ds/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiToolbar.h:7:9: warning: double-quoted include "TiViewProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiViewProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:51: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIViewProxy.h:8:9: warning: double-quoted include "TiViewProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiViewProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:52: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIWindow.h:7:9: warning: double-quoted include "TiUIView.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiUIView.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIWindowProxy.h:8:9: warning: double-quoted include "KrollBridge.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "KrollBridge.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIWindowProxy.h:9:9: warning: double-quoted include "TiUIView.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiUIView.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIWindowProxy.h:10:9: warning: double-quoted include "TiViewProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiViewProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11:9: warning: double-quoted include "TiWindowProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiWindowProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiWindowProxy.h:7:9: warning: double-quoted include "TiTab.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiTab.h" +[TRACE] [xcode-sim] ^~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiWindowProxy.h:7: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiTab.h:7:9: warning: double-quoted include "TiTabGroup.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiTabGroup.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiWindowProxy.h:8:9: warning: double-quoted include "TiViewController.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiViewController.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release +[TRACE] [xcode-sim] -iphonesimulator/TitaniumKit.framework/Headers/TiWindowProxy.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewController.h:8:9: warning: double-quoted include "TiControllerProtocols.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiControllerProtocols.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiWindowProxy.h:9:9: warning: double-quoted include "TiViewProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiViewProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiWindowProxy.h:11:9: warning: double-quoted include "TiUIiOSTransitionAnimationProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiUIiOSTransitionAnimationProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiWindowProxy.h:11: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIiOSTransitionAnimationProxy.h:8:9: warning: double-quoted include "TiAnimation.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiAnimation.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIiOSTransitionAnimationProxy.h:9:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:58: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/UIImage+Resize.h:9:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiDimension.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] 98 warnings generated. +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.h:20: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POP.h:18: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.h:19:43: warning: this function declaration is not a prototype [-Wstrict-prototypes] +[TRACE] [xcode-sim] extern CGFloat POPAnimationDragCoefficient(); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] void +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m:100:10: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] [popAnimator basicAnimationWithProxy:proxy andProperties:properties completed:callback]; +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m:116:10: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] [popAnimator springAnimationWithProxy:proxy andProperties:properties completed:callback]; +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m:132:10: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] [popAnimator decayAnimationWithProxy:proxy andProperties:properties completed:callback]; +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m:143:10: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] [popAnimator clearAllAnimations:proxy]; +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] 103 warnings generated. +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target x86_64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu99 -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6950363898747532938/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target x86_64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu99 -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Develo +[TRACE] [xcode-sim] per/SDKs/iPhoneSimulator15.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6950363898747532938/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/FBPOPAnimator.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/FBPOPAnimator.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.h:20: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POP.h:18: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.h:19:43: warning: this function declaration is not a prototype [-Wstrict-prototypes] +[TRACE] [xcode-sim] extern CGFloat POPAnimationDragCoefficient(); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] void +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:89:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPLEFT); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m +[TRACE] [xcode-sim] :19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:91 +[TRACE] [xcode-sim] :33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m +[TRACE] [xcode-sim] :110:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPTOP); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:112:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:136:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPWIDTH); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:138:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:151:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPHEIGHT); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:153:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:166:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPWIDTH); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m +[TRACE] [xcode-sim] : +[TRACE] [xcode-sim] 167:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPHEIGHT); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:170:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:190:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPOPACITY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:192:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:211:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPBACKGROUNDCOLOR); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:213:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:234:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPCOLOR); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:236:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:254:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPTINTCOLOR); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:256:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:275:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPBORDERWIDTH); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:277:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:296:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPBORDERCOLOR); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:298:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:317:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPBORDERRADIUS); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:319:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:351:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPROTATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:353:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:369:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPROTATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:371:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:387:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPROTATEZ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:389:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:407:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPROTATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:408:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPROTATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:409:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPROTATEZ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:411:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:441:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPSCALEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:443:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:457:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPSCALEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:459:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:472:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPSCALEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:473:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPSCALEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:475:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:509:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPTRANSLATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:511:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:526:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPTRANSLATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:528:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:547:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPTRANSLATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:548:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPTRANSLATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:550:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:571:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPTRANSLATEZ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:573:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:599:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPSTROKESTART); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:600:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: +[TRACE] [xcode-sim] expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:619:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPSTROKEEND); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:620:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:639:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPLINEWIDTH); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:640:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:659:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPSTROKECOLOR); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:660:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:679:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPFILLCOLOR); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:680:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:730:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPZINDEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:732:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:751:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPSHADOWCOLOR); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:753:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:772:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPSHADOWOPACITY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:774:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:800:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:801:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:816:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:817:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:835:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:836:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:837:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:890:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPSCROLLVIEWCONTETNOFFSET); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:891:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1006:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPLEFT); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1008:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1027:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPTOP); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1029:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1053:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPWIDTH); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1055:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1068:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPHEIGHT); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1070:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1083:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPWIDTH); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1084:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPHEIGHT); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m: +[TRACE] [xcode-sim] 19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1087:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1108:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPOPACITY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1110:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1129:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPBACKGROUNDCOLOR); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1131:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1152:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPCOLOR); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1154:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1173:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPTINTCOLOR); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1175:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1194:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPBORDERWIDTH); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1196:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1215:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPBORDERCOLOR); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1217:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1236:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPBORDERRADIUS); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1238:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1270:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPROTATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1272:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1288:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPROTATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1290:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m +[TRACE] [xcode-sim] :21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1306:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPROTATEZ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1308:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1326:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPROTATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1327:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPROTATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1328:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPROTATEZ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1330:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m +[TRACE] [xcode-sim] :21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1360:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPSCALEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1362:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1377:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPSCALEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1379:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1397:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPSCALEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1398:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPSCALEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1400:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1431:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPTRANSLATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1433:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1448:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPTRANSLATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1450:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1468:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPTRANSLATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1469:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPTRANSLATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1471:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1495:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPTRANSLATEZ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1497:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1523:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPSTROKESTART); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1524:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1543:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPSTROKEEND); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1544:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1563:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPLINEWIDTH); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1564:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1583:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPSTROKECOLOR); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1584:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1603:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPFILLCOLOR); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1604:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1661:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPZINDEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1663:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1682:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPSHADOWCOLOR); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1684:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1702:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPSHADOWOPACITY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1704:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1730:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1731:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1746:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1747:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1765:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1766:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1767:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1817:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPSCROLLVIEWCONTETNOFFSET); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1818:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1920:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPLEFT); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1922:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1948:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPTOP); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1950:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1981:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPWIDTH); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1983:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2001:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPHEIGHT); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2003:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2023:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPWIDTH); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2024:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPHEIGHT); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2026:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2038:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPWIDTH); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2039:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPHEIGHT); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2041:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2053:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPWIDTH); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2054:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPHEIGHT); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2057:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2080:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPOPACITY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2082:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2102:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPBORDERWIDTH); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2104:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2124:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPBORDERRADIUS); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2126:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2159:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPROTATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2161:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2178:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPROTATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2180:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2197:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPROTATEZ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2199:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2218:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPROTATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2219:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPROTATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2220:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPROTATEZ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2222:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2253:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPSCALEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2255:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2271:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPSCALEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2273:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2292:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPSCALEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2293:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPSCALEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2295:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2327:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPTRANSLATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2329:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2345:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPTRANSLATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2347:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2366:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPTRANSLATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2367:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPTRANSLATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2369:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2393:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPTRANSLATEZ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2395:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2421:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPSTROKESTART); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2422:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2441:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPSTROKEEND); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2442:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2461:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPLINEWIDTH); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2462:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2520:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPSHADOWOPACITY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2522:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2548:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2549:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2564:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2565:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2583:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2584:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2585:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] 217 warnings generated. +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target x86_64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu99 -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6950363898747532938/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu99 -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/11542792979320560672/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu99 -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSi +[TRACE] [xcode-sim] mulator15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/11542792979320560672/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu99 -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release- +[TRACE] [xcode-sim] iphonesimulator/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/11542792979320560672/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.o +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:17: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiBase.h:8:9: warning: double-quoted include "TiSharedConfig.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiSharedConfig.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiBase.h:627:10: warning: double-quoted include "TiThreading.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #include "TiThreading.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiBase.h:637:10: warning: double-quoted include "TiPublicAPI.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #include "TiPublicAPI.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/APIModule.h:8:9: warning: double-quoted include "ObjcModule.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "ObjcModule.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/APIModule.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/ObjcModule.h:7:9: warning: double-quoted include "Module.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "Module.h" +[TRACE] [xcode-sim] ^~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/APIModule.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/ObjcModule.h:7: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/Module.h:1:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiEvaluator.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/APIModule.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/ObjcModule.h:7: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/Module.h:1: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiEvaluator.h:7:9: warning: double-quoted include "KrollContext.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "KrollContext.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/Titanium +[TRACE] [xcode-sim] Kit.framework/Headers/APIModule.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/ObjcModule.h:8:9: warning: double-quoted include "ObjcProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "ObjcProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/APIModule.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/ObjcModule.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/ObjcProxy.h:7:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiEvaluator.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:21: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/APSHTTPClient.h:21:9: warning: double-quoted include "APSHTTPHelper.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "APSHTTPHelper.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/APSHTTPClient.h:22:9: warning: double-quoted include "APSHTTPPostForm.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "APSHTTPPostForm.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/APSHTTPClient.h:23:9: warning: double-quoted include "APSHTTPRequest.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "APSHTTPRequest.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/APSHTTPClient.h:24:9: warning: double-quoted include "APSHTTPResponse.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "APSHTTPResponse.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:22: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/ImageLoader.h:7:9: warning: double-quoted include "APSHTTPClient.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "APSHTTPClient.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/ImageLoader.h:8:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiDimension.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:22: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/ImageLoader.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiDimension.h:13:9: warning: double-quoted include "TiBase.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiBase.h" +[TRACE] [xcode-sim] ^~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/Ti2DMatrix.h:8:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiProxy.h:7:9: warning: double-quoted include "KrollCallback.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "KrollCallback.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates +[TRACE] [xcode-sim] .noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiProxy.h:7: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/KrollCallback.h:8:9: warning: double-quoted include "KrollContext.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "KrollContext.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/KrollCallback.h:9:9: warning: double-quoted include "KrollWrapper.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "KrollWrapper.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiProxy.h:7: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/KrollCallback.h:9: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/KrollWrapper.h:8:9: warning: double-quoted include "KrollContext.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "KrollContext.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiProxy.h:8:9: warning: double-quoted include "KrollObject.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "KrollObject.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiProxy.h:9:9: warning: double-quoted include "TiBindingRunLoop.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiBindingRunLoop.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiProxy.h:9: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiBindingRunLoop.h:10:9: warning: double-quoted include "KrollContext.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "KrollContext.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiProxy.h:10:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiEvaluator.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:33: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/Ti3DMatrix.h:8:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:11:9: warning: double-quoted include "KrollBridge.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "KrollBridge.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:11: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/KrollBridge.h:8:9: warning: double-quoted include "Bridge.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "Bridge.h" +[TRACE] [xcode-sim] ^~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:11: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/KrollBridge.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/Bridge.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:11: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/KrollBridge.h:9:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiEvaluator.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:12:9: warning: double-quoted include "TiHost.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiHost.h" +[TRACE] [xcode-sim] ^~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:12: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiHost.h:8:9: warning: double-quoted include "Bridge.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "Bridge.h" +[TRACE] [xcode-sim] ^~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiHost.h:9:9: warning: double-quoted include "Module.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "Module.h" +[TRACE] [xcode-sim] ^~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiHost.h:10:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiEvaluator.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiHost.h:11:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiHost.h:12:9: warning: double-quoted include "TiStylesheet.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiStylesheet.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13:9: warning: double-quoted include "TiRootViewController.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiRootViewController.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] /Users/marcbender/Downloa +[TRACE] [xcode-sim] ds/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8:9: warning: double-quoted include "TiControllerProtocols.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiControllerProtocols.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8:9: warning: double-quoted include "TiViewProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiViewProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:8:9: warning: double-quoted include "TiRect.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiRect.h" +[TRACE] [xcode-sim] ^~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRect.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9:9: warning: double-quoted include "TiUIView.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiUIView.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:7:9: warning: double-qu +[TRACE] [xcode-sim] oted include "LayoutConstraint.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "LayoutConstraint.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/LayoutConstraint.h:8:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiDimension.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/LayoutConstraint.h:9:9: warning: double-quoted include "TiUtils.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiUtils.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUtils.h:8:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiDimension.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUtils.h:25:9: warning: double-quoted include "TiBuffer.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiBuffer.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUtils.h:25: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiBuffer.h:8:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framew +[TRACE] [xcode-sim] ork/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUtils.h:26:9: warning: double-quoted include "TiColor.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiColor.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUtils.h:26: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiColor.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUtils.h:27:9: warning: double-quoted include "TiFile.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiFile.h" +[TRACE] [xcode-sim] ^~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUtils.h:27: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiFile.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule. +[TRACE] [xcode-sim] h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUtils.h:28:9: warning: double-quoted include "WebFont.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "WebFont.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:8:9: warning: double-quoted include "TiAnimation.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiAnimation.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiAnimation.h:7:9: warning: double-quoted include "LayoutConstraint.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "LayoutConstraint.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiAnimation.h:8:9: warning: double-quoted include "ListenerEntry.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "ListenerEntry.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiAnimation.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/ListenerEntry.h:7:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiEvaluator.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/ +[TRACE] [xcode-sim] iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/ListenerEntry.h:8:9: warning: double-quoted include "TiModule.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiModule.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiAnimation.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/ListenerEntry.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiModule.h:7:9: warning: double-quoted include "Module.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "Module.h" +[TRACE] [xcode-sim] ^~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiModule.h:8:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiEvaluator.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiModule.h:9:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiModule.h:10:9: warning: double-quoted include "TiUtils.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiUtils.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiAnimation.h:9:9: warning: double-quoted include "TiColor.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiColor.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiAnimation.h:10:9: warning: double-quoted include "TiPoint.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiPoint.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiAnimation.h:10: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiPoint.h:7:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed in +[TRACE] [xcode-sim] stead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiDimension.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiPoint.h:8:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiAnimation.h:11:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:9:9: warning: double-quoted include "TiGradient.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiGradient.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:9: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiGradient.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiGradient.h:9:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiDimension.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiGradient.h:10:9: warning: double-quoted include "TiPoint.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiPoint.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediate +[TRACE] [xcode-sim] s/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIView.h:10:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:10:9: warning: double-quoted include "TiViewTemplate.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiViewTemplate.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewProxy.h:10: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewTemplate.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:35: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiBlob.h:7:9: warning: double-quoted include "ObjcProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "ObjcProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:40: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiFilesystemFileProxy.h:8:9: warning: double-quoted include "TiFile.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiFile.h" +[TRACE] [xcode-sim] ^~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:41: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiFilesystemFileStreamProxy.h:8:9: warning: double-quoted include "TiStreamProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiStreamProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:41: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiFilesystemFileStreamProxy.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiStreamProxy.h:8:9: warning: double-quoted include "KrollCallback.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "KrollCallback.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiStreamProxy.h:9:9: warning: double-quoted include "TiBase.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiBase.h" +[TRACE] [xcode-sim] ^~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiStreamProxy.h:10:9: warning: double-quoted include "TiBuffer.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiBuffer.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiStreamProxy.h:11:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:50: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiToolbar.h:7:9: warning: double-quoted include "TiViewProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiViewProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:51: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIViewProxy.h:8:9: warning: double-quoted include "TiViewProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiViewProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:52: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIWindow.h:7:9: warning: double-quoted include "TiUIView.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiUIView.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIWindowProxy.h:8:9: warning: double-quoted include "KrollBridge.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "KrollBridge.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIWindowProxy.h:9:9: warning: double-quoted include "TiUIView.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiUIView.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIWindowProxy.h:10:9: warning: double-quoted include "TiViewProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiViewProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11:9: warning: double-quoted include "TiWindowProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiWindowProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiWindowProxy.h:7:9: warning: double-quoted include "TiTab.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiTab.h" +[TRACE] [xcode-sim] ^~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiWindowProxy.h:7: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiTab.h:7:9: warning: double-quoted include "TiTabGroup.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiTabGroup.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiWindowProxy.h:8:9: warning: double-quoted include "TiViewController.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiViewController.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iph +[TRACE] [xcode-sim] onesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiWindowProxy.h:8: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiViewController.h:8:9: warning: double-quoted include "TiControllerProtocols.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiControllerProtocols.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiWindowProxy.h:9:9: warning: double-quoted include "TiViewProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiViewProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiWindowProxy.h:11:9: warning: double-quoted include "TiUIiOSTransitionAnimationProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiUIiOSTransitionAnimationProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiWindowProxy.h:11: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIiOSTransitionAnimationProxy.h:8:9: warning: double-quoted include "TiAnimation.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiAnimation.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TiUIiOSTransitionAnimationProxy.h:9:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiProxy.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-sim] In file included from :1: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/TitaniumKit.h:58: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/TitaniumKit.framework/Headers/UIImage+Resize.h:9:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-sim] #import "TiDimension.h" +[TRACE] [xcode-sim] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] 98 warnings generated. +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m:8: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.h:20: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POP.h:18: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.h:19:43: warning: this function declaration is not a prototype [-Wstrict-prototypes] +[TRACE] [xcode-sim] extern CGFloat POPAnimationDragCoefficient(); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] void +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m:100:10: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] [popAnimator basicAnimationWithProxy:proxy andProperties:properties completed:callback]; +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m:116:10: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] [popAnimator springAnimationWithProxy:proxy andProperties:properties completed:callback]; +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m:132:10: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] [popAnimator decayAnimationWithProxy:proxy andProperties:properties completed:callback]; +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m:143:10: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] [popAnimator clearAllAnimations:proxy]; +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] 103 warnings generated. +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/FBPOPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu99 -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/11542792979320560672/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/FBPOPAnimator.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/FBPOPAnimator.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/FBPOPAnimator.o +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:9: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.h:20: +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POP.h:18: +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.h:19:43: warning: this function declaration is not a prototype [-Wstrict-prototypes] +[TRACE] [xcode-sim] extern CGFloat POPAnimationDragCoefficient(); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] void +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:89:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPLEFT); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:91:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:110:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPTOP); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:112:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:136:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPWIDTH); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:138:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:151:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPHEIGHT); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:153:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:166:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPWIDTH); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:167:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPHEIGHT); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:170:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:190:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPOPACITY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:192:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:211:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPBACKGROUNDCOLOR); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:213:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:234:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPCOLOR); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:236:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:254:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPTINTCOLOR); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:256:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:275:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPBORDERWIDTH); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:277:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:296:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPBORDERCOLOR); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:298:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:317:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPBORDERRADIUS); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:319:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:351:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPROTATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:353:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:369:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPROTATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:371:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:387:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPROTATEZ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:389:41 +[TRACE] [xcode-sim] : warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:407:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPROTATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:408:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPROTATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:409:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPROTATEZ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:411:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:441:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPSCALEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:443:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:457:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPSCALEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:459:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:472:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPSCALEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:473:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPSCALEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:475:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:509:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPTRANSLATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:511:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intende +[TRACE] [xcode-sim] d behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:526:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPTRANSLATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:528:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:547:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPTRANSLATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:548:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPTRANSLATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:550:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:571:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPTRANSLATEZ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:573:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:599:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPSTROKESTART); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:600:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:619:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPSTROKEEND); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:620:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:639:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPLINEWIDTH); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:640:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marc +[TRACE] [xcode-sim] bender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:659:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPSTROKECOLOR); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:660:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:679:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPFILLCOLOR); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:680:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:730:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPZINDEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:732:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:751:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPSHADOWCOLOR); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:753:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:772:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPSHADOWOPACITY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:774:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:800:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:801:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:816:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:817:41: warning: blo +[TRACE] [xcode-sim] ck implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:835:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:836:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:837:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:890:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(basicMask, TIPOPSCROLLVIEWCONTETNOFFSET); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:891:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(basicMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1006:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPLEFT); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1008:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1027:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPTOP); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1029:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1053:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPWIDTH); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1055:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1068:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPHEIGHT); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1070:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1083:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPWIDTH); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1084:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPHEIGHT); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1087:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1108:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPOPACITY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1110:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1129:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPBACKGROUNDCOLOR); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1131:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1152:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPCOLOR); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1154:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1173:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPTINTCOLOR); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1175:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1194:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPBORDERWIDTH); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1196:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1215:36: warning: block implicitly retains 'self'; explicitly mention ' +[TRACE] [xcode-sim] self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPBORDERCOLOR); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1217:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1236:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPBORDERRADIUS); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1238:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1270:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPROTATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1272:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1288:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPROTATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1290:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1306:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPROTATEZ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1308:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1326:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPROTATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1327:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPROTATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1328:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPROTATEZ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1330:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1360:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPSCALEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1362:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1377:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPSCALEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1379:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1397:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPSCALEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1398:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPSCALEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1400:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1431:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPTRANSLATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1433:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1448:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPTRANSLATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1450:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1468:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPTRANSLATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1469:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPTRANSLATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-m +[TRACE] [xcode-sim] aster-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1471:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1495:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPTRANSLATEZ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1497:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1523:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPSTROKESTART); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1524:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1543:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPSTROKEEND); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1544:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1563:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPLINEWIDTH); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1564:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1583:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPSTROKECOLOR); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1584:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1603:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPFILLCOLOR); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1604:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/ +[TRACE] [xcode-sim] iphone/Classes/FBPOPAnimator.m:1661:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPZINDEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1663:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1682:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPSHADOWCOLOR); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1684:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1702:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPSHADOWOPACITY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1704:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1730:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1731:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1746:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1747:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1765:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1766:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1767:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1817:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(springMask, TIPOP +[TRACE] [xcode-sim] SCROLLVIEWCONTETNOFFSET); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1818:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(springMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1920:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPLEFT); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1922:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1948:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPTOP); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1950:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1981:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPWIDTH); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1983:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2001:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPHEIGHT); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2003:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2023:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPWIDTH); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2024:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPHEIGHT); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2026:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2038:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPWIDTH); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m: +[TRACE] [xcode-sim] 19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2039:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPHEIGHT); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2041:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2053:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPWIDTH); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2054:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPHEIGHT); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2057:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2080:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPOPACITY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2082:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2102:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPBORDERWIDTH); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2104:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2124:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPBORDERRADIUS); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2126:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2159:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPROTATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2161:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2178:44 +[TRACE] [xcode-sim] : warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPROTATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2180:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2197:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPROTATEZ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2199:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2218:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPROTATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2219:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPROTATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2220:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPROTATEZ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2222:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2253:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPSCALEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2255:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2271:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPSCALEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2273:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2292:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPSCALEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2293:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this +[TRACE] [xcode-sim] is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPSCALEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2295:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2327:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPTRANSLATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2329:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2345:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPTRANSLATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2347:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2366:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPTRANSLATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2367:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPTRANSLATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2369:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2393:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPTRANSLATEZ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2395:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2421:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPSTROKESTART); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2422:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2441:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPSTROKEEND); +[TRACE] [xcode-sim] +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2442:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2461:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPLINEWIDTH); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2462:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2520:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPSHADOWOPACITY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2522:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2548:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2549:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2564:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2565:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2583:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2584:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] unsetAnimationMask(decayMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-sim] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2585:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-sim] finishAnimation(decayMask, callback); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] self-> +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-sim] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] 217 warnings generated. +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/14382950234394269514/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPVector.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementa +[TRACE] [xcode-sim] tions -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/14382950234394269514/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPVector.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPVector.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPVector.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPLayerExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/ +[TRACE] [xcode-sim] iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/14382950234394269514/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPLayerExtras.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPLayerExtras.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPLayerExtras.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPMath.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/14382950234394269514/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPMath.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPMath.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPMath.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPGeometry.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/14382950234394269514/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPGeometry.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPGeometry.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPGeometry.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VER +[TRACE] [xcode-sim] SION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/14382950234394269514/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPSpringAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPSpringAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-m +[TRACE] [xcode-sim] aster-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/14382950234394269514/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPCustomAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPCustomAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPCGUtils.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/14382950234394269514/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPCGUtils.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPCGUtils.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPCGUtils.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/14382950234394269514/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPDecayAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPDecayAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementati +[TRACE] [xcode-sim] ons -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/14382950234394269514/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPBasicAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPBasicAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/D +[TRACE] [xcode-sim] ownloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/14382950234394269514/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimator.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimator.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimator.o +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:101:3: warning: 'OSSpinLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLock _lock; +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:79:17: note: 'OSSpinLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] typedef int32_t OSSpinLock OSSPINLOCK_DEPRECATED_REPLACE_WITH(os_unfair_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:381:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:388:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:407:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:422:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:436:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:442:5: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnl +[TRACE] [xcode-sim] ock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:448:5: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:461:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:467:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:545:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:551:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:567:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:581:7: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:589:7: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair +[TRACE] [xcode-sim] _lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:608:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:617:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:623:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:635:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:648:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:664:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:690:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:705:3: warning: 'OSSpinL +[TRACE] [xcode-sim] ockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:711:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:718:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:725:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:775:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:786:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:797:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:803:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master- +[TRACE] [xcode-sim] 2/iphone/Classes/pop/POPAnimator.mm:267:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&self->_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:286:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&self->_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:303:5: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&self->_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:315:5: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&self->_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] 34 warnings generated. +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk +[TRACE] [xcode-sim] /osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/14382950234394269514/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationTracer.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationTracer.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/14382950234394269514/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/14382950234394269514/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationExtras.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationExtras.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implem +[TRACE] [xcode-sim] entations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/14382950234394269514/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationEvent.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationEvent.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marc +[TRACE] [xcode-sim] bender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/14382950234394269514/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimation.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/14382950234394269514/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPVector.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17774372334488732332/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPVector.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPVector.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPVector.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPSpringAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPE +[TRACE] [xcode-sim] S\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17774372334488732332/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPSpringAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPSpringAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPSpringAnimation.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPPropertyAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/ti +[TRACE] [xcode-sim] pop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17774372334488732332/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPPropertyAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPPropertyAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPPropertyAnimation.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPMath.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17774372334488732332/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPMath.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPMath.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPMath.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPLayerExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17774372334488732332/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPLayerExtras.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPLayerExtras.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPLayerExtras.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPGeometry.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DI +[TRACE] [xcode-sim] SPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17774372334488732332/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPGeometry.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPGeometry.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPGeometry.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPDecayAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBu +[TRACE] [xcode-sim] ildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17774372334488732332/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPDecayAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPDecayAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPDecayAnimation.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPCustomAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17774372334488732332/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPCustomAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPCustomAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPCustomAnimation.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPCGUtils.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17774372334488732332/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPCGUtils.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPCGUtils.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPCGUtils.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPBasicAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTO +[TRACE] [xcode-sim] TYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17774372334488732332/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPBasicAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPBasicAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPBasicAnimation.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBu +[TRACE] [xcode-sim] ildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17774372334488732332/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPAnimator.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPAnimator.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPAnimator.o +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:101:3: warning: 'OSSpinLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLock _lock; +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:79:17: note: 'OSSpinLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] typedef int32_t OSSpinLock OSSPINLOCK_DEPRECATED_REPLACE_WITH(os_unfair_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:381:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:388:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:407:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:422:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:436:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:442:5: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/PO +[TRACE] [xcode-sim] PAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:448:5: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:461:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:467:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:545:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:551:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:567:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:581:7: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:589:7: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] I +[TRACE] [xcode-sim] n file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:608:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:617:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:623:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:635:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:648:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:664:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:690:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:705:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead +[TRACE] [xcode-sim] [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:711:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:718:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:725:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:775:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:786:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:797:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:803:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:267:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in i +[TRACE] [xcode-sim] OS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&self->_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:286:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&self->_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:303:5: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockLock(&self->_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:315:5: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-sim] OSSpinLockUnlock(&self->_lock); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-sim] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-sim] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-sim] ^ +[TRACE] [xcode-sim] 34 warnings generated. +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPAnimationTracer.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/ +[TRACE] [xcode-sim] marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17774372334488732332/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPAnimationTracer.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPAnimationTracer.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPAnimationTracer.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPAnimationRuntime.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17774372334488732332/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPAnimationRuntime.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPAnimationRuntime.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPAnimationRuntime.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPAnimationExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17774372334488732332/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPAnimationExtras.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPAnimationExtras.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPAnimationExtras.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPAnimationEvent.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-ext +[TRACE] [xcode-sim] ensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17774372334488732332/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPAnimationEvent.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPAnimationEvent.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPAnimationEvent.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates +[TRACE] [xcode-sim] .noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17774372334488732332/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPAnimation.o +[TRACE] [xcode-sim] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPAnimatableProperty.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export LANG\=en_US.US-ASCII +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17774372334488732332/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPAnimatableProperty.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPAnimatableProperty.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/POPAnimatableProperty.o +[TRACE] [xcode-sim] Libtool /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/Binary/libGuyMcdoooooTipop.a normal arm64 (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export IPHONEOS_DEPLOYMENT_TARGET\=12.1 +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool -static -arch_only arm64 -D -syslibroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -L/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -filelist /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop.LinkFileList -framework TitaniumKit -framework Foundation -framework SceneKit -dependency_info /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop_libtool_dependency_info.dat -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/Binary/libGuyMcdoooooTipop.a +[TRACE] [xcode-sim] Libtool /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/Binary/libGuyMcdoooooTipop.a normal x86_64 (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] export IPHONEOS_DEPLOYMENT_TARGET\=12.1 +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool -static -arch_only x86_64 -D -syslibroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk -L/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphonesimulator -filelist /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList -framework TitaniumKit -framework Foundation -framework SceneKit -dependency_info /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop_libtool_dependency_info.dat -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/Binary/libGuyMcdoooooTipop.a +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: file: /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPGeometry.o has no symbols +[TRACE] [xcode-sim] CreateUniversalBinary /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a normal arm64\ x86_64 (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool -static /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/arm64/Binary/libGuyMcdoooooTipop.a /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/Binary/libGuyMcdoooooTipop.a -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: for architecture: x86_64 file: /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/Binary/libGuyMcdoooooTipop.a(POPGeometry.o) has no symbols +[TRACE] [xcode-sim] Strip /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -S -T /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a +[TRACE] [xcode-sim] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip: warning: input object file already stripped: /Users/marcbender/Downloads/tipop-master-2/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a(POPGeometry.o) (for architecture x86_64) +[TRACE] [xcode-sim] SetOwnerAndGroup marcbender:staff /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] /usr/sbin/chown -RH marcbender:staff /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a +[TRACE] [xcode-sim] SetMode u+w,go-w,a+rX /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a (in target 'tipop' from project 'tipop') +[TRACE] [xcode-sim] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-sim] /bin/chmod -RH u+w,go-w,a+rX /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a +[TRACE] [xcode-sim] ** ARCHIVE SUCCEEDED ** +[DEBUG] Running: DEVELOPER_DIR=/Applications/Xcode-beta.app/Contents/Developer /Applications/Xcode-beta.app/Contents/Developer/usr/bin/xcodebuild archive -configuration Release -sdk iphoneos -archivePath /Users/marcbender/Downloads/tipop-master-2/iphone/build/iphoneos.xcarchive -UseNewBuildSystem=YES ONLY_ACTIVE_ARCH=NO SKIP_INSTALL=NO -scheme tipop +[TRACE] [xcode-dist] Command line invocation: +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/usr/bin/xcodebuild archive -configuration Release -sdk iphoneos -archivePath /Users/marcbender/Downloads/tipop-master-2/iphone/build/iphoneos.xcarchive -UseNewBuildSystem=YES ONLY_ACTIVE_ARCH=NO SKIP_INSTALL=NO -scheme tipop +[TRACE] [xcode-dist] User defaults from command line: +[TRACE] [xcode-dist] IDEArchivePathOverride = /Users/marcbender/Downloads/tipop-master-2/iphone/build/iphoneos.xcarchive +[TRACE] [xcode-dist] IDEPackageSupportUseBuiltinSCM = YES +[TRACE] [xcode-dist] UseNewBuildSystem = YES +[TRACE] [xcode-dist] Build settings from command line: +[TRACE] [xcode-dist] ONLY_ACTIVE_ARCH = NO +[TRACE] [xcode-dist] SDKROOT = iphoneos15.0 +[TRACE] [xcode-dist] SKIP_INSTALL = NO +[TRACE] [xcode-dist] note: Using new build system +[TRACE] [xcode-dist] note: Planning +[TRACE] [xcode-dist] Analyze workspace +[TRACE] [xcode-dist] Create build description +[TRACE] [xcode-dist] Build description signature: bc08bb2abd562a2a6159b66a9d985f29 +[TRACE] [xcode-dist] Build description path: /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/XCBuildData/bc08bb2abd562a2a6159b66a9d985f29-desc.xcbuild +[TRACE] [xcode-dist] note: Build preparation complete +[TRACE] [xcode-dist] note: Building targets in parallel +[TRACE] [xcode-dist] CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj +[TRACE] [xcode-dist] builtin-create-build-directory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation +[TRACE] [xcode-dist] CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj +[TRACE] [xcode-dist] builtin-create-build-directory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath +[TRACE] [xcode-dist] CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj +[TRACE] [xcode-dist] builtin-create-build-directory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath +[TRACE] [xcode-dist] CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj +[TRACE] [xcode-dist] builtin-create-build-directory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos +[TRACE] [xcode-dist] ProcessXCFramework /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/Frameworks/TitaniumKit.xcframework /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework ios +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj +[TRACE] [xcode-dist] builtin-process-xcframework --xcframework /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/Frameworks/TitaniumKit.xcframework --platform ios --target-path /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos +[TRACE] [xcode-dist] SymLink /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/libGuyMcdoooooTipop.a /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] /bin/ln -sfh /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/libGuyMcdoooooTipop.a +[TRACE] [xcode-dist] WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop.hmap (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] write-file /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop.hmap +[TRACE] [xcode-dist] WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] write-file /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap +[TRACE] [xcode-dist] WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] write-file /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap +[TRACE] [xcode-dist] WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] write-file /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap +[TRACE] [xcode-dist] WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] write-file /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap +[TRACE] [xcode-dist] WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] write-file /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap +[TRACE] [xcode-dist] WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/all-product-headers.yaml (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] write-file /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/all-product-headers.yaml +[TRACE] [xcode-dist] WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop.LinkFileList (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] write-file /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop.LinkFileList +[TRACE] [xcode-dist] ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12166903564878443572/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] Precompile of '/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch' required by '/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm' +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++-header -target arm64-apple-ios12.1 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos -DTI_POST_1_2 -c /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch -MD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12166903564878443572/GuyMcdoooooTipop_Prefix.pch.d -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12166903564878443572/GuyMcdoooooTipop_Prefix.pch.gch --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12166903564878443572/GuyMcdoooooTipop_Prefix.pch.dia +[TRACE] [xcode-dist] ProcessPCH /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17043467966667371092/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] Precompile of '/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch' required by '/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m' +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c-header -target arm64-apple-ios12.1 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu99 -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos -DTI_POST_1_2 -c /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch -MD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17043467966667371092/GuyMcdoooooTipop_Prefix.pch.d -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17043467966667371092/GuyMcdoooooTipop_Prefix.pch.gch --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17043467966667371092/GuyMcdoooooTipop_Prefix.pch.dia +[TRACE] [xcode-dist] ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/18286439846590320995/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] Precompile of '/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch' required by '/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp' +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++-header -target arm64-apple-ios12.1 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DTI_VERSION\= -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos -DTI_POST_1_2 -c /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch -MD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/18286439846590320995/GuyMcdoooooTipop_Prefix.pch.d -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/18286439846590320995/GuyMcdoooooTipop_Prefix.pch.gch --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/18286439846590320995/GuyMcdoooooTipop_Prefix.pch.dia +[TRACE] [xcode-dist] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/TransformationMatrix.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] export LANG\=en_US.US-ASCII +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -target arm64-apple-ios12.1 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DTI_VERSION\= -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/18286439846590320995/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/TransformationMatrix.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/TransformationMatrix.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/TransformationMatrix.o +[TRACE] [xcode-dist] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPMath.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] export LANG\=en_US.US-ASCII +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode -iquote /Users/marcbende +[TRACE] [xcode-dist] r/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12166903564878443572/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPMath.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPMath.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPMath.o +[TRACE] [xcode-dist] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationTracer.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] export LANG\=en_US.US-ASCII +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos -DTI_POST_1_2 -include /Users/marcbender/Down +[TRACE] [xcode-dist] loads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12166903564878443572/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationTracer.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationTracer.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationTracer.o +[TRACE] [xcode-dist] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] export LANG\=en_US.US-ASCII +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12166903564878443572/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationExtras.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationExtras.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationExtras.o +[TRACE] [xcode-dist] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPBasicAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] export LANG\=en_US.US-ASCII +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12166903564878443572/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPBasicAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPBasicAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPBasicAnimation.o +[TRACE] [xcode-dist] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPCustomAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] export LANG\=en_US.US-ASCII +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneO +[TRACE] [xcode-dist] S15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12166903564878443572/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPCustomAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPCustomAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPCustomAnimation.o +[TRACE] [xcode-dist] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPDecayAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] export LANG\=en_US.US-ASCII +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/ +[TRACE] [xcode-dist] iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12166903564878443572/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPDecayAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPDecayAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPDecayAnimation.o +[TRACE] [xcode-dist] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPLayerExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] export LANG\=en_US.US-ASCII +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12166903564878443572/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPLayerExtras.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPLayerExtras.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPLayerExtras.o +[TRACE] [xcode-dist] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPSpringAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] export LANG\=en_US.US-ASCII +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12166903564878443572/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPSpringAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPSpringAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPSpringAnimation.o +[TRACE] [xcode-dist] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] export LANG\=en_US.US-ASCII +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0. +[TRACE] [xcode-dist] sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12166903564878443572/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimation.o +[TRACE] [xcode-dist] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPPropertyAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] export LANG\=en_US.US-ASCII +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediat +[TRACE] [xcode-dist] es.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12166903564878443572/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPPropertyAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPPropertyAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPPropertyAnimation.o +[TRACE] [xcode-dist] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPVector.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] export LANG\=en_US.US-ASCII +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12166903564878443572/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPVector.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPVector.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPVector.o +[TRACE] [xcode-dist] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPGeometry.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] export LANG\=en_US.US-ASCII +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12166903564878443572/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPGeometry.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPGeometry.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPGeometry.o +[TRACE] [xcode-dist] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPCGUtils.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] export LANG\=en_US.US-ASCII +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated- +[TRACE] [xcode-dist] declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12166903564878443572/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPCGUtils.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPCGUtils.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPCGUtils.o +[TRACE] [xcode-dist] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] export LANG\=en_US.US-ASCII +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.b +[TRACE] [xcode-dist] uild/Release-iphoneos/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12166903564878443572/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimator.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimator.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimator.o +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:101:3: warning: 'OSSpinLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLock _lock; +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:79:17: note: 'OSSpinLock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] typedef int32_t OSSpinLock OSSPINLOCK_DEPRECATED_REPLACE_WITH(os_unfair_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:381:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockLock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:388:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:407:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockLock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:422:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:436:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockLock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:442:5: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:448:5 +[TRACE] [xcode-dist] : warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:461:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockLock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:467:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:545:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockLock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:551:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:567:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockLock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:581:7: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:589:7: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockLock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:608:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/ip +[TRACE] [xcode-dist] hone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:617:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockLock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:623:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:635:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockLock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:648:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:664:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockLock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:690:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:705:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockLock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:711:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platfor +[TRACE] [xcode-dist] ms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:718:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockLock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:725:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:775:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockLock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:786:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:797:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockLock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:803:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:267:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockLock(&self->_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:286:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockUnlock(&self->_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockU +[TRACE] [xcode-dist] nlock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:303:5: warning: 'OSSpinLockLock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockLock(&self->_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:315:5: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in iOS 10.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-dist] OSSpinLockUnlock(&self->_lock); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:20: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/objc-auto.h:36: +[TRACE] [xcode-dist] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-dist] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] 34 warnings generated. +[TRACE] [xcode-dist] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationRuntime.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] export LANG\=en_US.US-ASCII +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12166903564878443572/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationRuntime.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationRuntime.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationRuntime.o +[TRACE] [xcode-dist] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationEvent.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] export LANG\=en_US.US-ASCII +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12166903564878443572/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationEvent.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationEvent.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationEvent.o +[TRACE] [xcode-dist] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimatableProperty.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] export LANG\=en_US.US-ASCII +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios12.1 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/i +[TRACE] [xcode-dist] PhoneOS15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12166903564878443572/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimatableProperty.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimatableProperty.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimatableProperty.o +[TRACE] [xcode-dist] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/FBPOPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] export LANG\=en_US.US-ASCII +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios12.1 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu99 -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources +[TRACE] [xcode-dist] -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17043467966667371092/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/FBPOPAnimator.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/FBPOPAnimator.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/FBPOPAnimator.o +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:9: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.h:20: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POP.h:18: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.h:19:43: warning: this function declaration is not a prototype [-Wstrict-prototypes] +[TRACE] [xcode-dist] extern CGFloat POPAnimationDragCoefficient(); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] void +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:89:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPLEFT); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:91:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:110:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPTOP); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:112:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:136:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPWIDTH); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:138:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:151:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPHEIGHT); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:153:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:166:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPWIDTH); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:167:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPHEIGHT); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:170:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:190:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPOPACITY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:192:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:211:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPBACKGROUNDCOLOR); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:213:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:234:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPCOLOR); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: +[TRACE] [xcode-dist] note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:236:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:254:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPTINTCOLOR); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:256:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:275:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPBORDERWIDTH); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m: +[TRACE] [xcode-dist] 19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:277:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:296:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPBORDERCOLOR); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:298:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:317:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPBORDERRADIUS); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:319:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:351:44: warning: +[TRACE] [xcode-dist] block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPROTATEX); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:353:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:369:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPROTATEY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:371:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:387:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPROTATEZ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:389:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:407:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPROTATEX); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:408:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPROTATEY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:409:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPROTATEZ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:411:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:441:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPSCALEX); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:443:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:457:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPSCALEY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:459:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:472:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPSCALEX); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:473:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPSCALEY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:475:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:509:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPTRANSLATEX); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:511:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:526:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPTRANSLATEY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:528:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:547:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPTRANSLATEX); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:548:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPTRANSLATEY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:550:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:571:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPTRANSLATEZ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:573:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:599:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPSTROKESTART); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:600:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:619:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPSTROKEEND); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:620:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:639:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPLINEWIDTH); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:640:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:659:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPSTROKECOLOR); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:660:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:679:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPFILLCOLOR); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:680:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:730:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPZINDEX); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:732:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:751:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPSHADOWCOLOR); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:753:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:772:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPSHADOWOPACITY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:774:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:800:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:801:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:816:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:817:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:835:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:836:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:837:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:890:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(basicMask, TIPOPSCROLLVIEWCONTETNOFFSET); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:891:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(basicMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1006:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPLEFT); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1008:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1027:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPTOP); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1029:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1053:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPWIDTH); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1055:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1068:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPHEIGHT); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1070:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1083:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPWIDTH); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1084:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPHEIGHT); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1087:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1108:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPOPACITY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1110:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1129:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPBACKGROUNDCOLOR); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1131:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1152:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPCOLOR); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1154:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1173:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPTINTCOLOR); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1175:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1194:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPBORDERWIDTH); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1196:33: warning: +[TRACE] [xcode-dist] block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1215:36: warning: +[TRACE] [xcode-dist] block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPBORDERCOLOR); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1217:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1236:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPBORDERRADIUS); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1238:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1270:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPROTATEX); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1272:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1288:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPROTATEY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1290:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1306:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPROTATEZ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1308:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m +[TRACE] [xcode-dist] :21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1326:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPROTATEX); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1327:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPROTATEY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1328:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPROTATEZ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1330:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1360:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPSCALEX); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1362:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1377:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPSCALEY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1379:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1397:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPSCALEX); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m: +[TRACE] [xcode-dist] 19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1398:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPSCALEY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1400:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1431:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPTRANSLATEX); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1433:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1448:44: warning: +[TRACE] [xcode-dist] block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPTRANSLATEY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1450:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1468:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPTRANSLATEX); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1469:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPTRANSLATEY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1471:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1495:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPTRANSLATEZ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1497:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1523:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPSTROKESTART); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1524:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1543:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPSTROKEEND); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1544:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1563:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPLINEWIDTH); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1564:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1583:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPSTROKECOLOR); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1584:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1603:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPFILLCOLOR); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1604:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1661:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPZINDEX); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1663:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1682:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPSHADOWCOLOR); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1684:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1702:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPSHADOWOPACITY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1704:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21: +[TRACE] [xcode-dist] 23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1730:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1731:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1746:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1747:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1765:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1766:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1767:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1817:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(springMask, TIPOPSCROLLVIEWCONTETNOFFSET); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1818:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(springMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1920:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPLEFT); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1922:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(decayMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1948:40: warning: +[TRACE] [xcode-dist] block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPTOP); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1950:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(decayMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1981:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPWIDTH); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1983:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(decayMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2001:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPHEIGHT); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2003:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(decayMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2023:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPWIDTH); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2024:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPHEIGHT); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2026:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(decayMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2038:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPWIDTH); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2039:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPHEIGHT); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2041:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(decayMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m: +[TRACE] [xcode-dist] 21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2053:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPWIDTH); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2054:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPHEIGHT); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2057:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(decayMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2080:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPOPACITY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m +[TRACE] [xcode-dist] :19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2082:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(decayMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2102:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPBORDERWIDTH); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2104:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(decayMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2124:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPBORDERRADIUS); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2126:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(decayMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2159:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPROTATEX); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2161:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(decayMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2178:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPROTATEY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2180:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(decayMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2197:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPROTATEZ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2199:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(decayMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2218:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPROTATEX); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2219:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPROTATEY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2220:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPROTATEZ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2222:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(decayMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2253:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPSCALEX); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2255:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(decayMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2271:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPSCALEY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2273:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(decayMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2292:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPSCALEX); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2293:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPSCALEY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2295:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(decayMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2327:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPTRANSLATEX); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2329:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(decayMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m +[TRACE] [xcode-dist] :21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2345:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPTRANSLATEY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2347:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(decayMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2366:44: warning: +[TRACE] [xcode-dist] block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPTRANSLATEX); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19 +[TRACE] [xcode-dist] :52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2367:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPTRANSLATEY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2369:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(decayMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21 +[TRACE] [xcode-dist] :23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2393:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPTRANSLATEZ); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2395:41: warning: +[TRACE] [xcode-dist] block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(decayMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2421:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPSTROKESTART); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2422:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(decayMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21 +[TRACE] [xcode-dist] :23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2441:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPSTROKEEND); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2442:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(decayMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2461:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPLINEWIDTH); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2462:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(decayMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2520:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPSHADOWOPACITY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2522:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(decayMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2548:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2549:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(decayMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2564:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2565:41: warning: +[TRACE] [xcode-dist] block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(decayMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2583:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2584:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] unsetAnimationMask(decayMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: +[TRACE] [xcode-dist] note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-dist] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2585:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] finishAnimation(decayMask, callback); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-dist] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] 217 warnings generated. +[TRACE] [xcode-dist] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] export LANG\=en_US.US-ASCII +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios12.1 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu99 -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17043467966667371092/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.o +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:17: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiBase.h:8:9: warning: double-quoted include "TiSharedConfig.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiSharedConfig.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiBase.h:627:10: warning: double-quoted include "TiThreading.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #include "TiThreading.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiBase.h:637:10: warning: double-quoted include "TiPublicAPI.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #include "TiPublicAPI.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/APIModule.h:8:9: warning: double-quoted include "ObjcModule.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "ObjcModule.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/APIModule.h:8: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/ObjcModule.h:7:9: warning: double-quoted include "Module.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "Module.h" +[TRACE] [xcode-dist] ^~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/APIModule.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/ObjcModule.h:7: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/Module.h:1:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiEvaluator.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/APIModule.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/ObjcModule.h:7: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/Module.h:1: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiEvaluator.h:7:9: warning: double-quoted include "KrollContext.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "KrollContext.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/APIModule.h:8: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/ObjcModule.h:8:9: warning: double-quoted include "ObjcProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "ObjcProxy.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/APIModule.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/ObjcModule.h:8: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/ObjcProxy.h:7:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #im +[TRACE] [xcode-dist] port "TiEvaluator.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:21: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/APSHTTPClient.h:21:9: warning: double-quoted include "APSHTTPHelper.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "APSHTTPHelper.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/APSHTTPClient.h:22:9: warning: double-quoted include "APSHTTPPostForm.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "APSHTTPPostForm.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/APSHTTPClient.h:23:9: warning: double-quoted include "APSHTTPRequest.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "APSHTTPRequest.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/APSHTTPClient.h:24:9: warning: double-quoted include "APSHTTPResponse.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "APSHTTPResponse.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:22: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/ImageLoader.h:7:9: warning: double-quoted include "APSHTTPClient.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "APSHTTPClient.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/ImageLoader.h:8:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiDimension.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:22: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/ImageLoader.h:8: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiDimension.h:13:9: warning: double-quoted include "TiBase.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiBase.h" +[TRACE] [xcode-dist] ^~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/Ti2DMatrix.h:8:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiProxy.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiProxy.h:7:9: warning: double-quoted include "KrollCallback.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "KrollCallback.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiProxy.h:7: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/KrollCallback.h:8:9: warning: double-quoted include "KrollContext.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "KrollContext.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/KrollCallback.h:9:9: warning: double-quoted include "KrollWrapper.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "KrollWrapper.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit +[TRACE] [xcode-dist] .framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiProxy.h:7: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/KrollCallback.h:9: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/KrollWrapper.h:8:9: warning: double-quoted include "KrollContext.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "KrollContext.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiProxy.h:8:9: warning: double-quoted include "KrollObject.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "KrollObject.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiProxy.h:9:9: warning: double-quoted include "TiBindingRunLoop.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiBindingRunLoop.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiProxy.h:9: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiBindingRunLoop.h:10:9: warning: double-quoted include "KrollContext.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "KrollContext.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiProxy.h:10:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiEvaluator.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:33: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/Ti3DMatrix.h:8:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiProxy.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:11:9: warning: double-quoted include "KrollBridge.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "KrollBridge.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:11: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/KrollBridge.h:8:9: warning: double-quoted include "Bridge.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "Bridge.h" +[TRACE] [xcode-dist] ^~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:11: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/KrollBridge.h:8: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noinde +[TRACE] [xcode-dist] x/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/Bridge.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiProxy.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:11: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/KrollBridge.h:9:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiEvaluator.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:12:9: warning: double-quoted include "TiHost.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiHost.h" +[TRACE] [xcode-dist] ^~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:12: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiHost.h:8:9: warning: double-quoted include "Bridge.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "Bridge.h" +[TRACE] [xcode-dist] ^~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiHost.h:9:9: warning: double-quoted include "Module.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "Module.h" +[TRACE] [xcode-dist] ^~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiHost.h:10:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiEvaluator.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiHost.h:11:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiProxy.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiHost.h:12:9: warning: double-quoted include "TiStylesheet.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiStylesheet.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:13:9: warning: double-quoted include "TiRootViewController.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiRootViewController.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiRootViewController.h:8:9: warning: double-quoted include "TiControllerProtocols.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiControllerProtocols.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiControllerProtocols.h:8:9: warning: double-quoted include "TiViewProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiViewProxy.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34 +[TRACE] [xcode-dist] : +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiViewProxy.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiProxy.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiViewProxy.h:8:9: warning: double-quoted include "TiRect.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiRect.h" +[TRACE] [xcode-dist] ^~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiViewProxy.h:8: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiRect.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiProxy.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiViewProxy.h:9:9: warning: double-quoted include "TiUIView.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiUIView.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIView.h:7:9: warning: double-quoted include "LayoutConstraint.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "LayoutConstraint.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/LayoutConstraint.h:8:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiDimension.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Hea +[TRACE] [xcode-dist] ders/LayoutConstraint.h:9:9: warning: double-quoted include "TiUtils.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiUtils.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUtils.h:8:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiDimension.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUtils.h:25:9: warning: double-quoted include "TiBuffer.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiBuffer.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUtils.h:25: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiBuffer.h:8:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiProxy.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUtils.h:26:9: warning: double-quoted include "TiColor.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiColor.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Re +[TRACE] [xcode-dist] lease-iphoneos/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUtils.h:26: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiColor.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiProxy.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUtils.h:27:9: warning: double-quoted include "TiFile.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiFile.h" +[TRACE] [xcode-dist] ^~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUtils.h:27: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiFile.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiProxy.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUtils.h:28:9: warning: double-quoted include "WebFont.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "WebFont.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphone +[TRACE] [xcode-dist] os/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIView.h:8:9: warning: double-quoted include "TiAnimation.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiAnimation.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiAnimation.h:7:9: warning: double-quoted include "LayoutConstraint.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "LayoutConstraint.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiAnimation.h:8:9: warning: double-quoted include "ListenerEntry.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "ListenerEntry.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiAnimation.h:8: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/ListenerEntry.h:7:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiEvaluator.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/ListenerEntry.h:8:9: warning: double-quoted include "TiModule.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiModule.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiAnimation.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/ListenerEntry.h:8: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiModule.h:7:9: warning: double-quoted include "Module.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "Module.h" +[TRACE] [xcode-dist] ^~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiModule.h:8:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle- +[TRACE] [xcode-dist] bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiEvaluator.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiModule.h:9:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiProxy.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiModule.h:10:9: warning: double-quoted include "TiUtils.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiUtils.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiAnimation.h:9:9: warning: double-quoted include "TiColor.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiColor.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiAnimation.h:10:9: warning: double-quoted include "TiPoint.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiPoint.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiAnimation.h:10: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiPoint.h:7:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiDimension.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiPoint.h:8:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiProxy.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiAnimation.h:11:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiProxy.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/Bu +[TRACE] [xcode-dist] ildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIView.h:9:9: warning: double-quoted include "TiGradient.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiGradient.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIView.h:9: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiGradient.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiProxy.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiGradient.h:9:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiDimension.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiGradient.h:10:9: warning: double-quoted include "TiPoint.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiPoint.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIView.h:10:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiProxy.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiViewProxy.h:10:9: warning: double-quoted include "TiViewTemplate.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiViewTemplate.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiViewProxy.h:10: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiViewTemplate.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead +[TRACE] [xcode-dist] [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiProxy.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:35: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiBlob.h:7:9: warning: double-quoted include "ObjcProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "ObjcProxy.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:40: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiFilesystemFileProxy.h:8:9: warning: double-quoted include "TiFile.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiFile.h" +[TRACE] [xcode-dist] ^~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:41: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiFilesystemFileStreamProxy.h:8:9: warning: double-quoted include "TiStreamProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiStreamProxy.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:41: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiFilesystemFileStreamProxy.h:8: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiStreamProxy.h:8:9: warning: double-quoted include "KrollCallback.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "KrollCallback.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiStreamProxy.h:9:9: warning: double-quoted include "TiBase.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiBase.h" +[TRACE] [xcode-dist] ^~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiStreamProxy.h:10:9: warning: double-quoted include "TiBuffer.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiBuffer.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiStreamProxy.h:11:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiProxy.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:50: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiToolbar.h:7:9: warning: double-quoted include "TiViewProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiViewProxy.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:51: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIViewProxy.h:8:9: warning: double-quoted include "TiViewProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiViewProxy.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:52: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIWindow.h:7:9: warning: double-quoted include "TiUIView.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiUIView.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIWindowProxy.h:8:9: warning: double-quoted include "KrollBridge.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "KrollBridge.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIWindowProxy.h:9:9: warning: double-quoted include "TiUIView.h" in +[TRACE] [xcode-dist] framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiUIView.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIWindowProxy.h:10:9: warning: double-quoted include "TiViewProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiViewProxy.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11:9: warning: double-quoted include "TiWindowProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiWindowProxy.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiWindowProxy.h:7:9: warning: double-quoted include "TiTab.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiTab.h" +[TRACE] [xcode-dist] ^~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiWindowProxy.h:7: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiTab.h:7:9: warning: double-quoted include "TiTabGroup.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiTabGroup.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiWindowProxy.h:8:9: warning: double-quoted include "TiViewController.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiViewController.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiWindowProxy.h:8: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiViewController.h:8:9: warning: double-quoted include "TiControllerProtocols.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiControllerProtocols.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiWindowProxy.h:9:9: warning: double-quoted include "TiViewProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiViewProxy.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiWindowProxy.h:11:9: warning: double-quoted include "TiUIiOSTransitionAnimationProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiUIiOSTransitionAnimationProxy.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiWindowProxy.h:11: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIiOSTransitionAnimationProxy.h:8:9: warning: double-quoted include "TiAnimation.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-f +[TRACE] [xcode-dist] ramework-header] +[TRACE] [xcode-dist] #import "TiAnimation.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TiUIiOSTransitionAnimationProxy.h:9:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiProxy.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-dist] In file included from :1: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/TitaniumKit.h:58: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/TitaniumKit.framework/Headers/UIImage+Resize.h:9:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-dist] #import "TiDimension.h" +[TRACE] [xcode-dist] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-dist] +[TRACE] [xcode-dist] 98 warnings generated. +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m:8: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:9: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.h:20: +[TRACE] [xcode-dist] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POP.h:18: +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.h:19:43: warning: this function declaration is not a prototype [-Wstrict-prototypes] +[TRACE] [xcode-dist] extern CGFloat POPAnimationDragCoefficient(); +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] void +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m:100:10: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] [popAnimator basicAnimationWithProxy:proxy andProperties:properties completed:callback]; +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m:116:10: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] [popAnimator springAnimationWithProxy:proxy andProperties:properties completed:callback]; +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m:132:10: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] [popAnimator decayAnimationWithProxy:proxy andProperties:properties completed:callback]; +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m:143:10: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-dist] [popAnimator clearAllAnimations:proxy]; +[TRACE] [xcode-dist] ^ +[TRACE] [xcode-dist] self-> +[TRACE] [xcode-dist] 103 warnings generated. +[TRACE] [xcode-dist] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] export LANG\=en_US.US-ASCII +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios12.1 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu99 -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos -DTI_PO +[TRACE] [xcode-dist] ST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17043467966667371092/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.o +[TRACE] [xcode-dist] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] export LANG\=en_US.US-ASCII +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios12.1 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu99 -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fembed-bitcode -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17043467966667371092/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.o +[TRACE] [xcode-dist] Libtool /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a normal (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] export IPHONEOS_DEPLOYMENT_TARGET\=12.1 +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool -static -arch_only arm64 -D -syslibroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk -L/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-iphoneos -filelist /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop.LinkFileList -framework TitaniumKit -framework Foundation -framework SceneKit -dependency_info /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop_libtool_dependency_info.dat -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a +[TRACE] [xcode-dist] Strip /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -S -T /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a +[TRACE] [xcode-dist] SetOwnerAndGroup marcbender:staff /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] /usr/sbin/chown -RH marcbender:staff /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a +[TRACE] [xcode-dist] SetMode u+w,go-w,a+rX /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a (in target 'tipop' from project 'tipop') +[TRACE] [xcode-dist] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-dist] /bin/chmod -RH u+w,go-w,a+rX /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a +[TRACE] [xcode-dist] ** ARCHIVE SUCCEEDED ** +[DEBUG] Running: DEVELOPER_DIR=/Applications/Xcode-beta.app/Contents/Developer /Applications/Xcode-beta.app/Contents/Developer/usr/bin/xcodebuild archive -configuration Release -sdk macosx -archivePath /Users/marcbender/Downloads/tipop-master-2/iphone/build/macosx.xcarchive -UseNewBuildSystem=YES ONLY_ACTIVE_ARCH=NO SKIP_INSTALL=NO -scheme tipop SUPPORTS_MACCATALYST=YES +[TRACE] [xcode-macos] Command line invocation: +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/usr/bin/xcodebuild archive -configuration Release -sdk macosx -archivePath /Users/marcbender/Downloads/tipop-master-2/iphone/build/macosx.xcarchive -UseNewBuildSystem=YES ONLY_ACTIVE_ARCH=NO SKIP_INSTALL=NO -scheme tipop SUPPORTS_MACCATALYST=YES +[TRACE] [xcode-macos] User defaults from command line: +[TRACE] [xcode-macos] IDEArchivePathOverride = /Users/marcbender/Downloads/tipop-master-2/iphone/build/macosx.xcarchive +[TRACE] [xcode-macos] IDEPackageSupportUseBuiltinSCM = YES +[TRACE] [xcode-macos] UseNewBuildSystem = YES +[TRACE] [xcode-macos] Build settings from command line: +[TRACE] [xcode-macos] ONLY_ACTIVE_ARCH = NO +[TRACE] [xcode-macos] SDKROOT = macosx12.0 +[TRACE] [xcode-macos] SKIP_INSTALL = NO +[TRACE] [xcode-macos] SUPPORTS_MACCATALYST = YES +[TRACE] [xcode-macos] note: Using new build system +[TRACE] [xcode-macos] note: Planning +[TRACE] [xcode-macos] Analyze workspace +[TRACE] [xcode-macos] Create build description +[TRACE] [xcode-macos] Build description signature: 989b86255d5c1feb9e5ff1af44817cdf +[TRACE] [xcode-macos] Build description path: /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/XCBuildData/989b86255d5c1feb9e5ff1af44817cdf-desc.xcbuild +[TRACE] [xcode-macos] note: Build preparation complete +[TRACE] [xcode-macos] note: Building targets in parallel +[TRACE] [xcode-macos] CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj +[TRACE] [xcode-macos] builtin-create-build-directory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath +[TRACE] [xcode-macos] CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj +[TRACE] [xcode-macos] builtin-create-build-directory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation +[TRACE] [xcode-macos] CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj +[TRACE] [xcode-macos] builtin-create-build-directory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath +[TRACE] [xcode-macos] CreateBuildDirectory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj +[TRACE] [xcode-macos] builtin-create-build-directory /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst +[TRACE] [xcode-macos] ProcessXCFramework /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/Frameworks/TitaniumKit.xcframework /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework ios macabi +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone/tipop.xcodeproj +[TRACE] [xcode-macos] builtin-process-xcframework --xcframework /Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/Frameworks/TitaniumKit.xcframework --platform ios --environment macabi --target-path /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst +[TRACE] [xcode-macos] SymLink /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/libGuyMcdoooooTipop.a /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] /bin/ln -sfh /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/libGuyMcdoooooTipop.a +[TRACE] [xcode-macos] WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/all-product-headers.yaml (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] write-file /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/all-product-headers.yaml +[TRACE] [xcode-macos] WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] write-file /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap +[TRACE] [xcode-macos] WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] write-file /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap +[TRACE] [xcode-macos] WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] write-file /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop.hmap +[TRACE] [xcode-macos] WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] write-file /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap +[TRACE] [xcode-macos] WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] write-file /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap +[TRACE] [xcode-macos] WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] write-file /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap +[TRACE] [xcode-macos] WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop.LinkFileList (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] write-file /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop.LinkFileList +[TRACE] [xcode-macos] WriteAuxiliaryFile /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] write-file /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList +[TRACE] [xcode-macos] ProcessPCH /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] Precompile of '/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch' required by '/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m' +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c-header -target x86_64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu99 -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -c /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch -MD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch.d -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch.gch --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Bui +[TRACE] [xcode-macos] ld/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch.dia +[TRACE] [xcode-macos] ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7031153137348716277/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] Precompile of '/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch' required by '/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp' +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++-header -target arm64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DTI_VERSION\= -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -c /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch -MD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7031153137348716277/GuyMcdoooooTipop_Prefix.pch.d -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7031153137348716277/GuyMcdoooooTipop_Prefix.pch.gch --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7031153137348716277/GuyMcdoooooTipop_Prefix.pch.dia +[TRACE] [xcode-macos] ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] Precompile of '/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch' required by '/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm' +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++-header -target x86_64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -c /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch -MD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.d -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPreco +[TRACE] [xcode-macos] mpiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.gch --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch.dia +[TRACE] [xcode-macos] ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] Precompile of '/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch' required by '/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm' +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++-header -target arm64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -c /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch -MD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.d -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/ +[TRACE] [xcode-macos] Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.gch --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch.dia +[TRACE] [xcode-macos] ProcessPCH /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] Precompile of '/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch' required by '/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m' +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c-header -target arm64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu99 -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -c /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch -MD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch.d -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFi +[TRACE] [xcode-macos] lesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch.gch --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch.dia +[TRACE] [xcode-macos] ProcessPCH++ /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/4403900921092490547/GuyMcdoooooTipop_Prefix.pch.gch /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] Precompile of '/Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch' required by '/Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp' +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++-header -target x86_64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DTI_VERSION\= -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -c /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch -MD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/4403900921092490547/GuyMcdoooooTipop_Prefix.pch.d -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFiles +[TRACE] [xcode-macos] Path/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/4403900921092490547/GuyMcdoooooTipop_Prefix.pch.gch --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/4403900921092490547/GuyMcdoooooTipop_Prefix.pch.dia +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -target x86_64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DTI_VERSION\= -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/4403900921092490547/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/TransformationMatrix.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/TransformationMatrix.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -target arm64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DTI_VERSION\= -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7031153137348716277/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/TransformationMatrix.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/TransformationMatrix.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/WebCore/TransformationMatrix.cpp -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/TransformationMatrix.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPPropertyAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta +[TRACE] [xcode-macos] .app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPPropertyAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPPropertyAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPPropertyAnimation.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPVector.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Develope +[TRACE] [xcode-macos] r/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPVector.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPVector.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPVector.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPLayerExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPLayerExtras.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPLayerExtras.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPLayerExtras.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPDecayAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPDecayAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPDecayAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPDecayAnimation.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCustomAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCustomAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCustomAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCustomAnimation.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPGeometry.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPGeometry.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPGeometry.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPGeometry.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPSpringAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPSpringAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPSpringAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPSpringAnimation.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPMath.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPMath.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPMath.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPMath.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCGUtils.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCGUtils.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCGUtils.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPCGUtils.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPBasicAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPBasicAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPBasicAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPBasicAnimation.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPVector.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPVector.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPSpringAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPPropertyAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPMath.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPMath.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPLayerExtras.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPLayerExtras.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPGeometry.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPDecayAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCustomAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPCGUtils.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPCGUtils.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPBasicAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimator.o +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:101:3: warning: 'OSSpinLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLock _lock; +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:79:17: note: 'OSSpinLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] typedef int32_t OSSpinLock OSSPINLOCK_DEPRECATED_REPLACE_WITH(os_unfair_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:381:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:388:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:407:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included f +[TRACE] [xcode-macos] rom /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:422:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:436:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:442:5: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Develop +[TRACE] [xcode-macos] er/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:448:5: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:461:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:467:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/ +[TRACE] [xcode-macos] CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:545:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:551:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:567:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX. +[TRACE] [xcode-macos] platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:581:7: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:589:7: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:608:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked depre +[TRACE] [xcode-macos] cated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:617:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:623:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:635:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:648:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/t +[TRACE] [xcode-macos] ipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:664:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:690:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:705:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xc +[TRACE] [xcode-macos] ode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:711:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:718:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:725:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/S +[TRACE] [xcode-macos] ystem/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:775:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:786:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:797:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applicat +[TRACE] [xcode-macos] ions/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:803:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:267:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&self->_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:286:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&self->_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: +[TRACE] [xcode-macos] 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:303:5: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&self->_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:315:5: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&self->_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] 34 warnings generated. +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermedia +[TRACE] [xcode-macos] tes/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/Int +[TRACE] [xcode-macos] ermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimation.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target x86_64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/17046143206159586272/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm:714:23: warning: 'scrollIndicatorInsets' is deprecated: first deprecated in macCatalyst 13.0 - The scrollIndicatorInsets getter is deprecated, use the verticalScrollIndicatorInsets and horizontalScrollIndicatorInsets getters instead. [-Wdeprecated-declarations] +[TRACE] [xcode-macos] values[0] = obj.scrollIndicatorInsets.top; +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:33: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h:12: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:101:1: note: 'scrollIndicatorInsets' has been explicitly marked deprecated here +[TRACE] [xcode-macos] - (UIEdgeInsets)scrollIndicatorInsets API_DEPRECATED("The scrollIndicatorInsets getter is deprecated, use the verticalScrollIndicatorInsets and horizontalScrollIndicatorInsets getters instead.", ios(2.0, 13.0), tvos(9.0, 13.0)); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm:715:23: warning: 'scrollIndicatorInsets' is deprecated: first deprecated in macCatalyst 13.0 - The scrollIndicatorInsets getter is deprecated, use the verticalScrollIndicatorInsets and horizontalScrollIndicatorInsets getters instead. [-Wdeprecated-declarations] +[TRACE] [xcode-macos] values[1] = obj.scrollIndicatorInsets.left; +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:33: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h:12: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:101:1: note: 'scrollIndicatorInsets' has been explicitly marked deprecated here +[TRACE] [xcode-macos] - (UIEdgeInsets)scrollIndicatorInsets API_DEPRECATED("The scrollIndicatorInsets getter is deprecated, use the verticalScrollIndicatorInsets and horizontalScrollIndicatorInsets getters instead.", ios(2.0, 13.0), tvos(9.0, 13.0)); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm:716:23: warning: 'scrollIndicatorInsets' is deprecated: first deprecated in macCatalyst 13.0 - The scrollIndicatorInsets getter is deprecated, use the verticalScrollIndicatorInsets and horizontalScrollIndicatorInsets getters instead. [-Wdeprecated-declarations] +[TRACE] [xcode-macos] values[2] = obj.scrollIndicatorInsets.bottom; +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:33: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h:12: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:101:1: note: 'scrollIndicatorInsets' has been explicitly marked deprecated here +[TRACE] [xcode-macos] - (UIEdgeInsets)scrollIndicatorInsets API_DEPRECATED("The scrollIndicatorInsets getter is deprecated, use the verticalScrollIndicatorInsets and horizontalScrollIndicatorInsets getters instead.", ios(2.0, 13.0), tvos(9.0, 13.0)); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm:717:23: warning: 'scrollIndicatorInsets' is deprecated: first deprecated in macCatalyst 13.0 - The scrollIndicatorInsets getter is deprecated, use the verticalScrollIndicatorInsets and horizontalScrollIndicatorInsets getters instead. [-Wdeprecated-declarations] +[TRACE] [xcode-macos] values[3] = obj.scrollIndicatorInsets.right; +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:33: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h:12: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:101:1: note: 'scrollIndicatorInsets' has been explicitly marked deprecated here +[TRACE] [xcode-macos] - (UIEdgeInsets)scrollIndicatorInsets API_DEPRECATED("The scrollIndicatorInsets getter is deprecated, use the verticalScrollIndicatorInsets and horizontalScrollIndicatorInsets getters instead.", ios(2.0, 13.0), tvos(9.0, 13.0)); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] 4 warnings generated. +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimator.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimator.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimator.o +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:101:3: warning: 'OSSpinLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLock _lock; +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:79:17: note: 'OSSpinLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] typedef int32_t OSSpinLock OSSPINLOCK_DEPRECATED_REPLACE_WITH(os_unfair_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:381:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:388:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:407:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included f +[TRACE] [xcode-macos] rom /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:422:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:436:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:442:5: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Develop +[TRACE] [xcode-macos] er/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:448:5: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:461:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:467:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/ +[TRACE] [xcode-macos] CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:545:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:551:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:567:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX. +[TRACE] [xcode-macos] platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:581:7: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:589:7: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:608:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked depre +[TRACE] [xcode-macos] cated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:617:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:623:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:635:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:648:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/t +[TRACE] [xcode-macos] ipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:664:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:690:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:705:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xc +[TRACE] [xcode-macos] ode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:711:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:718:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:725:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/S +[TRACE] [xcode-macos] ystem/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:775:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:786:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:797:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applicat +[TRACE] [xcode-macos] ions/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:803:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:267:3: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&self->_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:286:3: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&self->_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: +[TRACE] [xcode-macos] 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:303:5: warning: 'OSSpinLockLock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_lock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockLock(&self->_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:99:9: note: 'OSSpinLockLock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockLock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:315:5: warning: 'OSSpinLockUnlock' is deprecated: first deprecated in macCatalyst 13.0 - Use os_unfair_lock_unlock() from instead [-Wdeprecated-declarations] +[TRACE] [xcode-macos] OSSpinLockUnlock(&self->_lock); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimator.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h:10: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h:46: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEvent.h:12: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGEventTypes.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOLLEvent.h:49: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/Library/Frameworks/IOKit.framework/Headers/hidsystem/IOHIDTypes.h:40: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSAtomic.h:44: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h:105:9: note: 'OSSpinLockUnlock' has been explicitly marked deprecated here +[TRACE] [xcode-macos] void OSSpinLockUnlock( volatile OSSpinLock *__lock ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] 34 warnings generated. +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationTracer.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/Interm +[TRACE] [xcode-macos] ediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationTracer.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationTracer.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationTracer.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationTracer.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationRuntime.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Rele +[TRACE] [xcode-macos] ase-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationRuntime.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationRuntime.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationRuntime.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationRuntime.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationExtras.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationExtras.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationExtras.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationExtras.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationEvent.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationEvent.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationEvent.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationEvent.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimationEvent.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimation.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimation.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimation.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimation.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimation.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimatableProperty.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm normal arm64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -target arm64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu++11 -stdlib\=libc++ -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/6659176477129377806/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimatableProperty.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimatableProperty.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/POPAnimatableProperty.o +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm:714:23: warning: 'scrollIndicatorInsets' is deprecated: first deprecated in macCatalyst 13.0 - The scrollIndicatorInsets getter is deprecated, use the verticalScrollIndicatorInsets and horizontalScrollIndicatorInsets getters instead. [-Wdeprecated-declarations] +[TRACE] [xcode-macos] values[0] = obj.scrollIndicatorInsets.top; +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:33: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h:12: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:101:1: note: 'scrollIndicatorInsets' has been explicitly marked deprecated here +[TRACE] [xcode-macos] - (UIEdgeInsets)scrollIndicatorInsets API_DEPRECATED("The scrollIndicatorInsets getter is deprecated, use the verticalScrollIndicatorInsets and horizontalScrollIndicatorInsets getters instead.", ios(2.0, 13.0), tvos(9.0, 13.0)); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm:715:23: warning: 'scrollIndicatorInsets' is deprecated: first deprecated in macCatalyst 13.0 - The scrollIndicatorInsets getter is deprecated, use the verticalScrollIndicatorInsets and horizontalScrollIndicatorInsets getters instead. [-Wdeprecated-declarations] +[TRACE] [xcode-macos] values[1] = obj.scrollIndicatorInsets.left; +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:33: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h:12: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:101:1: note: 'scrollIndicatorInsets' has been explicitly marked deprecated here +[TRACE] [xcode-macos] - (UIEdgeInsets)scrollIndicatorInsets API_DEPRECATED("The scrollIndicatorInsets getter is deprecated, use the verticalScrollIndicatorInsets and horizontalScrollIndicatorInsets getters instead.", ios(2.0, 13.0), tvos(9.0, 13.0)); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm:716:23: warning: 'scrollIndicatorInsets' is deprecated: first deprecated in macCatalyst 13.0 - The scrollIndicatorInsets getter is deprecated, use the verticalScrollIndicatorInsets and horizontalScrollIndicatorInsets getters instead. [-Wdeprecated-declarations] +[TRACE] [xcode-macos] values[2] = obj.scrollIndicatorInsets.bottom; +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:33: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h:12: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:101:1: note: 'scrollIndicatorInsets' has been explicitly marked deprecated here +[TRACE] [xcode-macos] - (UIEdgeInsets)scrollIndicatorInsets API_DEPRECATED("The scrollIndicatorInsets getter is deprecated, use the verticalScrollIndicatorInsets and horizontalScrollIndicatorInsets getters instead.", ios(2.0, 13.0), tvos(9.0, 13.0)); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm:717:23: warning: 'scrollIndicatorInsets' is deprecated: first deprecated in macCatalyst 13.0 - The scrollIndicatorInsets getter is deprecated, use the verticalScrollIndicatorInsets and horizontalScrollIndicatorInsets getters instead. [-Wdeprecated-declarations] +[TRACE] [xcode-macos] values[3] = obj.scrollIndicatorInsets.right; +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimatableProperty.mm:1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/GuyMcdoooooTipop_Prefix.pch:4: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:9: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:33: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h:15: +[TRACE] [xcode-macos] In file included from /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h:12: +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:101:1: note: 'scrollIndicatorInsets' has been explicitly marked deprecated here +[TRACE] [xcode-macos] - (UIEdgeInsets)scrollIndicatorInsets API_DEPRECATED("The scrollIndicatorInsets getter is deprecated, use the verticalScrollIndicatorInsets and horizontalScrollIndicatorInsets getters instead.", ios(2.0, 13.0), tvos(9.0, 13.0)); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] 4 warnings generated. +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu99 -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.o +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:17: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiBase.h:8:9: warning: double-quoted include "TiSharedConfig.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiSharedConfig.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiBase.h:627:10: warning: double-quoted include "TiThreading.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #include "TiThreading.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiBase.h:637:10: warning: double-quoted include "TiPublicAPI.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #include "TiPublicAPI.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APIModule.h:8:9: warning: double-quoted include "ObjcModule.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "ObjcModule.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APIModule.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ObjcModule.h:7:9: warning: double-quoted include "Module.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "Module.h" +[TRACE] [xcode-macos] ^~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APIModule.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ObjcModule.h:7: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Module.h:1:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiEvaluator.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APIModule.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ObjcModule.h:7: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Module.h:1: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiEvaluator.h:7:9: warning: double-quoted include "KrollContext.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "KrollContext.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APIModule.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ObjcModule.h:8:9: warning: double-quoted include "ObjcProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "ObjcProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APIModule.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ObjcModule.h:8 +[TRACE] [xcode-macos] : +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ObjcProxy.h:7:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiEvaluator.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:21: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSHTTPClient.h:21:9: warning: double-quoted include "APSHTTPHelper.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "APSHTTPHelper.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSHTTPClient.h:22:9: warning: double-quoted include "APSHTTPPostForm.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "APSHTTPPostForm.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSHTTPClient.h:23:9: warning: double-quoted include "APSHTTPRequest.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "APSHTTPRequest.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSHTTPClient.h:24:9: warning: double-quoted include "APSHTTPResponse.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "APSHTTPResponse.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:22: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ImageLoader.h:7:9: warning +[TRACE] [xcode-macos] : double-quoted include "APSHTTPClient.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "APSHTTPClient.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ImageLoader.h:8:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiDimension.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:22: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ImageLoader.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiDimension.h:13 +[TRACE] [xcode-macos] :9: warning: double-quoted include "TiBase.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiBase.h" +[TRACE] [xcode-macos] ^~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Ti2DMatrix.h:8:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h +[TRACE] [xcode-macos] :32: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiProxy.h:7: +[TRACE] [xcode-macos] 9: warning: double-quoted include "KrollCallback.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "KrollCallback.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from : +[TRACE] [xcode-macos] 1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiProxy.h:7: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollCallback.h:8: +[TRACE] [xcode-macos] 9: warning: double-quoted include "KrollContext.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "KrollContext.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollCallback.h:9:9: warning: double-quoted include "KrollWrapper.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "KrollWrapper.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from : +[TRACE] [xcode-macos] 1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiProxy.h:7 +[TRACE] [xcode-macos] : +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollCallback.h:9: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollWrapper.h:8:9: warning: double-quoted include "KrollContext.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "KrollContext.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiProxy.h:8:9: warning: double-quoted include "KrollObject.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "KrollObject.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiProxy.h:9:9: warning: double-quoted include "TiBindingRunLoop.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiBindingRunLoop.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from +[TRACE] [xcode-macos] :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiProxy.h:9: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiBindingRunLoop.h:10:9: +[TRACE] [xcode-macos] warning: double-quoted include "KrollContext.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "KrollContext.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiProxy.h:10:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiEvaluator.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:33: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Ti3DMatrix.h:8: +[TRACE] [xcode-macos] 9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:11:9: warning: double-quoted include "KrollBridge.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "KrollBridge.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:11: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollBridge.h:8:9: warning: double-quoted include "Bridge.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "Bridge.h" +[TRACE] [xcode-macos] ^~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from : +[TRACE] [xcode-macos] 1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:11: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollBridge.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Bridge.h:7:9: warning +[TRACE] [xcode-macos] : double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:11: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollBridge.h:9: +[TRACE] [xcode-macos] 9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiEvaluator.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:12:9: warning: double-quoted include "TiHost.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiHost.h" +[TRACE] [xcode-macos] ^~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:12: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiHost.h:8:9: warning: double-quoted include "Bridge.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "Bridge.h" +[TRACE] [xcode-macos] ^~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiHost.h:9:9: warning: double-quoted include "Module.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "Module.h" +[TRACE] [xcode-macos] ^~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiHost.h:10:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiEvaluator.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiHost.h:11:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiHost.h:12:9: warning: double-quoted include "TiStylesheet.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiStylesheet.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13:9: warning: double-quoted include "TiRootViewController.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiRootViewController.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8:9: warning: double-quoted include "TiControllerProtocols.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiControllerProtocols.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8:9 +[TRACE] [xcode-macos] : warning: double-quoted include "TiViewProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiViewProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h +[TRACE] [xcode-macos] :34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:8:9: warning: double-quoted include "TiRect.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiRect.h" +[TRACE] [xcode-macos] ^~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRect.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9:9: warning: double-quoted include "TiUIView.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiUIView.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:7:9: warning: double-quoted include "LayoutConstraint.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "LayoutConstraint.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/LayoutConstraint.h:8:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiDimension.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/LayoutConstraint.h:9:9: warning: double-quoted include "TiUtils.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiUtils.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9 +[TRACE] [xcode-macos] : +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUtils.h:8:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiDimension.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUtils.h:25:9: warning: double-quoted include "TiBuffer.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiBuffer.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUtils.h:25: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiBuffer.h:8:9: warning: +[TRACE] [xcode-macos] double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUtils.h:26:9: warning: double-quoted include "TiColor.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiColor.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUtils.h:26: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiColor.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h +[TRACE] [xcode-macos] :8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUtils.h:27:9: warning: double-quoted include "TiFile.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiFile.h" +[TRACE] [xcode-macos] ^~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUtils.h:27: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiFile.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUtils.h:28:9: warning: double-quoted include "WebFont.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "WebFont.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:8:9: warning: double-quoted include "TiAnimation.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiAnimation.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiAnimation.h:7:9: warning +[TRACE] [xcode-macos] : double-quoted include "LayoutConstraint.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "LayoutConstraint.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiAnimation.h:8:9: warning: double-quoted include "ListenerEntry.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "ListenerEntry.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from : +[TRACE] [xcode-macos] 1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiAnimation.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ListenerEntry.h:7:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiEvaluator.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ListenerEntry.h:8:9: warning: double-quoted include "TiModule.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiModule.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h: +[TRACE] [xcode-macos] 8 +[TRACE] [xcode-macos] : +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiAnimation.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ListenerEntry.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiModule.h:7:9: warning: double-quoted include "Module.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "Module.h" +[TRACE] [xcode-macos] ^~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiModule.h:8:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiEvaluator.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiModule.h:9:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiModule.h:10:9: warning: double-quoted include "TiUtils.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiUtils.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8 +[TRACE] [xcode-macos] : +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiAnimation.h:9:9: warning: double-quoted include "TiColor.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiColor.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiAnimation.h:10:9: warning: double-quoted include "TiPoint.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiPoint.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9 +[TRACE] [xcode-macos] : +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiAnimation.h:10: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiPoint.h:7:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiDimension.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiPoint.h:8:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h: +[TRACE] [xcode-macos] 13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiAnimation.h:11:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:9:9: warning: double-quoted include "TiGradient.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiGradient.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:9: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiGradient.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiGradient.h:9:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiDimension.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiGradient.h:10:9: warning: double-quoted include "TiPoint.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiPoint.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:10:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:10:9: warning: double-quoted include "TiViewTemplate.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiViewTemplate.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34 +[TRACE] [xcode-macos] : +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:10: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewTemplate.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:35: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiBlob.h:7:9: warning: double-quoted include "ObjcProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "ObjcProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:40: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiFilesystemFileProxy.h:8:9: +[TRACE] [xcode-macos] warning: double-quoted include "TiFile.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiFile.h" +[TRACE] [xcode-macos] ^~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:41: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiFilesystemFileStreamProxy.h:8:9: warning: double-quoted include "TiStreamProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiStreamProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:41: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiFilesystemFileStreamProxy.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiStreamProxy.h:8:9: warning: double-quoted include "KrollCallback.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "KrollCallback.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiStreamProxy.h:9:9: warning: double-quoted include "TiBase.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiBase.h" +[TRACE] [xcode-macos] ^~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiStreamProxy.h:10:9: warning: double-quoted include "TiBuffer.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiBuffer.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiStreamProxy.h:11:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:50: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiToolbar.h:7:9: +[TRACE] [xcode-macos] warning: double-quoted include "TiViewProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiViewProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:51: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIViewProxy.h: +[TRACE] [xcode-macos] 8:9: warning: double-quoted include "TiViewProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiViewProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:52: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindow.h:7:9: warning: double-quoted include "TiUIView.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiUIView.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from : +[TRACE] [xcode-macos] 1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindowProxy.h:8:9: warning: double-quoted include "KrollBridge.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "KrollBridge.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindowProxy.h:9:9: warning: double-quoted include "TiUIView.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiUIView.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindowProxy.h:10:9: warning: double-quoted include "TiViewProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiViewProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11:9: warning: double-quoted include "TiWindowProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiWindowProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiWindowProxy.h:7:9: warning: double-quoted include "TiTab.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiTab.h" +[TRACE] [xcode-macos] ^~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiWindowProxy.h:7: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiTab.h:7:9: warning +[TRACE] [xcode-macos] : double-quoted include "TiTabGroup.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiTabGroup.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiWindowProxy.h:8:9: warning: double-quoted include "TiViewController.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiViewController.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiWindowProxy.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewController.h:8:9: warning: double-quoted include "TiControllerProtocols.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiControllerProtocols.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiWindowProxy.h:9:9: warning: double-quoted include "TiViewProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiViewProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiWindowProxy.h:11:9: warning: double-quoted include "TiUIiOSTransitionAnimationProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiUIiOSTransitionAnimationProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from +[TRACE] [xcode-macos] :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiWindowProxy.h:11: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIiOSTransitionAnimationProxy.h:8:9: warning: double-quoted include "TiAnimation.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiAnimation.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIiOSTransitionAnimationProxy.h:9:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:58: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/UIImage+Resize.h:9:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiDimension.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] 98 warnings generated. +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.h:20: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POP.h:18: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.h:19:43: warning: this function declaration is not a prototype [-Wstrict-prototypes] +[TRACE] [xcode-macos] extern CGFloat POPAnimationDragCoefficient(); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] void +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m:100:10: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] [popAnimator basicAnimationWithProxy:proxy andProperties:properties completed:callback]; +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m:116:10: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] [popAnimator springAnimationWithProxy:proxy andProperties:properties completed:callback]; +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m:132:10: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] [popAnimator decayAnimationWithProxy:proxy andProperties:properties completed:callback]; +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m:143:10: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] [popAnimator clearAllAnimations:proxy]; +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] 103 warnings generated. +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu99 -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/FBPOPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu99 -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/FBPOPAnimator.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/FBPOPAnimator.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/FBPOPAnimator.o +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.h:20: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POP.h:18: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.h:19:43: warning: this function declaration is not a prototype [-Wstrict-prototypes] +[TRACE] [xcode-macos] extern CGFloat POPAnimationDragCoefficient(); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] void +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:89:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPLEFT); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:91:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:110:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPTOP); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:112:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:136:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPWIDTH); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:138:37: warning: +[TRACE] [xcode-macos] block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:151:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPHEIGHT); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:153:37: warning: +[TRACE] [xcode-macos] block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:166:40: warning: +[TRACE] [xcode-macos] block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPWIDTH); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:167:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPHEIGHT); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:170:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:190:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPOPACITY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note +[TRACE] [xcode-macos] : expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:192:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note +[TRACE] [xcode-macos] : expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:211:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPBACKGROUNDCOLOR); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: +[TRACE] [xcode-macos] note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:213:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: +[TRACE] [xcode-macos] note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:234:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPCOLOR); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:236:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m +[TRACE] [xcode-macos] :21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:254:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPTINTCOLOR); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:256:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: +[TRACE] [xcode-macos] note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:275:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPBORDERWIDTH); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:277:33: warning: +[TRACE] [xcode-macos] block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:296:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPBORDERCOLOR); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:298:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:317:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPBORDERRADIUS); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:319:33: warning: +[TRACE] [xcode-macos] block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m: +[TRACE] [xcode-macos] 21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:351:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPROTATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:353:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:369:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPROTATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:371:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:387:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPROTATEZ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:389:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:407:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPROTATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:408:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPROTATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:409:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPROTATEZ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m: +[TRACE] [xcode-macos] 19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:411:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:441:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPSCALEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:443:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:457:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPSCALEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:459:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:472:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPSCALEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:473:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPSCALEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:475:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:509:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPTRANSLATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:511:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:526:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPTRANSLATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:528:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:547:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPTRANSLATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:548:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPTRANSLATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:550:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:571:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPTRANSLATEZ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:573:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:599:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPSTROKESTART); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:600:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:619:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPSTROKEEND); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:620:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:639:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPLINEWIDTH); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:640:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:659:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPSTROKECOLOR); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:660:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note +[TRACE] [xcode-macos] : expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:679:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPFILLCOLOR); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m: +[TRACE] [xcode-macos] 19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:680:37: warning: +[TRACE] [xcode-macos] block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:730:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPZINDEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19: +[TRACE] [xcode-macos] 52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:732:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m +[TRACE] [xcode-macos] :21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:751:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPSHADOWCOLOR); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52 +[TRACE] [xcode-macos] : note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:753:33: warning: +[TRACE] [xcode-macos] block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21: +[TRACE] [xcode-macos] 23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:772:36: +[TRACE] [xcode-macos] warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPSHADOWOPACITY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:774:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:800:44: warning: +[TRACE] [xcode-macos] block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:801:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:816:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:817:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:835:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:836:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:837:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:890:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPSCROLLVIEWCONTETNOFFSET); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19 +[TRACE] [xcode-macos] :52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:891:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: +[TRACE] [xcode-macos] expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1006:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPLEFT); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1008:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1027:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPTOP); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1029:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1053:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPWIDTH); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1055:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1068:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPHEIGHT); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m: +[TRACE] [xcode-macos] 19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1070:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m: +[TRACE] [xcode-macos] 21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1083:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPWIDTH); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1084:40: warning: +[TRACE] [xcode-macos] block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPHEIGHT); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1087:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21 +[TRACE] [xcode-macos] :23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1108:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPOPACITY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52 +[TRACE] [xcode-macos] : note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1110:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: +[TRACE] [xcode-macos] expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1129:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPBACKGROUNDCOLOR); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1131:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21 +[TRACE] [xcode-macos] :23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1152:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPCOLOR); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1154:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1173:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPTINTCOLOR); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1175:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1194:36: warning: +[TRACE] [xcode-macos] block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPBORDERWIDTH); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1196:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1215:36: +[TRACE] [xcode-macos] warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPBORDERCOLOR); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1217:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1236:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPBORDERRADIUS); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: +[TRACE] [xcode-macos] note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1238:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m +[TRACE] [xcode-macos] :21:23: note: +[TRACE] [xcode-macos] expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1270:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPROTATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1272:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1288:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPROTATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1290:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1306:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPROTATEZ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1308:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m +[TRACE] [xcode-macos] :21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1326:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPROTATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1327:44: warning: +[TRACE] [xcode-macos] block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPROTATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1328:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPROTATEZ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1330:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m +[TRACE] [xcode-macos] :21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1360:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPSCALEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1362:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note +[TRACE] [xcode-macos] : expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1377:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPSCALEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19 +[TRACE] [xcode-macos] :52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1379:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1397:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPSCALEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1398:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPSCALEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1400:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1431:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPTRANSLATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1433:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1448:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPTRANSLATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1450:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1468:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPTRANSLATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1469:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPTRANSLATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1471:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1495:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPTRANSLATEZ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1497:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1523:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPSTROKESTART); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1524:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1543:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPSTROKEEND); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1544:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1563:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPLINEWIDTH); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1564:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1583:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPSTROKECOLOR); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1584:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1603:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPFILLCOLOR); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1604:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: +[TRACE] [xcode-macos] note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1661:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPZINDEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1663:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1682:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPSHADOWCOLOR); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1684:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1702:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPSHADOWOPACITY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1704:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1730:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1731:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1746:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1747:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m +[TRACE] [xcode-macos] :21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1765:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1766:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: +[TRACE] [xcode-macos] note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1767:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m: +[TRACE] [xcode-macos] 21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1817:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPSCROLLVIEWCONTETNOFFSET); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1818:41: warning: +[TRACE] [xcode-macos] block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1920:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPLEFT); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1922:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1948:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPTOP); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1950:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1981:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPWIDTH); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1983:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2001:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPHEIGHT); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2003:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2023:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPWIDTH); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2024:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPHEIGHT); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2026:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2038:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPWIDTH); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2039:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPHEIGHT); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2041:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2053:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPWIDTH); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note +[TRACE] [xcode-macos] : expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2054:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPHEIGHT); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2057:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2080:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPOPACITY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2082:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2102:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPBORDERWIDTH); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2104:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2124:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPBORDERRADIUS); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2126:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2159:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPROTATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2161:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2178:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPROTATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2180:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2197:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPROTATEZ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2199:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2218:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPROTATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2219:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPROTATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2220:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPROTATEZ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2222:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2253:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPSCALEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2255:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2271:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPSCALEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2273:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2292:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPSCALEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2293:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPSCALEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2295:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2327:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPTRANSLATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2329:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2345:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPTRANSLATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2347:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2366:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPTRANSLATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2367:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPTRANSLATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2369:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2393:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPTRANSLATEZ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: +[TRACE] [xcode-macos] note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2395:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2421:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPSTROKESTART); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2422:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2441:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPSTROKEEND); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2442:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2461:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPLINEWIDTH); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2462:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2520:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPSHADOWOPACITY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2522:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2548:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2549:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2564:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2565:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2583:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2584:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2585:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] 217 warnings generated. +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu99 -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/arm64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/12934545929906385362/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target x86_64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu99 -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.h:20: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POP.h:18: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.h:19:43: warning: this function declaration is not a prototype [-Wstrict-prototypes] +[TRACE] [xcode-macos] extern CGFloat POPAnimationDragCoefficient(); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] void +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:89:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPLEFT); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:91:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:110:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPTOP); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:112:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:136:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPWIDTH); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:138:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:151:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPHEIGHT); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:153:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:166:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPWIDTH); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:167:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPHEIGHT); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:170:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:190:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPOPACITY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:192:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Do +[TRACE] [xcode-macos] wnloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:211:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPBACKGROUNDCOLOR); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:213:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:234:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPCOLOR); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:236:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:254:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPTINTCOLOR); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:256:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:275:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPBORDERWIDTH); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:277:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:296:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPBORDERCOLOR); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:298:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:317:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPBORDERRADIUS); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:319:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:351:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPROTATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:353:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retai +[TRACE] [xcode-macos] n-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:369:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPROTATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:371:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:387:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPROTATEZ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:389:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:407:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPROTATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:408:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPROTATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:409:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPROTATEZ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:411:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:441:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPSCALEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:443:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:457:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPSCALEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:459:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:472:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPSCALEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:473:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPSCALEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:475:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:509:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPTRANSLATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:511:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:526:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPTRANSLATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:528:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:547:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPTRANSLATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:548:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPTRANSLATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:550:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:571:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPTRANSLATEZ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:573:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:599:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPSTROKESTART); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:600:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expan +[TRACE] [xcode-macos] ded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:619:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPSTROKEEND); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:620:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:639:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPLINEWIDTH); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:640:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:659:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPSTROKECOLOR); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:660:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:679:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPFILLCOLOR); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:680:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:730:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPZINDEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:732:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:751:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPSHADOWCOLOR); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:753:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:772:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPSHADOWOPACITY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:774:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain- +[TRACE] [xcode-macos] self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:800:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:801:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:816:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:817:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:835:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:836:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:837:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:890:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(basicMask, TIPOPSCROLLVIEWCONTETNOFFSET); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:891:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(basicMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1006:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPLEFT); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1008:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1027:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPTOP); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1029:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnima +[TRACE] [xcode-macos] tor.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1053:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPWIDTH); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1055:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1068:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPHEIGHT); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1070:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1083:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPWIDTH); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1084:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPHEIGHT); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1087:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1108:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPOPACITY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1110:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1129:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPBACKGROUNDCOLOR); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1131:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1152:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPCOLOR); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1154:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1173:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior +[TRACE] [xcode-macos] [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPTINTCOLOR); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1175:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1194:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPBORDERWIDTH); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1196:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1215:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPBORDERCOLOR); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1217:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1236:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPBORDERRADIUS); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1238:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1270:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPROTATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1272:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1288:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPROTATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1290:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1306:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPROTATEZ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1308:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnima +[TRACE] [xcode-macos] tion' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1326:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPROTATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1327:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPROTATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1328:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPROTATEZ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1330:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1360:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPSCALEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1362:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1377:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPSCALEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1379:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1397:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPSCALEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1398:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPSCALEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1400:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1431:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPTRANSLATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1433:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisO +[TRACE] [xcode-macos] bject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1448:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPTRANSLATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1450:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1468:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPTRANSLATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1469:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPTRANSLATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1471:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1495:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPTRANSLATEZ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1497:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1523:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPSTROKESTART); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1524:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1543:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPSTROKEEND); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1544:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1563:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPLINEWIDTH); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1564:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1583:40: warning: block implicitly retains 'self'; explicitl +[TRACE] [xcode-macos] y mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPSTROKECOLOR); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1584:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1603:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPFILLCOLOR); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1604:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1661:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPZINDEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1663:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1682:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPSHADOWCOLOR); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1684:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1702:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPSHADOWOPACITY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1704:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1730:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1731:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1746:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1747:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Cla +[TRACE] [xcode-macos] sses/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1765:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1766:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1767:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1817:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(springMask, TIPOPSCROLLVIEWCONTETNOFFSET); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1818:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(springMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1920:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPLEFT); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1922:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1948:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPTOP); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1950:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1981:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPWIDTH); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:1983:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2001:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPHEIGHT); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2003:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2023:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPWIDTH); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2024:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPHEIGHT); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2026:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2038:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPWIDTH); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2039:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPHEIGHT); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2041:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2053:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPWIDTH); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2054:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPHEIGHT); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2057:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2080:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPOPACITY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2082:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2102:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPBORDERWIDTH); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2104:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2124:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this +[TRACE] [xcode-macos] is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPBORDERRADIUS); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2126:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2159:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPROTATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2161:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2178:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPROTATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2180:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2197:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPROTATEZ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2199:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2218:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPROTATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2219:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPROTATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2220:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPROTATEZ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2222:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2253:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPSCALEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2255:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2271:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPSCALEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2273:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2292:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPSCALEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2293:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPSCALEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2295:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2327:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPTRANSLATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2329:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2345:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPTRANSLATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2347:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2366:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPTRANSLATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2367:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPTRANSLATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2369:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2393:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPTRANSLATEZ); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-mas +[TRACE] [xcode-macos] ter-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2395:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2421:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPSTROKESTART); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2422:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2441:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPSTROKEEND); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2442:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2461:40: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPLINEWIDTH); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2462:37: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2520:36: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPSHADOWOPACITY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2522:33: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2548:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2549:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2564:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2565:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] /Classes/FBPOPAnimator.m:2583:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPSUBTRANSLATEX); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2584:44: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] unsetAnimationMask(decayMask, TIPOPSUBTRANSLATEY); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:19:52: note: expanded from macro 'unsetAnimationMask' +[TRACE] [xcode-macos] #define unsetAnimationMask( mask, animation ) do { mask &= (~animation); } while(0) +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:2585:41: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] finishAnimation(decayMask, callback); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.m:21:23: note: expanded from macro 'finishAnimation' +[TRACE] [xcode-macos] if ( TIPOPEMPTY == mask && callback ) [callback call:nil thisObject:nil]; \ +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] 217 warnings generated. +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target x86_64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu99 -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:17: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiBase.h:8:9: warning: double-quoted include "TiSharedConfig.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiSharedConfig.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiBase.h:627:10: warning: double-quoted include "TiThreading.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #include "TiThreading.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiBase.h:637:10: warning: double-quoted include "TiPublicAPI.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #include "TiPublicAPI.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APIModule.h:8:9: warning: double-quoted include "ObjcModule.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "ObjcModule.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APIModule.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ObjcModule.h:7:9: warning: double-quoted include "Module.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "Module.h" +[TRACE] [xcode-macos] ^~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APIModule.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ObjcModule.h:7: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Module.h:1:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiEvaluator.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APIModule.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ObjcModule.h:7: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Module.h:1: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiEvaluator.h:7:9: warning: double-quoted include "KrollContext.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "KrollContext.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APIModule.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ObjcModule.h:8:9: warning: double-quoted include "ObjcProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "ObjcProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:19: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APIModule.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ObjcModule.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ObjcProxy.h:7:9: warning: double-quoted include "TiEvaluator.h" in framework header, +[TRACE] [xcode-macos] expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiEvaluator.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:21: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSHTTPClient.h:21:9: warning: double-quoted include "APSHTTPHelper.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "APSHTTPHelper.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSHTTPClient.h:22:9: warning: double-quoted include "APSHTTPPostForm.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "APSHTTPPostForm.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSHTTPClient.h:23:9: warning: double-quoted include "APSHTTPRequest.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "APSHTTPRequest.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/APSHTTPClient.h:24:9: warning: double-quoted include "APSHTTPResponse.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "APSHTTPResponse.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:22: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ImageLoader.h:7:9: warning: double-quoted include "APSHTTPClient.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "APSHTTPClient.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ImageLoader.h:8:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiDimension.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:22: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ImageLoader.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiDimension.h:13:9: warning: double-quoted include "TiBase.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiBase.h" +[TRACE] [xcode-macos] ^~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Ti2DMatrix.h:8:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiProxy.h:7:9: warning: double-quoted include "KrollCallback.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "KrollCallback.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiProxy.h:7: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollCallback.h:8:9: warning: double-quoted include "KrollContext.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "KrollContext.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollCallback.h:9:9: warning: double-quoted include "KrollWrapper.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "KrollWrapper.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbe +[TRACE] [xcode-macos] nder/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiProxy.h:7: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollCallback.h:9: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollWrapper.h:8:9: warning: double-quoted include "KrollContext.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "KrollContext.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiProxy.h:8:9: warning: double-quoted include "KrollObject.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "KrollObject.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiProxy.h:9:9: warning: double-quoted include "TiBindingRunLoop.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiBindingRunLoop.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiProxy.h:9: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiBindingRunLoop.h:10:9: warning: double-quoted include "KrollContext.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "KrollContext.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:32: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Ti2DMatrix.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiProxy.h:10:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiEvaluator.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:33: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Ti3DMatrix.h:8:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:11:9: warning: double-quoted include "KrollBridge.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "KrollBridge.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:11: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollBridge.h:8:9: warning: double-quoted include "Bridge.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "Bridge.h" +[TRACE] [xcode-macos] ^~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:11: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/ +[TRACE] [xcode-macos] Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollBridge.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/Bridge.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:11: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/KrollBridge.h:9:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiEvaluator.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:12:9: warning: double-quoted include "TiHost.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiHost.h" +[TRACE] [xcode-macos] ^~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:12: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiHost.h:8:9: warning: double-quoted include "Bridge.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "Bridge.h" +[TRACE] [xcode-macos] ^~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiHost.h:9:9: warning: double-quoted include "Module.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "Module.h" +[TRACE] [xcode-macos] ^~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiHost.h:10:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiEvaluator.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiHost.h:11:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiHost.h:12:9: warning: double-quoted include "TiStylesheet.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiStylesheet.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13:9: warning: double-quoted include "TiRootViewController.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiRootViewController.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8:9: warning: double-quoted include "TiControllerProtocols.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiControllerProtocols.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8:9: warning: double-quoted include "TiViewProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiViewProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Class +[TRACE] [xcode-macos] es/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:8:9: warning: double-quoted include "TiRect.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiRect.h" +[TRACE] [xcode-macos] ^~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRect.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9:9: warning: double-quoted include "TiUIView.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiUIView.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:7:9: warning: double-quoted include "LayoutConstraint.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "LayoutConstraint.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/LayoutConstraint.h:8:9: warning: double-q +[TRACE] [xcode-macos] uoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiDimension.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/LayoutConstraint.h:9:9: warning: double-quoted include "TiUtils.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiUtils.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUtils.h:8:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiDimension.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUtils.h:25:9: warning: double-quoted include "TiBuffer.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiBuffer.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUtils.h:25: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiBuffer.h:8:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUtils.h:26:9: warning: double-quoted include "TiColor.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiColor.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipo +[TRACE] [xcode-macos] p/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUtils.h:26: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiColor.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUtils.h:27:9: warning: double-quoted include "TiFile.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiFile.h" +[TRACE] [xcode-macos] ^~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUtils.h:27: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiFile.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:7: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/LayoutConstraint.h:9: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUtils.h:28:9: warning: double-quoted include "WebFont.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "WebFont.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included f +[TRACE] [xcode-macos] rom /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:8:9: warning: double-quoted include "TiAnimation.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiAnimation.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiAnimation.h:7:9: warning: double-quoted include "LayoutConstraint.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "LayoutConstraint.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiAnimation.h:8:9: warning: double-quoted include "ListenerEntry.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "ListenerEntry.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiAnimation.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ListenerEntry.h:7:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiEvaluator.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ListenerEntry.h:8:9: warning: double-quoted include "TiModule.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiModule.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiAnimation.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/ListenerEntry.h:8: +[TRACE] [xcode-macos] /Users/marc +[TRACE] [xcode-macos] bender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiModule.h:7:9: warning: double-quoted include "Module.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "Module.h" +[TRACE] [xcode-macos] ^~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiModule.h:8:9: warning: double-quoted include "TiEvaluator.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiEvaluator.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiModule.h:9:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiModule.h:10:9: warning: double-quoted include "TiUtils.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiUtils.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiAnimation.h:9:9: warning: double-quoted include "TiColor.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiColor.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiAnimation.h:10:9: warning: double-quoted include "TiPoint.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiPoint.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiAnimation.h:10: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiPoint.h:7:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiDimension.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiPoint.h:8:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiAnimation.h:11:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:9:9: warning: double-quoted include "TiGradient.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiGradient.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:9: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiGradient.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiGradient.h:9:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiDimension.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiGradient.h:10:9: warning: double-quoted include "TiPoint.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiPoint.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:9: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIView.h:10:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:10:9: warning: double-quoted include "TiViewTemplate.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiViewTemplate.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:34: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiApp.h:13: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates +[TRACE] [xcode-macos] /tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiRootViewController.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiControllerProtocols.h:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewProxy.h:10: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewTemplate.h:7:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:35: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiBlob.h:7:9: warning: double-quoted include "ObjcProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "ObjcProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:40: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiFilesystemFileProxy.h:8:9: warning: double-quoted include "TiFile.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiFile.h" +[TRACE] [xcode-macos] ^~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:41: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiFilesystemFileStreamProxy.h:8:9: warning: double-quoted include "TiStreamProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiStreamProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:41: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiFilesystemFileStreamProxy.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiStreamProxy.h:8:9: warning: double-quoted include "KrollCallback.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "KrollCallback.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiStreamProxy.h:9:9: warning: double-quoted include "TiBase.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiBase.h" +[TRACE] [xcode-macos] ^~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiStreamProxy.h:10:9: warning: double-quoted include "TiBuffer.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiBuffer.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiStreamProxy.h:11:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:50: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiToolbar.h:7:9: warning: double-quoted include "TiViewProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiViewProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:51: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIViewProxy.h:8:9: warning: double-quoted include "TiViewProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiViewProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:52: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindow.h:7:9: warning: double-quoted include "TiUIView.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiUIView.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindowProxy.h:8:9: warning: double-quoted include "KrollBridge.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "KrollBridge.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindowProxy.h:9:9: warning: double-quoted include "TiUIView.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiUIView.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindowProxy.h:10:9: warning: double-quoted include "TiViewProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiViewProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11:9: warning: double-quoted include "TiWindowProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiWindowProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiWindowProxy.h:7:9: warning: double-quoted include "TiTab.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiTab.h" +[TRACE] [xcode-macos] ^~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiWindowProxy.h:7: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiTab.h:7:9: warning: double-quoted include "TiTabGroup.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiTabGroup.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiWindowProxy.h:8:9: warning: double-quoted include "TiViewController.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiViewController.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiWindowProxy.h:8: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiViewController.h:8:9: warning: double-quoted include "TiControllerProtocols.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiControllerProtocols.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiWindowProxy.h:9:9: warning: double-quoted include "TiViewProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiViewProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiWindowProxy.h:11:9: warning: double-quoted include "TiUIiOSTransitionAnimationProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiUIiOSTransitionAnimationProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included +[TRACE] [xcode-macos] from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:53: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIWindowProxy.h:11: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiWindowProxy.h:11: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIiOSTransitionAnimationProxy.h:8:9: warning: double-quoted include "TiAnimation.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiAnimation.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TiUIiOSTransitionAnimationProxy.h:9:9: warning: double-quoted include "TiProxy.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiProxy.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] While building module 'TitaniumKit' imported from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:8: +[TRACE] [xcode-macos] In file included from :1: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/TitaniumKit.h:58: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/TitaniumKit.framework/Headers/UIImage+Resize.h:9:9: warning: double-quoted include "TiDimension.h" in framework header, expected angle-bracketed instead [-Wquoted-include-in-framework-header] +[TRACE] [xcode-macos] #import "TiDimension.h" +[TRACE] [xcode-macos] ^~~~~~~~~~~~~~~ +[TRACE] [xcode-macos] +[TRACE] [xcode-macos] 98 warnings generated. +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m:8: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.h:9: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/FBPOPAnimator.h:20: +[TRACE] [xcode-macos] In file included from /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POP.h:18: +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/pop/POPAnimationExtras.h:19:43: warning: this function declaration is not a prototype [-Wstrict-prototypes] +[TRACE] [xcode-macos] extern CGFloat POPAnimationDragCoefficient(); +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] void +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m:100:10: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] [popAnimator basicAnimationWithProxy:proxy andProperties:properties completed:callback]; +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m:116:10: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] [popAnimator springAnimationWithProxy:proxy andProperties:properties completed:callback]; +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m:132:10: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] [popAnimator decayAnimationWithProxy:proxy andProperties:properties completed:callback]; +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModule.m:143:10: warning: block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self] +[TRACE] [xcode-macos] [popAnimator clearAllAnimations:proxy]; +[TRACE] [xcode-macos] ^ +[TRACE] [xcode-macos] self-> +[TRACE] [xcode-macos] 103 warnings generated. +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target x86_64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu99 -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/A +[TRACE] [xcode-macos] pplication -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o +[TRACE] [xcode-macos] CompileC /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export LANG\=en_US.US-ASCII +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target x86_64-apple-ios13.1-macabi -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu99 -fobjc-arc -fmodules -fmodules-cache-path\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/marcbender/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wno-parentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wno-unused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wint-conversion -Wno-bool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DTI_VERSION\= -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-generated-files.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap -iquote /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/GuyMcdoooooTipop-project-headers.hmap -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst/include -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -I/Users/marcbender/Library/Application -ISupport/Titanium/mobilesdk/osx/10.0.0.GA -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include -I/Users/marcbender/Library/Application\ Support/Titanium/mobilesdk/osx/10.0.0.GA/iphone/include/TiCore -isystem /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/include -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources-normal/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources/x86_64 -I/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/DerivedSources -F/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -iframework /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/System/Library/Frameworks -DTI_POST_1_2 -include /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/PrecompiledHeaders/SharedPrecompiledHeaders/7800180897248526736/GuyMcdoooooTipop_Prefix.pch -MMD -MT dependencies -MF /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.d --serialize-diagnostics /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleA +[TRACE] [xcode-macos] ssets.dia -c /Users/marcbender/Downloads/tipop-master-2/iphone/Classes/GuyMcdoooooTipopModuleAssets.m -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o +[TRACE] [xcode-macos] Libtool /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/Binary/libGuyMcdoooooTipop.a normal arm64 (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export MACOSX_DEPLOYMENT_TARGET\=10.15 +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool -static -arch_only arm64 -D -syslibroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -L/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -L/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/lib -L/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/maccatalyst -filelist /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop.LinkFileList -framework TitaniumKit -framework Foundation -framework SceneKit -dependency_info /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop_libtool_dependency_info.dat -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/Binary/libGuyMcdoooooTipop.a +[TRACE] [xcode-macos] Libtool /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/Binary/libGuyMcdoooooTipop.a normal x86_64 (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] export MACOSX_DEPLOYMENT_TARGET\=10.15 +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool -static -arch_only x86_64 -D -syslibroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk -L/Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/BuildProductsPath/Release-maccatalyst -L/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.0.sdk/System/iOSSupport/usr/lib -L/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/maccatalyst -filelist /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList -framework TitaniumKit -framework Foundation -framework SceneKit -dependency_info /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop_libtool_dependency_info.dat -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/Binary/libGuyMcdoooooTipop.a +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: file: /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/POPGeometry.o has no symbols +[TRACE] [xcode-macos] CreateUniversalBinary /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a normal arm64\ x86_64 (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool -static /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/arm64/Binary/libGuyMcdoooooTipop.a /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/Binary/libGuyMcdoooooTipop.a -o /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: for architecture: x86_64 file: /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/IntermediateBuildFilesPath/tipop.build/Release-maccatalyst/tipop.build/Objects-normal/x86_64/Binary/libGuyMcdoooooTipop.a(POPGeometry.o) has no symbols +[TRACE] [xcode-macos] Strip /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -S /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a +[TRACE] [xcode-macos] /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip: warning: input object file already stripped: /Users/marcbender/Downloads/tipop-master-2/iphone/build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a(POPGeometry.o) (for architecture x86_64) +[TRACE] [xcode-macos] SetOwnerAndGroup marcbender:staff /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] /usr/sbin/chown -RH marcbender:staff /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a +[TRACE] [xcode-macos] SetMode u+w,go-w,a+rX /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a (in target 'tipop' from project 'tipop') +[TRACE] [xcode-macos] cd /Users/marcbender/Downloads/tipop-master-2/iphone +[TRACE] [xcode-macos] /bin/chmod -RH u+w,go-w,a+rX /Users/marcbender/Downloads/tipop-master-2/iphone/Build/Intermediates.noindex/ArchiveIntermediates/tipop/InstallationBuildProductsLocation/usr/local/lib/libGuyMcdoooooTipop.a +[TRACE] [xcode-macos] ** ARCHIVE SUCCEEDED ** +[INFO] Creating universal library +[INFO] Looking for /Users/marcbender/Downloads/tipop-master-2/iphone/build/iphoneos.xcarchive/Products/usr/local/lib/libguy.mcdooooo.tipop.a +[DEBUG] Searching library: /Users/marcbender/Downloads/tipop-master-2/iphone/build/iphoneos.xcarchive/Products/usr/local/lib/libGuyMcdoooooTipop.a +[INFO] Looking for /Users/marcbender/Downloads/tipop-master-2/iphone/build/iphonesimulator.xcarchive/Products/usr/local/lib/libguy.mcdooooo.tipop.a +[DEBUG] Searching library: /Users/marcbender/Downloads/tipop-master-2/iphone/build/iphonesimulator.xcarchive/Products/usr/local/lib/libGuyMcdoooooTipop.a +[INFO] Looking for /Users/marcbender/Downloads/tipop-master-2/iphone/build/macosx.xcarchive/Products/usr/local/lib/libguy.mcdooooo.tipop.a +[DEBUG] Searching library: /Users/marcbender/Downloads/tipop-master-2/iphone/build/macosx.xcarchive/Products/usr/local/lib/libGuyMcdoooooTipop.a +[DEBUG] Running: /Applications/Xcode-beta.app/Contents/Developer/usr/bin/xcodebuild -create-xcframework -library /Users/marcbender/Downloads/tipop-master-2/iphone/build/iphoneos.xcarchive/Products/usr/local/lib/libguy.mcdooooo.tipop.a -headers /Users/marcbender/Downloads/tipop-master-2/iphone/build/dummyheader/ -library /Users/marcbender/Downloads/tipop-master-2/iphone/build/iphonesimulator.xcarchive/Products/usr/local/lib/libguy.mcdooooo.tipop.a -headers /Users/marcbender/Downloads/tipop-master-2/iphone/build/dummyheader/ -library /Users/marcbender/Downloads/tipop-master-2/iphone/build/macosx.xcarchive/Products/usr/local/lib/libguy.mcdooooo.tipop.a -headers /Users/marcbender/Downloads/tipop-master-2/iphone/build/dummyheader/ -output /Users/marcbender/Downloads/tipop-master-2/iphone/build/guy.mcdooooo.tipop.xcframework +[INFO] Verifying universal library +[INFO] Device has architectures: arm64 +[INFO] Simulator has architectures: arm64,x86_64 +[INFO] Mac has architectures: arm64,x86_64 +[INFO] binarylibFile is /Users/marcbender/Downloads/tipop-master-2/iphone/build/guy.mcdooooo.tipop.xcframework +[INFO] Creating module zip +[INFO] Writing module zip: /Users/marcbender/Downloads/tipop-master-2/iphone/dist/guy.mcdooooo.tipop-iphone-2.0.0.zip +[INFO] Project built successfully in 28s 170ms diff --git a/iphone/build/guy.mcdooooo.tipop.xcframework/Info.plist b/iphone/build/guy.mcdooooo.tipop.xcframework/Info.plist new file mode 100644 index 0000000..814f718 --- /dev/null +++ b/iphone/build/guy.mcdooooo.tipop.xcframework/Info.plist @@ -0,0 +1,61 @@ + + + + + AvailableLibraries + + + HeadersPath + Headers + LibraryIdentifier + ios-arm64 + LibraryPath + libguy.mcdooooo.tipop.a + SupportedArchitectures + + arm64 + + SupportedPlatform + ios + + + HeadersPath + Headers + LibraryIdentifier + ios-arm64_x86_64-simulator + LibraryPath + libguy.mcdooooo.tipop.a + SupportedArchitectures + + arm64 + x86_64 + + SupportedPlatform + ios + SupportedPlatformVariant + simulator + + + HeadersPath + Headers + LibraryIdentifier + ios-arm64_x86_64-maccatalyst + LibraryPath + libguy.mcdooooo.tipop.a + SupportedArchitectures + + arm64 + x86_64 + + SupportedPlatform + ios + SupportedPlatformVariant + maccatalyst + + + CFBundlePackageType + XFWK + XCFrameworkFormatVersion + 1.0 + + diff --git a/iphone/build/guy.mcdooooo.tipop.xcframework/ios-arm64/libguy.mcdooooo.tipop.a b/iphone/build/guy.mcdooooo.tipop.xcframework/ios-arm64/libguy.mcdooooo.tipop.a new file mode 100644 index 0000000..7f2e518 Binary files /dev/null and b/iphone/build/guy.mcdooooo.tipop.xcframework/ios-arm64/libguy.mcdooooo.tipop.a differ diff --git a/iphone/build/guy.mcdooooo.tipop.xcframework/ios-arm64_x86_64-maccatalyst/libguy.mcdooooo.tipop.a b/iphone/build/guy.mcdooooo.tipop.xcframework/ios-arm64_x86_64-maccatalyst/libguy.mcdooooo.tipop.a new file mode 100644 index 0000000..5e74a11 Binary files /dev/null and b/iphone/build/guy.mcdooooo.tipop.xcframework/ios-arm64_x86_64-maccatalyst/libguy.mcdooooo.tipop.a differ diff --git a/iphone/build/guy.mcdooooo.tipop.xcframework/ios-arm64_x86_64-simulator/libguy.mcdooooo.tipop.a b/iphone/build/guy.mcdooooo.tipop.xcframework/ios-arm64_x86_64-simulator/libguy.mcdooooo.tipop.a new file mode 100644 index 0000000..868895d Binary files /dev/null and b/iphone/build/guy.mcdooooo.tipop.xcframework/ios-arm64_x86_64-simulator/libguy.mcdooooo.tipop.a differ diff --git a/iphone/build/iphoneos.xcarchive/Info.plist b/iphone/build/iphoneos.xcarchive/Info.plist new file mode 100644 index 0000000..e4895d3 --- /dev/null +++ b/iphone/build/iphoneos.xcarchive/Info.plist @@ -0,0 +1,14 @@ + + + + + ArchiveVersion + 2 + CreationDate + 2021-09-13T17:07:54Z + Name + tipop + SchemeName + tipop + + diff --git a/iphone/build/iphoneos.xcarchive/Products/usr/local/lib/libguy.mcdooooo.tipop.a b/iphone/build/iphoneos.xcarchive/Products/usr/local/lib/libguy.mcdooooo.tipop.a new file mode 100644 index 0000000..7f2e518 Binary files /dev/null and b/iphone/build/iphoneos.xcarchive/Products/usr/local/lib/libguy.mcdooooo.tipop.a differ diff --git a/iphone/build/iphonesimulator.xcarchive/Info.plist b/iphone/build/iphonesimulator.xcarchive/Info.plist new file mode 100644 index 0000000..b14e223 --- /dev/null +++ b/iphone/build/iphonesimulator.xcarchive/Info.plist @@ -0,0 +1,14 @@ + + + + + ArchiveVersion + 2 + CreationDate + 2021-09-13T17:07:47Z + Name + tipop + SchemeName + tipop + + diff --git a/iphone/build/iphonesimulator.xcarchive/Products/usr/local/lib/libguy.mcdooooo.tipop.a b/iphone/build/iphonesimulator.xcarchive/Products/usr/local/lib/libguy.mcdooooo.tipop.a new file mode 100644 index 0000000..868895d Binary files /dev/null and b/iphone/build/iphonesimulator.xcarchive/Products/usr/local/lib/libguy.mcdooooo.tipop.a differ diff --git a/iphone/build/libguy.mcdooooo.tipop.a b/iphone/build/libguy.mcdooooo.tipop.a deleted file mode 100644 index 1c54c99..0000000 Binary files a/iphone/build/libguy.mcdooooo.tipop.a and /dev/null differ diff --git a/iphone/build/macosx.xcarchive/Info.plist b/iphone/build/macosx.xcarchive/Info.plist new file mode 100644 index 0000000..986e5ab --- /dev/null +++ b/iphone/build/macosx.xcarchive/Info.plist @@ -0,0 +1,14 @@ + + + + + ArchiveVersion + 2 + CreationDate + 2021-09-13T17:08:06Z + Name + tipop + SchemeName + tipop + + diff --git a/iphone/build/macosx.xcarchive/Products/usr/local/lib/libguy.mcdooooo.tipop.a b/iphone/build/macosx.xcarchive/Products/usr/local/lib/libguy.mcdooooo.tipop.a new file mode 100644 index 0000000..5e74a11 Binary files /dev/null and b/iphone/build/macosx.xcarchive/Products/usr/local/lib/libguy.mcdooooo.tipop.a differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap b/iphone/build/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap deleted file mode 100644 index dc511c4..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap b/iphone/build/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap deleted file mode 100644 index dc511c4..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap b/iphone/build/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap deleted file mode 100644 index bab4da4..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap b/iphone/build/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap deleted file mode 100644 index 56b6da5..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop-project-headers.hmap and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop.hmap b/iphone/build/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop.hmap deleted file mode 100644 index bab4da4..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/GuyMcdoooooTipop.hmap and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.d deleted file mode 100644 index 1dbdf4f..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.d +++ /dev/null @@ -1,3 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.o deleted file mode 100644 index e8a163d..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/FBPOPAnimator.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/FBPOPAnimator.d deleted file mode 100644 index 5a3b506..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/FBPOPAnimator.d +++ /dev/null @@ -1,62 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/FBPOPAnimator.m \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/FBPOPAnimator.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBase.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/defines.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiThreading.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiPublicAPI.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiHost.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiProxy.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiEvaluator.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/KrollContext.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiToJS.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiCore.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/Ti.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiBase.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiContextRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiObjectRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiValueRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/WebKitAvailability.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiStringRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiStringRefCF.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/KrollCallback.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/KrollObject.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBindingRunLoop.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/Bridge.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiStylesheet.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUtils.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiDimension.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiColor.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/WebFont.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiFile.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBuffer.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBlob.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiViewProxy.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUIView.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiAnimation.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiPoint.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/ListenerEntry.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiModule.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/LayoutConstraint.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiGradient.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiRect.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiViewTemplate.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUILabel.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUIScrollView.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/Ti3DMatrix.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POP.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimator.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPBasicAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCustomAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDecayAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPLayerExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/FBPOPAnimator.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/FBPOPAnimator.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/FBPOPAnimator.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/FBPOPAnimator.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/FBPOPAnimator.o deleted file mode 100644 index 3577ba7..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/FBPOPAnimator.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop.LinkFileList b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop.LinkFileList deleted file mode 100644 index 1b095c0..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipop.LinkFileList +++ /dev/null @@ -1,22 +0,0 @@ -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/CAMediaTimingFunction+ExtendedFunc.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationRuntime.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPPropertyAnimation.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationEvent.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPGeometry.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPVector.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPCGUtils.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimator.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/TransformationMatrix.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPLayerExtras.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPDecayAnimation.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPBasicAnimation.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPSpringAnimation.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationExtras.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/FBPOPAnimator.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPMath.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationTracer.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimation.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimatableProperty.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPCustomAnimation.o diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.d deleted file mode 100644 index f712d4a..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.d +++ /dev/null @@ -1,63 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/GuyMcdoooooTipopModule.m \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/GuyMcdoooooTipopModule.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiModule.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiProxy.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiEvaluator.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/KrollContext.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiToJS.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiCore.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/Ti.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiBase.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiContextRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiObjectRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiValueRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/WebKitAvailability.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiStringRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiStringRefCF.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/KrollCallback.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/KrollObject.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBindingRunLoop.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBase.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/defines.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiThreading.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiPublicAPI.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUtils.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiDimension.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiColor.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/WebFont.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiFile.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBuffer.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBlob.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/FBPOPAnimator.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiHost.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/Bridge.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiStylesheet.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiViewProxy.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUIView.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiAnimation.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiPoint.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/ListenerEntry.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/LayoutConstraint.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiGradient.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiRect.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiViewTemplate.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUILabel.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUIScrollView.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/Ti3DMatrix.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POP.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimator.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPBasicAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCustomAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDecayAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPLayerExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.o deleted file mode 100644 index e8e20f5..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModule.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.d deleted file mode 100644 index cc8822c..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.d +++ /dev/null @@ -1,3 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/GuyMcdoooooTipopModuleAssets.m \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/GuyMcdoooooTipopModuleAssets.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.o deleted file mode 100644 index 61ea26c..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/GuyMcdoooooTipopModuleAssets.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimatableProperty.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimatableProperty.d deleted file mode 100644 index 96d5ee4..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimatableProperty.d +++ /dev/null @@ -1,9 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCGUtils.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPLayerExtras.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimatableProperty.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimatableProperty.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimatableProperty.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimatableProperty.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimatableProperty.o deleted file mode 100644 index 89b1800..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimatableProperty.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimation.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimation.d deleted file mode 100644 index 6f9013e..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimation.d +++ /dev/null @@ -1,20 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatorPrivate.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimator.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimation.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimation.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimation.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimation.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimation.o deleted file mode 100644 index 2fff192..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimation.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationEvent.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationEvent.d deleted file mode 100644 index bbbe630..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationEvent.d +++ /dev/null @@ -1,4 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEventInternal.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationEvent.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationEvent.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationEvent.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationEvent.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationEvent.o deleted file mode 100644 index f23f083..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationEvent.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationExtras.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationExtras.d deleted file mode 100644 index f5c3d39..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationExtras.d +++ /dev/null @@ -1,14 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationExtras.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationPrivate.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationExtras.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationExtras.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationExtras.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationExtras.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationExtras.o deleted file mode 100644 index c75fc13..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationExtras.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationRuntime.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationRuntime.d deleted file mode 100644 index 32fcc34..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationRuntime.d +++ /dev/null @@ -1,8 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCGUtils.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationRuntime.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationRuntime.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationRuntime.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationRuntime.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationRuntime.o deleted file mode 100644 index 653a8f1..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationRuntime.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationTracer.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationTracer.d deleted file mode 100644 index 34dd100..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationTracer.d +++ /dev/null @@ -1,18 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEventInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationTracer.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationTracer.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationTracer.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationTracer.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationTracer.o deleted file mode 100644 index 67bee50..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimationTracer.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimator.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimator.d deleted file mode 100644 index a5fb452..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimator.d +++ /dev/null @@ -1,24 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimator.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimator.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatorPrivate.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPBasicAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPBasicAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDecayAnimation.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimator.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimator.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimator.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimator.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimator.o deleted file mode 100644 index f74614d..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPAnimator.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPBasicAnimation.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPBasicAnimation.d deleted file mode 100644 index a8647d0..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPBasicAnimation.d +++ /dev/null @@ -1,19 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPBasicAnimation.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPBasicAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPBasicAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPBasicAnimation.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPBasicAnimation.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPBasicAnimation.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPBasicAnimation.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPBasicAnimation.o deleted file mode 100644 index c0cf4cb..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPBasicAnimation.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPCGUtils.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPCGUtils.d deleted file mode 100644 index c43a982..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPCGUtils.d +++ /dev/null @@ -1,4 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCGUtils.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCGUtils.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPCGUtils.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPCGUtils.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPCGUtils.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPCGUtils.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPCGUtils.o deleted file mode 100644 index befdc34..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPCGUtils.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPCustomAnimation.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPCustomAnimation.d deleted file mode 100644 index 67e900b..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPCustomAnimation.d +++ /dev/null @@ -1,15 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCustomAnimation.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCustomAnimation.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPCustomAnimation.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPCustomAnimation.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPCustomAnimation.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPCustomAnimation.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPCustomAnimation.o deleted file mode 100644 index cad1192..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPCustomAnimation.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPDecayAnimation.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPDecayAnimation.d deleted file mode 100644 index 29e9b14..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPDecayAnimation.d +++ /dev/null @@ -1,19 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDecayAnimation.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDecayAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDecayAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPDecayAnimation.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPDecayAnimation.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPDecayAnimation.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPDecayAnimation.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPDecayAnimation.o deleted file mode 100644 index 0d30f9c..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPDecayAnimation.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPGeometry.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPGeometry.d deleted file mode 100644 index 6e9f335..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPGeometry.d +++ /dev/null @@ -1,4 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPGeometry.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPGeometry.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPGeometry.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPGeometry.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPGeometry.o deleted file mode 100644 index ba37f03..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPGeometry.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPLayerExtras.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPLayerExtras.d deleted file mode 100644 index cf9243e..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPLayerExtras.d +++ /dev/null @@ -1,5 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPLayerExtras.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPLayerExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/WebCore/TransformationMatrix.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPLayerExtras.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPLayerExtras.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPLayerExtras.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPLayerExtras.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPLayerExtras.o deleted file mode 100644 index 618cb13..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPLayerExtras.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPMath.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPMath.d deleted file mode 100644 index f612ff8..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPMath.d +++ /dev/null @@ -1,11 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationPrivate.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/WebCore/UnitBezier.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPMath.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPMath.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPMath.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPMath.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPMath.o deleted file mode 100644 index d69ecc9..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPMath.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPPropertyAnimation.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPPropertyAnimation.d deleted file mode 100644 index 567b1b8..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPPropertyAnimation.d +++ /dev/null @@ -1,17 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPPropertyAnimation.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPPropertyAnimation.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPPropertyAnimation.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPPropertyAnimation.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPPropertyAnimation.o deleted file mode 100644 index b2161ca..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPPropertyAnimation.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPSpringAnimation.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPSpringAnimation.d deleted file mode 100644 index e4ee2c1..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPSpringAnimation.d +++ /dev/null @@ -1,20 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPSpringAnimation.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPSpringAnimation.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPSpringAnimation.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPSpringAnimation.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPSpringAnimation.o deleted file mode 100644 index 983c1ff..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPSpringAnimation.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPVector.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPVector.d deleted file mode 100644 index dda142d..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPVector.d +++ /dev/null @@ -1,6 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCGUtils.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPVector.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPVector.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPVector.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPVector.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPVector.o deleted file mode 100644 index 8efa346..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/POPVector.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/TiUIScrollView.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/TiUIScrollView.d deleted file mode 100644 index 9731388..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/TiUIScrollView.d +++ /dev/null @@ -1,2 +0,0 @@ -dependencies: \ - /Users/logicdesign/Developer/Titanium_Studio_Workspace/tipop/iphone/Classes/TiUIScrollView.m diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/TiUIScrollView.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/TiUIScrollView.dia deleted file mode 100644 index bb0ec51..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/TiUIScrollView.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/TiUIScrollView.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/TiUIScrollView.o deleted file mode 100644 index 6aa056b..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/TiUIScrollView.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/TransformationMatrix.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/TransformationMatrix.d deleted file mode 100644 index 8228e0e..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/TransformationMatrix.d +++ /dev/null @@ -1,4 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/WebCore/TransformationMatrix.cpp \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/WebCore/TransformationMatrix.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/WebCore/FloatConversion.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/TransformationMatrix.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/TransformationMatrix.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/TransformationMatrix.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/TransformationMatrix.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/TransformationMatrix.o deleted file mode 100644 index c595762..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/TransformationMatrix.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/libGuyMcdoooooTipop.a b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/libGuyMcdoooooTipop.a deleted file mode 100644 index 38820e0..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/arm64/libGuyMcdoooooTipop.a and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/CAMediaTimingFunction+ExtendedFunc.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/CAMediaTimingFunction+ExtendedFunc.d deleted file mode 100644 index 1dbdf4f..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/CAMediaTimingFunction+ExtendedFunc.d +++ /dev/null @@ -1,3 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/CAMediaTimingFunction+ExtendedFunc.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/CAMediaTimingFunction+ExtendedFunc.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/CAMediaTimingFunction+ExtendedFunc.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/CAMediaTimingFunction+ExtendedFunc.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/CAMediaTimingFunction+ExtendedFunc.o deleted file mode 100644 index 45033a8..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/CAMediaTimingFunction+ExtendedFunc.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/FBPOPAnimator.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/FBPOPAnimator.d deleted file mode 100644 index 5a3b506..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/FBPOPAnimator.d +++ /dev/null @@ -1,62 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/FBPOPAnimator.m \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/FBPOPAnimator.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBase.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/defines.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiThreading.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiPublicAPI.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiHost.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiProxy.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiEvaluator.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/KrollContext.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiToJS.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiCore.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/Ti.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiBase.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiContextRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiObjectRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiValueRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/WebKitAvailability.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiStringRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiStringRefCF.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/KrollCallback.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/KrollObject.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBindingRunLoop.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/Bridge.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiStylesheet.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUtils.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiDimension.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiColor.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/WebFont.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiFile.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBuffer.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBlob.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiViewProxy.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUIView.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiAnimation.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiPoint.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/ListenerEntry.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiModule.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/LayoutConstraint.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiGradient.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiRect.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiViewTemplate.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUILabel.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUIScrollView.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/Ti3DMatrix.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POP.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimator.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPBasicAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCustomAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDecayAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPLayerExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/FBPOPAnimator.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/FBPOPAnimator.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/FBPOPAnimator.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/FBPOPAnimator.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/FBPOPAnimator.o deleted file mode 100644 index 5423bd3..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/FBPOPAnimator.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/GuyMcdoooooTipop.LinkFileList b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/GuyMcdoooooTipop.LinkFileList deleted file mode 100644 index 2014232..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/GuyMcdoooooTipop.LinkFileList +++ /dev/null @@ -1,22 +0,0 @@ -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/CAMediaTimingFunction+ExtendedFunc.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/GuyMcdoooooTipopModule.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationRuntime.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPPropertyAnimation.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationEvent.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPGeometry.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/GuyMcdoooooTipopModuleAssets.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPVector.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPCGUtils.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimator.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/TransformationMatrix.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPLayerExtras.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPDecayAnimation.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPBasicAnimation.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPSpringAnimation.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationExtras.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/FBPOPAnimator.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPMath.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationTracer.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimation.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimatableProperty.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPCustomAnimation.o diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/GuyMcdoooooTipopModule.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/GuyMcdoooooTipopModule.d deleted file mode 100644 index f712d4a..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/GuyMcdoooooTipopModule.d +++ /dev/null @@ -1,63 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/GuyMcdoooooTipopModule.m \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/GuyMcdoooooTipopModule.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiModule.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiProxy.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiEvaluator.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/KrollContext.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiToJS.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiCore.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/Ti.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiBase.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiContextRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiObjectRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiValueRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/WebKitAvailability.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiStringRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiStringRefCF.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/KrollCallback.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/KrollObject.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBindingRunLoop.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBase.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/defines.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiThreading.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiPublicAPI.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUtils.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiDimension.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiColor.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/WebFont.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiFile.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBuffer.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBlob.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/FBPOPAnimator.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiHost.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/Bridge.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiStylesheet.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiViewProxy.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUIView.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiAnimation.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiPoint.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/ListenerEntry.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/LayoutConstraint.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiGradient.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiRect.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiViewTemplate.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUILabel.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUIScrollView.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/Ti3DMatrix.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POP.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimator.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPBasicAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCustomAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDecayAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPLayerExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/GuyMcdoooooTipopModule.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/GuyMcdoooooTipopModule.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/GuyMcdoooooTipopModule.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/GuyMcdoooooTipopModule.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/GuyMcdoooooTipopModule.o deleted file mode 100644 index 6b7d791..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/GuyMcdoooooTipopModule.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/GuyMcdoooooTipopModuleAssets.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/GuyMcdoooooTipopModuleAssets.d deleted file mode 100644 index cc8822c..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/GuyMcdoooooTipopModuleAssets.d +++ /dev/null @@ -1,3 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/GuyMcdoooooTipopModuleAssets.m \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/GuyMcdoooooTipopModuleAssets.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/GuyMcdoooooTipopModuleAssets.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/GuyMcdoooooTipopModuleAssets.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/GuyMcdoooooTipopModuleAssets.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/GuyMcdoooooTipopModuleAssets.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/GuyMcdoooooTipopModuleAssets.o deleted file mode 100644 index e155ebc..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/GuyMcdoooooTipopModuleAssets.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimatableProperty.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimatableProperty.d deleted file mode 100644 index 96d5ee4..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimatableProperty.d +++ /dev/null @@ -1,9 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCGUtils.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPLayerExtras.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimatableProperty.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimatableProperty.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimatableProperty.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimatableProperty.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimatableProperty.o deleted file mode 100644 index c9652d6..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimatableProperty.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimation.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimation.d deleted file mode 100644 index 6f9013e..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimation.d +++ /dev/null @@ -1,20 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatorPrivate.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimator.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimation.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimation.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimation.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimation.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimation.o deleted file mode 100644 index aa04c69..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimation.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationEvent.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationEvent.d deleted file mode 100644 index bbbe630..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationEvent.d +++ /dev/null @@ -1,4 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEventInternal.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationEvent.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationEvent.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationEvent.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationEvent.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationEvent.o deleted file mode 100644 index 346bceb..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationEvent.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationExtras.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationExtras.d deleted file mode 100644 index f5c3d39..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationExtras.d +++ /dev/null @@ -1,14 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationExtras.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationPrivate.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationExtras.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationExtras.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationExtras.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationExtras.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationExtras.o deleted file mode 100644 index 3861039..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationExtras.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationRuntime.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationRuntime.d deleted file mode 100644 index 32fcc34..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationRuntime.d +++ /dev/null @@ -1,8 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCGUtils.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationRuntime.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationRuntime.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationRuntime.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationRuntime.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationRuntime.o deleted file mode 100644 index f7a4efd..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationRuntime.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationTracer.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationTracer.d deleted file mode 100644 index 34dd100..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationTracer.d +++ /dev/null @@ -1,18 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEventInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationTracer.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationTracer.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationTracer.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationTracer.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationTracer.o deleted file mode 100644 index d819ecb..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimationTracer.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimator.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimator.d deleted file mode 100644 index a5fb452..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimator.d +++ /dev/null @@ -1,24 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimator.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimator.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatorPrivate.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPBasicAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPBasicAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDecayAnimation.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimator.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimator.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimator.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimator.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimator.o deleted file mode 100644 index 610cacc..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPAnimator.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPBasicAnimation.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPBasicAnimation.d deleted file mode 100644 index a8647d0..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPBasicAnimation.d +++ /dev/null @@ -1,19 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPBasicAnimation.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPBasicAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPBasicAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPBasicAnimation.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPBasicAnimation.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPBasicAnimation.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPBasicAnimation.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPBasicAnimation.o deleted file mode 100644 index 50b9ce3..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPBasicAnimation.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPCGUtils.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPCGUtils.d deleted file mode 100644 index c43a982..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPCGUtils.d +++ /dev/null @@ -1,4 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCGUtils.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCGUtils.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPCGUtils.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPCGUtils.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPCGUtils.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPCGUtils.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPCGUtils.o deleted file mode 100644 index 065c242..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPCGUtils.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPCustomAnimation.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPCustomAnimation.d deleted file mode 100644 index 67e900b..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPCustomAnimation.d +++ /dev/null @@ -1,15 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCustomAnimation.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCustomAnimation.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPCustomAnimation.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPCustomAnimation.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPCustomAnimation.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPCustomAnimation.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPCustomAnimation.o deleted file mode 100644 index b8cee3e..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPCustomAnimation.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPDecayAnimation.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPDecayAnimation.d deleted file mode 100644 index 29e9b14..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPDecayAnimation.d +++ /dev/null @@ -1,19 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDecayAnimation.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDecayAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDecayAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPDecayAnimation.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPDecayAnimation.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPDecayAnimation.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPDecayAnimation.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPDecayAnimation.o deleted file mode 100644 index 35f6bcf..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPDecayAnimation.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPGeometry.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPGeometry.d deleted file mode 100644 index 6e9f335..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPGeometry.d +++ /dev/null @@ -1,4 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPGeometry.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPGeometry.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPGeometry.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPGeometry.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPGeometry.o deleted file mode 100644 index 4adb0da..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPGeometry.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPLayerExtras.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPLayerExtras.d deleted file mode 100644 index cf9243e..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPLayerExtras.d +++ /dev/null @@ -1,5 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPLayerExtras.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPLayerExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/WebCore/TransformationMatrix.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPLayerExtras.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPLayerExtras.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPLayerExtras.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPLayerExtras.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPLayerExtras.o deleted file mode 100644 index 71aab69..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPLayerExtras.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPMath.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPMath.d deleted file mode 100644 index f612ff8..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPMath.d +++ /dev/null @@ -1,11 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationPrivate.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/WebCore/UnitBezier.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPMath.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPMath.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPMath.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPMath.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPMath.o deleted file mode 100644 index c2a726c..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPMath.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPPropertyAnimation.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPPropertyAnimation.d deleted file mode 100644 index 567b1b8..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPPropertyAnimation.d +++ /dev/null @@ -1,17 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPPropertyAnimation.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPPropertyAnimation.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPPropertyAnimation.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPPropertyAnimation.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPPropertyAnimation.o deleted file mode 100644 index 1357419..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPPropertyAnimation.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPSpringAnimation.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPSpringAnimation.d deleted file mode 100644 index e4ee2c1..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPSpringAnimation.d +++ /dev/null @@ -1,20 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPSpringAnimation.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPSpringAnimation.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPSpringAnimation.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPSpringAnimation.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPSpringAnimation.o deleted file mode 100644 index 4fd203a..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPSpringAnimation.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPVector.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPVector.d deleted file mode 100644 index dda142d..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPVector.d +++ /dev/null @@ -1,6 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCGUtils.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPVector.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPVector.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPVector.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPVector.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPVector.o deleted file mode 100644 index aab0197..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/POPVector.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/TiUIScrollView.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/TiUIScrollView.d deleted file mode 100644 index 9731388..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/TiUIScrollView.d +++ /dev/null @@ -1,2 +0,0 @@ -dependencies: \ - /Users/logicdesign/Developer/Titanium_Studio_Workspace/tipop/iphone/Classes/TiUIScrollView.m diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/TiUIScrollView.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/TiUIScrollView.dia deleted file mode 100644 index bb0ec51..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/TiUIScrollView.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/TiUIScrollView.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/TiUIScrollView.o deleted file mode 100644 index 0181ffc..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/TiUIScrollView.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/TransformationMatrix.d b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/TransformationMatrix.d deleted file mode 100644 index 8228e0e..0000000 --- a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/TransformationMatrix.d +++ /dev/null @@ -1,4 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/WebCore/TransformationMatrix.cpp \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/WebCore/TransformationMatrix.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/WebCore/FloatConversion.h diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/TransformationMatrix.dia b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/TransformationMatrix.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/TransformationMatrix.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/TransformationMatrix.o b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/TransformationMatrix.o deleted file mode 100644 index 936c3af..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/TransformationMatrix.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/libGuyMcdoooooTipop.a b/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/libGuyMcdoooooTipop.a deleted file mode 100644 index 72992fe..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/Objects-normal/armv7/libGuyMcdoooooTipop.a and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/dgph b/iphone/build/tipop.build/Release-iphoneos/tipop.build/dgph deleted file mode 100644 index 261836c..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/dgph and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphoneos/tipop.build/dgph~ b/iphone/build/tipop.build/Release-iphoneos/tipop.build/dgph~ deleted file mode 100644 index 05f36ea..0000000 Binary files a/iphone/build/tipop.build/Release-iphoneos/tipop.build/dgph~ and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap deleted file mode 100644 index dc511c4..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-non-framework-target-headers.hmap and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap deleted file mode 100644 index dc511c4..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-all-target-headers.hmap and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap deleted file mode 100644 index bab4da4..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-own-target-headers.hmap and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap deleted file mode 100644 index 56b6da5..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop-project-headers.hmap and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop.hmap b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop.hmap deleted file mode 100644 index bab4da4..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/GuyMcdoooooTipop.hmap and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/CAMediaTimingFunction+ExtendedFunc.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/CAMediaTimingFunction+ExtendedFunc.d deleted file mode 100644 index 1dbdf4f..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/CAMediaTimingFunction+ExtendedFunc.d +++ /dev/null @@ -1,3 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/CAMediaTimingFunction+ExtendedFunc.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/CAMediaTimingFunction+ExtendedFunc.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/CAMediaTimingFunction+ExtendedFunc.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/CAMediaTimingFunction+ExtendedFunc.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/CAMediaTimingFunction+ExtendedFunc.o deleted file mode 100644 index 5b0a12c..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/CAMediaTimingFunction+ExtendedFunc.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/FBPOPAnimator.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/FBPOPAnimator.d deleted file mode 100644 index 5a3b506..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/FBPOPAnimator.d +++ /dev/null @@ -1,62 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/FBPOPAnimator.m \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/FBPOPAnimator.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBase.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/defines.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiThreading.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiPublicAPI.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiHost.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiProxy.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiEvaluator.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/KrollContext.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiToJS.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiCore.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/Ti.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiBase.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiContextRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiObjectRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiValueRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/WebKitAvailability.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiStringRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiStringRefCF.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/KrollCallback.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/KrollObject.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBindingRunLoop.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/Bridge.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiStylesheet.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUtils.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiDimension.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiColor.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/WebFont.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiFile.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBuffer.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBlob.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiViewProxy.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUIView.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiAnimation.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiPoint.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/ListenerEntry.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiModule.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/LayoutConstraint.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiGradient.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiRect.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiViewTemplate.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUILabel.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUIScrollView.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/Ti3DMatrix.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POP.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimator.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPBasicAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCustomAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDecayAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPLayerExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/FBPOPAnimator.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/FBPOPAnimator.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/FBPOPAnimator.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/FBPOPAnimator.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/FBPOPAnimator.o deleted file mode 100644 index 27489ba..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/FBPOPAnimator.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/GuyMcdoooooTipop.LinkFileList b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/GuyMcdoooooTipop.LinkFileList deleted file mode 100644 index 319ca3b..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/GuyMcdoooooTipop.LinkFileList +++ /dev/null @@ -1,22 +0,0 @@ -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/CAMediaTimingFunction+ExtendedFunc.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/GuyMcdoooooTipopModule.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationRuntime.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPPropertyAnimation.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationEvent.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPGeometry.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/GuyMcdoooooTipopModuleAssets.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPVector.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPCGUtils.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimator.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/TransformationMatrix.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPLayerExtras.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPDecayAnimation.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPBasicAnimation.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPSpringAnimation.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationExtras.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/FBPOPAnimator.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPMath.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationTracer.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimation.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimatableProperty.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPCustomAnimation.o diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/GuyMcdoooooTipopModule.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/GuyMcdoooooTipopModule.d deleted file mode 100644 index f712d4a..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/GuyMcdoooooTipopModule.d +++ /dev/null @@ -1,63 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/GuyMcdoooooTipopModule.m \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/GuyMcdoooooTipopModule.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiModule.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiProxy.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiEvaluator.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/KrollContext.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiToJS.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiCore.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/Ti.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiBase.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiContextRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiObjectRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiValueRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/WebKitAvailability.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiStringRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiStringRefCF.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/KrollCallback.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/KrollObject.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBindingRunLoop.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBase.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/defines.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiThreading.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiPublicAPI.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUtils.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiDimension.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiColor.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/WebFont.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiFile.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBuffer.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBlob.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/FBPOPAnimator.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiHost.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/Bridge.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiStylesheet.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiViewProxy.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUIView.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiAnimation.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiPoint.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/ListenerEntry.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/LayoutConstraint.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiGradient.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiRect.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiViewTemplate.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUILabel.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUIScrollView.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/Ti3DMatrix.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POP.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimator.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPBasicAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCustomAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDecayAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPLayerExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/GuyMcdoooooTipopModule.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/GuyMcdoooooTipopModule.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/GuyMcdoooooTipopModule.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/GuyMcdoooooTipopModule.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/GuyMcdoooooTipopModule.o deleted file mode 100644 index 0138618..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/GuyMcdoooooTipopModule.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/GuyMcdoooooTipopModuleAssets.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/GuyMcdoooooTipopModuleAssets.d deleted file mode 100644 index cc8822c..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/GuyMcdoooooTipopModuleAssets.d +++ /dev/null @@ -1,3 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/GuyMcdoooooTipopModuleAssets.m \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/GuyMcdoooooTipopModuleAssets.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/GuyMcdoooooTipopModuleAssets.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/GuyMcdoooooTipopModuleAssets.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/GuyMcdoooooTipopModuleAssets.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/GuyMcdoooooTipopModuleAssets.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/GuyMcdoooooTipopModuleAssets.o deleted file mode 100644 index ca7112f..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/GuyMcdoooooTipopModuleAssets.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimatableProperty.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimatableProperty.d deleted file mode 100644 index 96d5ee4..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimatableProperty.d +++ /dev/null @@ -1,9 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCGUtils.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPLayerExtras.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimatableProperty.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimatableProperty.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimatableProperty.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimatableProperty.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimatableProperty.o deleted file mode 100644 index 2f6bc60..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimatableProperty.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimation.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimation.d deleted file mode 100644 index 6f9013e..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimation.d +++ /dev/null @@ -1,20 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatorPrivate.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimator.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimation.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimation.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimation.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimation.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimation.o deleted file mode 100644 index b464711..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimation.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationEvent.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationEvent.d deleted file mode 100644 index bbbe630..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationEvent.d +++ /dev/null @@ -1,4 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEventInternal.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationEvent.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationEvent.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationEvent.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationEvent.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationEvent.o deleted file mode 100644 index 00d0d1d..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationEvent.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationExtras.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationExtras.d deleted file mode 100644 index f5c3d39..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationExtras.d +++ /dev/null @@ -1,14 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationExtras.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationPrivate.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationExtras.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationExtras.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationExtras.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationExtras.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationExtras.o deleted file mode 100644 index 4820bcd..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationExtras.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationRuntime.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationRuntime.d deleted file mode 100644 index 32fcc34..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationRuntime.d +++ /dev/null @@ -1,8 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCGUtils.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationRuntime.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationRuntime.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationRuntime.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationRuntime.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationRuntime.o deleted file mode 100644 index 3065fd4..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationRuntime.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationTracer.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationTracer.d deleted file mode 100644 index 34dd100..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationTracer.d +++ /dev/null @@ -1,18 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEventInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationTracer.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationTracer.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationTracer.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationTracer.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationTracer.o deleted file mode 100644 index 2aa9b94..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimationTracer.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimator.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimator.d deleted file mode 100644 index a5fb452..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimator.d +++ /dev/null @@ -1,24 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimator.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimator.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatorPrivate.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPBasicAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPBasicAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDecayAnimation.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimator.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimator.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimator.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimator.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimator.o deleted file mode 100644 index f821101..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPAnimator.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPBasicAnimation.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPBasicAnimation.d deleted file mode 100644 index a8647d0..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPBasicAnimation.d +++ /dev/null @@ -1,19 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPBasicAnimation.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPBasicAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPBasicAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPBasicAnimation.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPBasicAnimation.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPBasicAnimation.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPBasicAnimation.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPBasicAnimation.o deleted file mode 100644 index 120a1cb..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPBasicAnimation.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPCGUtils.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPCGUtils.d deleted file mode 100644 index c43a982..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPCGUtils.d +++ /dev/null @@ -1,4 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCGUtils.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCGUtils.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPCGUtils.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPCGUtils.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPCGUtils.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPCGUtils.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPCGUtils.o deleted file mode 100644 index 4289197..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPCGUtils.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPCustomAnimation.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPCustomAnimation.d deleted file mode 100644 index 67e900b..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPCustomAnimation.d +++ /dev/null @@ -1,15 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCustomAnimation.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCustomAnimation.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPCustomAnimation.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPCustomAnimation.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPCustomAnimation.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPCustomAnimation.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPCustomAnimation.o deleted file mode 100644 index f1e8610..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPCustomAnimation.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPDecayAnimation.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPDecayAnimation.d deleted file mode 100644 index 29e9b14..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPDecayAnimation.d +++ /dev/null @@ -1,19 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDecayAnimation.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDecayAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDecayAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPDecayAnimation.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPDecayAnimation.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPDecayAnimation.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPDecayAnimation.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPDecayAnimation.o deleted file mode 100644 index 0edb328..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPDecayAnimation.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPGeometry.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPGeometry.d deleted file mode 100644 index 6e9f335..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPGeometry.d +++ /dev/null @@ -1,4 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPGeometry.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPGeometry.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPGeometry.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPGeometry.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPGeometry.o deleted file mode 100644 index a0fd1d0..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPGeometry.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPLayerExtras.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPLayerExtras.d deleted file mode 100644 index cf9243e..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPLayerExtras.d +++ /dev/null @@ -1,5 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPLayerExtras.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPLayerExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/WebCore/TransformationMatrix.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPLayerExtras.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPLayerExtras.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPLayerExtras.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPLayerExtras.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPLayerExtras.o deleted file mode 100644 index 18080ef..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPLayerExtras.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPMath.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPMath.d deleted file mode 100644 index f612ff8..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPMath.d +++ /dev/null @@ -1,11 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationPrivate.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/WebCore/UnitBezier.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPMath.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPMath.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPMath.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPMath.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPMath.o deleted file mode 100644 index 003d660..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPMath.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPPropertyAnimation.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPPropertyAnimation.d deleted file mode 100644 index 567b1b8..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPPropertyAnimation.d +++ /dev/null @@ -1,17 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPPropertyAnimation.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPPropertyAnimation.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPPropertyAnimation.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPPropertyAnimation.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPPropertyAnimation.o deleted file mode 100644 index 9acfaca..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPPropertyAnimation.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPSpringAnimation.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPSpringAnimation.d deleted file mode 100644 index e4ee2c1..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPSpringAnimation.d +++ /dev/null @@ -1,20 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPSpringAnimation.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPSpringAnimation.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPSpringAnimation.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPSpringAnimation.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPSpringAnimation.o deleted file mode 100644 index 52b6e89..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPSpringAnimation.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPVector.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPVector.d deleted file mode 100644 index dda142d..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPVector.d +++ /dev/null @@ -1,6 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCGUtils.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPVector.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPVector.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPVector.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPVector.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPVector.o deleted file mode 100644 index c14f32e..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/POPVector.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/TiUIScrollView.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/TiUIScrollView.d deleted file mode 100644 index 9731388..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/TiUIScrollView.d +++ /dev/null @@ -1,2 +0,0 @@ -dependencies: \ - /Users/logicdesign/Developer/Titanium_Studio_Workspace/tipop/iphone/Classes/TiUIScrollView.m diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/TiUIScrollView.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/TiUIScrollView.dia deleted file mode 100644 index bb0ec51..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/TiUIScrollView.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/TiUIScrollView.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/TiUIScrollView.o deleted file mode 100644 index ee5a96c..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/TiUIScrollView.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/TransformationMatrix.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/TransformationMatrix.d deleted file mode 100644 index 8228e0e..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/TransformationMatrix.d +++ /dev/null @@ -1,4 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/WebCore/TransformationMatrix.cpp \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/WebCore/TransformationMatrix.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/WebCore/FloatConversion.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/TransformationMatrix.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/TransformationMatrix.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/TransformationMatrix.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/TransformationMatrix.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/TransformationMatrix.o deleted file mode 100644 index 2e4fd5b..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/TransformationMatrix.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/libGuyMcdoooooTipop.a b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/libGuyMcdoooooTipop.a deleted file mode 100644 index e7c7796..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/i386/libGuyMcdoooooTipop.a and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.d deleted file mode 100644 index 1dbdf4f..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.d +++ /dev/null @@ -1,3 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.m \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o deleted file mode 100644 index 06e446a..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/FBPOPAnimator.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/FBPOPAnimator.d deleted file mode 100644 index 5a3b506..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/FBPOPAnimator.d +++ /dev/null @@ -1,62 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/FBPOPAnimator.m \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/FBPOPAnimator.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBase.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/defines.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiThreading.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiPublicAPI.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiHost.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiProxy.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiEvaluator.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/KrollContext.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiToJS.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiCore.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/Ti.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiBase.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiContextRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiObjectRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiValueRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/WebKitAvailability.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiStringRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiStringRefCF.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/KrollCallback.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/KrollObject.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBindingRunLoop.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/Bridge.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiStylesheet.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUtils.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiDimension.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiColor.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/WebFont.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiFile.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBuffer.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBlob.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiViewProxy.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUIView.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiAnimation.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiPoint.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/ListenerEntry.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiModule.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/LayoutConstraint.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiGradient.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiRect.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiViewTemplate.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUILabel.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUIScrollView.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/Ti3DMatrix.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POP.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimator.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPBasicAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCustomAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDecayAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPLayerExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/FBPOPAnimator.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/FBPOPAnimator.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/FBPOPAnimator.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o deleted file mode 100644 index c7fd997..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList deleted file mode 100644 index 74313ec..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipop.LinkFileList +++ /dev/null @@ -1,22 +0,0 @@ -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/CAMediaTimingFunction+ExtendedFunc.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPGeometry.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPVector.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPCGUtils.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimator.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/TransformationMatrix.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPLayerExtras.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/FBPOPAnimator.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPMath.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimation.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o -/Users/do/Developer/Titanium/tipop/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.d deleted file mode 100644 index f712d4a..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.d +++ /dev/null @@ -1,63 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/GuyMcdoooooTipopModule.m \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/GuyMcdoooooTipopModule.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiModule.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiProxy.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiEvaluator.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/KrollContext.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiToJS.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiCore.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/Ti.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiBase.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiContextRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiObjectRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiValueRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/WebKitAvailability.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiStringRef.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/JavaScriptCore/TiStringRefCF.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/KrollCallback.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/KrollObject.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBindingRunLoop.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBase.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/defines.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiThreading.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiPublicAPI.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUtils.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiDimension.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiColor.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/WebFont.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiFile.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBuffer.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiBlob.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/FBPOPAnimator.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiHost.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/Bridge.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiStylesheet.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiViewProxy.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUIView.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiAnimation.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiPoint.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/ListenerEntry.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/LayoutConstraint.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiGradient.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiRect.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiViewTemplate.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUILabel.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/TiUIScrollView.h \ - /Users/do/Library/Application\ Support/Titanium/mobilesdk/osx/5.2.2.GA/iphone/include/Ti3DMatrix.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POP.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimator.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPBasicAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCustomAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDecayAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPLayerExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/CAMediaTimingFunction+ExtendedFunc.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o deleted file mode 100644 index 1d717c0..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModule.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.d deleted file mode 100644 index cc8822c..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.d +++ /dev/null @@ -1,3 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/GuyMcdoooooTipopModuleAssets.m \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/GuyMcdoooooTipopModuleAssets.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o deleted file mode 100644 index bf6f6af..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/GuyMcdoooooTipopModuleAssets.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.d deleted file mode 100644 index 96d5ee4..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.d +++ /dev/null @@ -1,9 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCGUtils.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPLayerExtras.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o deleted file mode 100644 index ca982ac..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimatableProperty.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimation.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimation.d deleted file mode 100644 index 6f9013e..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimation.d +++ /dev/null @@ -1,20 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatorPrivate.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimator.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimation.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimation.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimation.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimation.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimation.o deleted file mode 100644 index d377705..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimation.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationEvent.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationEvent.d deleted file mode 100644 index bbbe630..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationEvent.d +++ /dev/null @@ -1,4 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEventInternal.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationEvent.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationEvent.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationEvent.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o deleted file mode 100644 index 011493e..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationEvent.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationExtras.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationExtras.d deleted file mode 100644 index f5c3d39..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationExtras.d +++ /dev/null @@ -1,14 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationExtras.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationPrivate.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationExtras.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationExtras.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationExtras.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o deleted file mode 100644 index 72e0513..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationExtras.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.d deleted file mode 100644 index 32fcc34..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.d +++ /dev/null @@ -1,8 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCGUtils.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o deleted file mode 100644 index 998bcec..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationRuntime.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationTracer.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationTracer.d deleted file mode 100644 index 34dd100..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationTracer.d +++ /dev/null @@ -1,18 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEventInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationTracer.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationTracer.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationTracer.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o deleted file mode 100644 index 4fcfe54..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimationTracer.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimator.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimator.d deleted file mode 100644 index a5fb452..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimator.d +++ /dev/null @@ -1,24 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimator.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimator.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatorPrivate.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPBasicAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPBasicAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDecayAnimation.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimator.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimator.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimator.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimator.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimator.o deleted file mode 100644 index 917b98b..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPAnimator.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPBasicAnimation.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPBasicAnimation.d deleted file mode 100644 index a8647d0..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPBasicAnimation.d +++ /dev/null @@ -1,19 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPBasicAnimation.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPBasicAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPBasicAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPBasicAnimation.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPBasicAnimation.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPBasicAnimation.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o deleted file mode 100644 index 95ed73c..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPBasicAnimation.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPCGUtils.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPCGUtils.d deleted file mode 100644 index c43a982..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPCGUtils.d +++ /dev/null @@ -1,4 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCGUtils.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCGUtils.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPCGUtils.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPCGUtils.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPCGUtils.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPCGUtils.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPCGUtils.o deleted file mode 100644 index e168fe0..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPCGUtils.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPCustomAnimation.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPCustomAnimation.d deleted file mode 100644 index 67e900b..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPCustomAnimation.d +++ /dev/null @@ -1,15 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCustomAnimation.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCustomAnimation.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPCustomAnimation.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPCustomAnimation.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPCustomAnimation.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o deleted file mode 100644 index 93ad19e..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPCustomAnimation.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPDecayAnimation.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPDecayAnimation.d deleted file mode 100644 index 29e9b14..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPDecayAnimation.d +++ /dev/null @@ -1,19 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDecayAnimation.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDecayAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDecayAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPDecayAnimation.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPDecayAnimation.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPDecayAnimation.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o deleted file mode 100644 index c25a89d..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPDecayAnimation.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPGeometry.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPGeometry.d deleted file mode 100644 index 6e9f335..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPGeometry.d +++ /dev/null @@ -1,4 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPGeometry.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPGeometry.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPGeometry.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPGeometry.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPGeometry.o deleted file mode 100644 index c7595f5..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPGeometry.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPLayerExtras.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPLayerExtras.d deleted file mode 100644 index cf9243e..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPLayerExtras.d +++ /dev/null @@ -1,5 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPLayerExtras.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPLayerExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/WebCore/TransformationMatrix.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPLayerExtras.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPLayerExtras.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPLayerExtras.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPLayerExtras.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPLayerExtras.o deleted file mode 100644 index 1e649d2..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPLayerExtras.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPMath.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPMath.d deleted file mode 100644 index f612ff8..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPMath.d +++ /dev/null @@ -1,11 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationPrivate.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/WebCore/UnitBezier.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPMath.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPMath.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPMath.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPMath.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPMath.o deleted file mode 100644 index 95595ca..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPMath.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.d deleted file mode 100644 index 567b1b8..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.d +++ /dev/null @@ -1,17 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o deleted file mode 100644 index a4a640f..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPPropertyAnimation.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPSpringAnimation.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPSpringAnimation.d deleted file mode 100644 index e4ee2c1..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPSpringAnimation.d +++ /dev/null @@ -1,20 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationExtras.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimatableProperty.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimation.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracer.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationEvent.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPGeometry.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPPropertyAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAction.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationRuntime.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPAnimationTracerInternal.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPSpringSolver.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPSpringAnimation.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPSpringAnimation.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPSpringAnimation.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o deleted file mode 100644 index 471f231..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPSpringAnimation.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPVector.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPVector.d deleted file mode 100644 index dda142d..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPVector.d +++ /dev/null @@ -1,6 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.mm \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPVector.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPDefines.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPMath.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/POPCGUtils.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPVector.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPVector.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPVector.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPVector.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPVector.o deleted file mode 100644 index ee169df..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/POPVector.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/TiUIScrollView.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/TiUIScrollView.d deleted file mode 100644 index 9731388..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/TiUIScrollView.d +++ /dev/null @@ -1,2 +0,0 @@ -dependencies: \ - /Users/logicdesign/Developer/Titanium_Studio_Workspace/tipop/iphone/Classes/TiUIScrollView.m diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/TiUIScrollView.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/TiUIScrollView.dia deleted file mode 100644 index bb0ec51..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/TiUIScrollView.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/TiUIScrollView.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/TiUIScrollView.o deleted file mode 100644 index 3a7aa2d..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/TiUIScrollView.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/TransformationMatrix.d b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/TransformationMatrix.d deleted file mode 100644 index 8228e0e..0000000 --- a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/TransformationMatrix.d +++ /dev/null @@ -1,4 +0,0 @@ -dependencies: \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/WebCore/TransformationMatrix.cpp \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/WebCore/TransformationMatrix.h \ - /Users/do/Developer/Titanium/tipop/iphone/Classes/pop/WebCore/FloatConversion.h diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/TransformationMatrix.dia b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/TransformationMatrix.dia deleted file mode 100644 index 29ccd98..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/TransformationMatrix.dia and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/TransformationMatrix.o b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/TransformationMatrix.o deleted file mode 100644 index 2feda2b..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/TransformationMatrix.o and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/libGuyMcdoooooTipop.a b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/libGuyMcdoooooTipop.a deleted file mode 100644 index 0abd34c..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/Objects-normal/x86_64/libGuyMcdoooooTipop.a and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/dgph b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/dgph deleted file mode 100644 index 6a8d981..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/dgph and /dev/null differ diff --git a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/dgph~ b/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/dgph~ deleted file mode 100644 index db3e56c..0000000 Binary files a/iphone/build/tipop.build/Release-iphonesimulator/tipop.build/dgph~ and /dev/null differ diff --git a/iphone/build/tipop.build/all-product-headers.yaml b/iphone/build/tipop.build/all-product-headers.yaml deleted file mode 100644 index e10cfa3..0000000 --- a/iphone/build/tipop.build/all-product-headers.yaml +++ /dev/null @@ -1,6 +0,0 @@ -{ - 'version': 0, - 'case-sensitive': 'false', - 'roots': [ - ] -} diff --git a/iphone/dist/.DS_Store b/iphone/dist/.DS_Store new file mode 100644 index 0000000..1905505 Binary files /dev/null and b/iphone/dist/.DS_Store differ diff --git a/iphone/dist/guy.mcdooooo.tipop-iphone-2.0.1.zip b/iphone/dist/guy.mcdooooo.tipop-iphone-2.0.1.zip new file mode 100644 index 0000000..4156b9d Binary files /dev/null and b/iphone/dist/guy.mcdooooo.tipop-iphone-2.0.1.zip differ diff --git a/iphone/guy.mcdooooo.tipop-iphone-1.0.1.zip b/iphone/guy.mcdooooo.tipop-iphone-1.0.1.zip deleted file mode 100644 index d731f2d..0000000 Binary files a/iphone/guy.mcdooooo.tipop-iphone-1.0.1.zip and /dev/null differ diff --git a/iphone/guy.mcdooooo.tipop-iphone-1.0.2.zip b/iphone/guy.mcdooooo.tipop-iphone-1.0.2.zip deleted file mode 100644 index c58396f..0000000 Binary files a/iphone/guy.mcdooooo.tipop-iphone-1.0.2.zip and /dev/null differ diff --git a/iphone/guy.mcdooooo.tipop-iphone-1.0.3.zip b/iphone/guy.mcdooooo.tipop-iphone-1.0.3.zip deleted file mode 100644 index 779e3ec..0000000 Binary files a/iphone/guy.mcdooooo.tipop-iphone-1.0.3.zip and /dev/null differ diff --git a/iphone/guy.mcdooooo.tipop-iphone-1.0.4.zip b/iphone/guy.mcdooooo.tipop-iphone-1.0.4.zip deleted file mode 100644 index e2fd362..0000000 Binary files a/iphone/guy.mcdooooo.tipop-iphone-1.0.4.zip and /dev/null differ diff --git a/iphone/guy.mcdooooo.tipop-iphone-1.0.5.zip b/iphone/guy.mcdooooo.tipop-iphone-1.0.5.zip deleted file mode 100644 index e04f267..0000000 Binary files a/iphone/guy.mcdooooo.tipop-iphone-1.0.5.zip and /dev/null differ diff --git a/iphone/guy.mcdooooo.tipop-iphone-1.0.6.zip b/iphone/guy.mcdooooo.tipop-iphone-1.0.6.zip deleted file mode 100644 index 5b5b8fc..0000000 Binary files a/iphone/guy.mcdooooo.tipop-iphone-1.0.6.zip and /dev/null differ diff --git a/iphone/manifest b/iphone/manifest index ddef1ab..179cfd6 100644 --- a/iphone/manifest +++ b/iphone/manifest @@ -2,9 +2,9 @@ # this is your module manifest and used by Titanium # during compilation, packaging, distribution, etc. # -version: 1.0.6 +version: 2.0.1 apiversion: 2 -architectures: armv7 arm64 i386 x86_64 +architectures: arm64 x86_64 description: Facebook pop library wrapper for titanium author: Do(mcdooooo@gmail.com) license: MIT @@ -16,4 +16,5 @@ name: tipop moduleid: guy.mcdooooo.tipop guid: 0412dcd0-44be-4688-ab58-4529dcf45b11 platform: iphone -minsdk: 3.4.0.GA +mac:true +minsdk: 9.2.0 diff --git a/iphone/metadata.json b/iphone/metadata.json index 652d105..43a62e5 100644 --- a/iphone/metadata.json +++ b/iphone/metadata.json @@ -1,5 +1 @@ -{"exports": [ - "Ti.UI.create3DMatrix", - "Ti.UI.createScrollView", - "Ti.UI.createLabel" -]} +{"exports":[]} \ No newline at end of file diff --git a/iphone/module.xcconfig b/iphone/module.xcconfig index 7d52117..7cae9c2 100644 --- a/iphone/module.xcconfig +++ b/iphone/module.xcconfig @@ -10,7 +10,7 @@ // // How to add a Framework (example) // - OTHER_LDFLAGS=$(inherited) -framework QuartzCore -framework UIKit -framework CoreFoundation -framework CoreGraphics -framework Foundation /usr/lib/libc++.dylib + OTHER_LDFLAGS=$(inherited) -framework QuartzCore -framework CoreFoundation -framework CoreGraphics -framework SceneKit -lc++ // // Adding a framework for a specific version(s) of iPhone: // diff --git a/iphone/tipop.xcodeproj/project.pbxproj b/iphone/tipop.xcodeproj/project.pbxproj index 3dbe584..ea4bb90 100644 --- a/iphone/tipop.xcodeproj/project.pbxproj +++ b/iphone/tipop.xcodeproj/project.pbxproj @@ -3,7 +3,7 @@ archiveVersion = 1; classes = { }; - objectVersion = 46; + objectVersion = 52; objects = { /* Begin PBXAggregateTarget section */ @@ -26,6 +26,7 @@ 24DD6CFA1134B3F500162E58 /* GuyMcdoooooTipopModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 24DD6CF81134B3F500162E58 /* GuyMcdoooooTipopModule.m */; }; 24DE9E1111C5FE74003F90F6 /* GuyMcdoooooTipopModuleAssets.h in Headers */ = {isa = PBXBuildFile; fileRef = 24DE9E0F11C5FE74003F90F6 /* GuyMcdoooooTipopModuleAssets.h */; }; 24DE9E1211C5FE74003F90F6 /* GuyMcdoooooTipopModuleAssets.m in Sources */ = {isa = PBXBuildFile; fileRef = 24DE9E1011C5FE74003F90F6 /* GuyMcdoooooTipopModuleAssets.m */; }; + 2CDFE85A26EFB9890013F9C3 /* TitaniumKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2CDFE85926EFB9880013F9C3 /* TitaniumKit.xcframework */; }; 9D7DB0E51A08D6DD008231BF /* CAMediaTimingFunction+ExtendedFunc.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D7DB0E31A08D6DD008231BF /* CAMediaTimingFunction+ExtendedFunc.h */; }; 9D7DB0E61A08D6DD008231BF /* CAMediaTimingFunction+ExtendedFunc.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D7DB0E41A08D6DD008231BF /* CAMediaTimingFunction+ExtendedFunc.m */; }; 9D7DB0EA1A090634008231BF /* FBPOPAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D7DB0E81A090634008231BF /* FBPOPAnimator.h */; }; @@ -81,7 +82,7 @@ 9DA24E571A02347100BB89C7 /* TransformationMatrix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DA24E231A02347100BB89C7 /* TransformationMatrix.cpp */; }; 9DA24E581A02347100BB89C7 /* TransformationMatrix.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DA24E241A02347100BB89C7 /* TransformationMatrix.h */; }; 9DA24E591A02347100BB89C7 /* UnitBezier.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DA24E251A02347100BB89C7 /* UnitBezier.h */; }; - 9DFBDFD41A64F4D200DC7DC5 /* SceneKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9DFBDFD31A64F4D200DC7DC5 /* SceneKit.framework */; settings = {ATTRIBUTES = (Weak, ); }; }; + 9DFBDFD41A64F4D200DC7DC5 /* SceneKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9DFBDFD31A64F4D200DC7DC5 /* SceneKit.framework */; settings = {ATTRIBUTES = (Required, ); }; }; AA747D9F0F9514B9006C5449 /* GuyMcdoooooTipop_Prefix.pch in Headers */ = {isa = PBXBuildFile; fileRef = AA747D9E0F9514B9006C5449 /* GuyMcdoooooTipop_Prefix.pch */; }; C29788B11B62354C00454566 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C29788B01B62354C00454566 /* Foundation.framework */; }; /* End PBXBuildFile section */ @@ -102,6 +103,7 @@ 24DD6D1B1134B66800162E58 /* titanium.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = titanium.xcconfig; sourceTree = ""; }; 24DE9E0F11C5FE74003F90F6 /* GuyMcdoooooTipopModuleAssets.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GuyMcdoooooTipopModuleAssets.h; path = Classes/GuyMcdoooooTipopModuleAssets.h; sourceTree = ""; }; 24DE9E1011C5FE74003F90F6 /* GuyMcdoooooTipopModuleAssets.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = GuyMcdoooooTipopModuleAssets.m; path = Classes/GuyMcdoooooTipopModuleAssets.m; sourceTree = ""; }; + 2CDFE85926EFB9880013F9C3 /* TitaniumKit.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = TitaniumKit.xcframework; path = "$(TITANIUM_SDK)/iphone/Frameworks/TitaniumKit.xcframework"; sourceTree = ""; }; 9D7DB0E31A08D6DD008231BF /* CAMediaTimingFunction+ExtendedFunc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "CAMediaTimingFunction+ExtendedFunc.h"; path = "Classes/CAMediaTimingFunction+ExtendedFunc.h"; sourceTree = ""; }; 9D7DB0E41A08D6DD008231BF /* CAMediaTimingFunction+ExtendedFunc.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "CAMediaTimingFunction+ExtendedFunc.m"; path = "Classes/CAMediaTimingFunction+ExtendedFunc.m"; sourceTree = ""; }; 9D7DB0E81A090634008231BF /* FBPOPAnimator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FBPOPAnimator.h; path = Classes/FBPOPAnimator.h; sourceTree = ""; }; @@ -170,6 +172,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 2CDFE85A26EFB9890013F9C3 /* TitaniumKit.xcframework in Frameworks */, C29788B11B62354C00454566 /* Foundation.framework in Frameworks */, 9DFBDFD41A64F4D200DC7DC5 /* SceneKit.framework in Frameworks */, ); @@ -302,6 +305,7 @@ 9DFFF43E1A66881600F7A8AE /* Frameworks */ = { isa = PBXGroup; children = ( + 2CDFE85926EFB9880013F9C3 /* TitaniumKit.xcframework */, C29788B01B62354C00454566 /* Foundation.framework */, 9DFBDFD31A64F4D200DC7DC5 /* SceneKit.framework */, ); @@ -382,18 +386,18 @@ 0867D690FE84028FC02AAC07 /* Project object */ = { isa = PBXProject; attributes = { - LastUpgradeCheck = 0610; + LastUpgradeCheck = 1250; }; buildConfigurationList = 1DEB922208733DC00010E9CD /* Build configuration list for PBXProject "tipop" */; compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; + developmentRegion = en; hasScannedForEncodings = 1; knownRegions = ( - English, - Japanese, - French, - German, en, + fr, + Base, + ja, + de, ); mainGroup = 0867D691FE84028FC02AAC07 /* tipop */; productRefGroup = 034768DFFF38A50411DB9C8B /* Products */; @@ -481,7 +485,7 @@ CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = NO; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = NO; + CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; CLANG_WARN_BOOL_CONVERSION = "$(CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION)"; CLANG_WARN_CONSTANT_CONVERSION = "$(CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION)"; @@ -511,7 +515,7 @@ GCC_WARN_UNUSED_VALUE = NO; GCC_WARN_UNUSED_VARIABLE = NO; INSTALL_PATH = /usr/local/lib; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.1; LIBRARY_SEARCH_PATHS = ""; OTHER_CFLAGS = ( "-DDEBUG", @@ -535,7 +539,7 @@ CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = NO; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = NO; + CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; CLANG_WARN_BOOL_CONVERSION = "$(CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION)"; CLANG_WARN_CONSTANT_CONVERSION = "$(CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION)"; @@ -563,7 +567,7 @@ GCC_WARN_UNUSED_VALUE = NO; GCC_WARN_UNUSED_VARIABLE = NO; INSTALL_PATH = /usr/local/lib; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.1; LIBRARY_SEARCH_PATHS = ""; OTHER_CFLAGS = "-DTI_POST_1_2"; OTHER_LDFLAGS = ""; @@ -578,28 +582,54 @@ isa = XCBuildConfiguration; baseConfigurationReference = 24DD6D1B1134B66800162E58 /* titanium.xcconfig */; buildSettings = { - CLANG_CXX_LIBRARY = "libstdc++"; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; + CLANG_CXX_LIBRARY = "compiler-default"; + CLANG_ENABLE_MODULES = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; DSTROOT = /tmp/GuyMcdoooooTipop.dst; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; "FRAMEWORK_SEARCH_PATHS[arch=*]" = "/Users/logicdesign/Library/Developer/Xcode/DerivedData/tipop-cvetucwqxuhcoddipwtykqjcrwep/Build/Products/Debug-iphoneos/pop.framework"; GCC_C_LANGUAGE_STANDARD = c99; + GCC_NO_COMMON_BLOCKS = YES; GCC_OPTIMIZATION_LEVEL = 0; GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = GuyMcdoooooTipop_Prefix.pch; GCC_PREPROCESSOR_DEFINITIONS = "TI_VERSION=$(TI_VERSION)"; GCC_TREAT_WARNINGS_AS_ERRORS = NO; GCC_VERSION = ""; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = NO; GCC_WARN_MISSING_PARENTHESES = NO; GCC_WARN_SHADOW = NO; GCC_WARN_STRICT_SELECTOR_MATCH = NO; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_PARAMETER = NO; GCC_WARN_UNUSED_VALUE = NO; GCC_WARN_UNUSED_VARIABLE = NO; INSTALL_PATH = /usr/local/lib; - IPHONEOS_DEPLOYMENT_TARGET = 5.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.1; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = ( "-DDEBUG", @@ -620,26 +650,51 @@ baseConfigurationReference = 24DD6D1B1134B66800162E58 /* titanium.xcconfig */; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LIBRARY = "libstdc++"; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; + CLANG_CXX_LIBRARY = "compiler-default"; + CLANG_ENABLE_MODULES = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; DSTROOT = /tmp/GuyMcdoooooTipop.dst; + ENABLE_STRICT_OBJC_MSGSEND = YES; "FRAMEWORK_SEARCH_PATHS[arch=*]" = "/Users/logicdesign/Library/Developer/Xcode/DerivedData/tipop-cvetucwqxuhcoddipwtykqjcrwep/Build/Products/Debug-iphoneos/pop.framework"; GCC_C_LANGUAGE_STANDARD = c99; GCC_MODEL_TUNING = G5; + GCC_NO_COMMON_BLOCKS = YES; GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = GuyMcdoooooTipop_Prefix.pch; GCC_PREPROCESSOR_DEFINITIONS = "TI_VERSION=$(TI_VERSION)"; GCC_TREAT_WARNINGS_AS_ERRORS = NO; GCC_VERSION = ""; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = NO; GCC_WARN_MISSING_PARENTHESES = NO; GCC_WARN_SHADOW = NO; GCC_WARN_STRICT_SELECTOR_MATCH = NO; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_PARAMETER = NO; GCC_WARN_UNUSED_VALUE = NO; GCC_WARN_UNUSED_VARIABLE = NO; INSTALL_PATH = /usr/local/lib; - IPHONEOS_DEPLOYMENT_TARGET = 5.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.1; OTHER_CFLAGS = "-DTI_POST_1_2"; OTHER_LDFLAGS = "-ObjC"; PRODUCT_NAME = GuyMcdoooooTipop; @@ -653,6 +708,7 @@ isa = XCBuildConfiguration; baseConfigurationReference = 24DD6D1B1134B66800162E58 /* titanium.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = YES; COPY_PHASE_STRIP = NO; GCC_DYNAMIC_NO_PIC = NO; GCC_OPTIMIZATION_LEVEL = 0; @@ -664,9 +720,9 @@ isa = XCBuildConfiguration; baseConfigurationReference = 24DD6D1B1134B66800162E58 /* titanium.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = YES; COPY_PHASE_STRIP = YES; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - GCC_ENABLE_FIX_AND_CONTINUE = NO; PRODUCT_NAME = "Build & test"; ZERO_LINK = NO; }; diff --git a/iphone/tipop.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/iphone/tipop.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/iphone/tipop.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/iphone/titanium.xcconfig b/iphone/titanium.xcconfig index 9f48912..74a31f6 100644 --- a/iphone/titanium.xcconfig +++ b/iphone/titanium.xcconfig @@ -4,17 +4,14 @@ // OF YOUR TITANIUM SDK YOU'RE BUILDING FOR // // -TITANIUM_SDK_VERSION = 5.2.2.GA - +TITANIUM_SDK_VERSION = 10.0.0.GA // // THESE SHOULD BE OK GENERALLY AS-IS // -TITANIUM_SDK = ~/Library/Application Support/Titanium/mobilesdk/osx/5.2.2.GA +TITANIUM_SDK = /Users/$(USER)/Library/Application Support/Titanium/mobilesdk/osx/$(TITANIUM_SDK_VERSION) TITANIUM_BASE_SDK = "$(TITANIUM_SDK)/iphone/include" TITANIUM_BASE_SDK2 = "$(TITANIUM_SDK)/iphone/include/TiCore" -TITANIUM_BASE_SDK3 = "$(TITANIUM_SDK)/iphone/include/JavaScriptCore" -HEADER_SEARCH_PATHS= $(TITANIUM_BASE_SDK) $(TITANIUM_BASE_SDK2) $(TITANIUM_BASE_SDK3) - - +HEADER_SEARCH_PATHS = $(inherited) $(TITANIUM_SDK) $(TITANIUM_BASE_SDK) $(TITANIUM_BASE_SDK2) +FRAMEWORK_SEARCH_PATHS = $(inherited) "$(TITANIUM_SDK)/iphone/Frameworks/**"