diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..86fbbf8
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,3 @@
+language: objective-c
+xcode_project: MacDependency/MacDependency.xcodeproj
+xcode_scheme: MacDependency
diff --git a/MacDependency/ArchitectureModel.mm b/MacDependency/ArchitectureModel.mm
index c9d9f1c..080916c 100644
--- a/MacDependency/ArchitectureModel.mm
+++ b/MacDependency/ArchitectureModel.mm
@@ -40,15 +40,9 @@
 	return self;
 }
 
-- (void)dealloc {
-	[symbolEntries release];
-	[machOModel release];
-	[super dealloc];
-}
 
 - (NSArray*) rootModel {
 	// always reload model (for error messages)
-	[machOModel release];
 	machOModel = [[MachOModel alloc]initWithFile:file document:document architecture:architecture loadChildren:YES];
 	NSArray* rootModel = [NSArray arrayWithObject:machOModel];
 	return rootModel;
@@ -86,7 +80,7 @@
 	CFUUIDRef uuid = CFUUIDCreateFromUUIDBytes(kCFAllocatorDefault, *((CFUUIDBytes*)architecture->getUuid()));
 	CFStringRef result = CFUUIDCreateString(kCFAllocatorDefault, uuid);
 	CFRelease(uuid);
-	return (NSString*) result;
+	return (NSString*) CFBridgingRelease(result);
 }
 
 - (NSString*) fileType {
@@ -147,9 +141,9 @@
 }
 
 - (NSString*) rpath {
-	std::vector<string*> rpaths = architecture->getRpaths(false);
+  std::vector<std::string*> rpaths = architecture->getRpaths(false);
 	NSMutableString* rpath = [NSMutableString string];
-	for (std::vector<string*>::iterator it = rpaths.begin();
+	for (std::vector<std::string*>::iterator it = rpaths.begin();
 		 it != rpaths.end();
 		 ++it)
     {
@@ -197,7 +191,7 @@
 				NSDate* date = [NSDate dateWithTimeIntervalSince1970:timestamp];
 				
 				// this date formatter should be identical to NSDateFormatter in IB
-				NSDateFormatter *dateFormatter = [[[NSDateFormatter alloc] init]  autorelease];
+				NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
 				[dateFormatter setDateStyle:NSDateFormatterMediumStyle];
 				[dateFormatter setTimeStyle:NSDateFormatterMediumStyle];
 				
@@ -212,7 +206,6 @@
 						   compatibleVersion];
 			}
 		}
-		[versionFormatter release];
 	} else {
 		version = [machOModel version];
 	}
@@ -222,7 +215,6 @@
 
 - (void) initSymbols {
 	symbolEntries = [NSMutableArray arrayWithCapacity:20];
-	[symbolEntries retain];
 	for (MachOArchitecture::LoadCommandsConstIterator lcIter = architecture->getLoadCommandsBegin();
 		 lcIter != architecture->getLoadCommandsEnd();
 		 ++lcIter)
@@ -246,13 +238,10 @@
 }
 
 - (void) setSymbols:(NSMutableArray*) newSymbolEntries {
-	[newSymbolEntries retain];
-	[symbolEntries release];
-	symbolEntries = symbolEntries;
+	symbolEntries = newSymbolEntries;
 }
 
 - (void) refreshSymbols {
-	[symbolEntries release];
 	[self initSymbols];
 	[self setSymbols:symbolEntries];
 }
diff --git a/MacDependency/ArchitecturesController.mm b/MacDependency/ArchitecturesController.mm
index 3bee7d1..67498f4 100644
--- a/MacDependency/ArchitecturesController.mm
+++ b/MacDependency/ArchitecturesController.mm
@@ -24,10 +24,6 @@
     return self;
 }
 
-- (void)dealloc
-{
-	[super dealloc];
-}
 
 
 - (void)awakeFromNib
diff --git a/MacDependency/ConversionStdString.mm b/MacDependency/ConversionStdString.mm
index 1bc21d3..0aedb19 100644
--- a/MacDependency/ConversionStdString.mm
+++ b/MacDependency/ConversionStdString.mm
@@ -31,8 +31,8 @@ CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingUTF32LE);
 	char* data = (char*)ws.data();
 	size_t size = ws.size() * sizeof(wchar_t);
 	
-	NSString* result = [[[NSString alloc] initWithBytes:data length:size 
-											   encoding:kEncoding_wchar_t] autorelease];
+	NSString* result = [[NSString alloc] initWithBytes:data length:size 
+											   encoding:kEncoding_wchar_t];
 	return result;
 }
 
diff --git a/MacDependency/English.lproj/MainMenu.xib b/MacDependency/English.lproj/MainMenu.xib
index 6001c1a..9303f3e 100644
--- a/MacDependency/English.lproj/MainMenu.xib
+++ b/MacDependency/English.lproj/MainMenu.xib
@@ -1,997 +1,149 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.03">
-	<data>
-		<int key="IBDocument.SystemTarget">1050</int>
-		<string key="IBDocument.SystemVersion">9L31a</string>
-		<string key="IBDocument.InterfaceBuilderVersion">677</string>
-		<string key="IBDocument.AppKitVersion">949.54</string>
-		<string key="IBDocument.HIToolboxVersion">353.00</string>
-		<object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
-			<bool key="EncodedWithXMLCoder">YES</bool>
-			<integer value="103"/>
-		</object>
-		<object class="NSArray" key="IBDocument.PluginDependencies">
-			<bool key="EncodedWithXMLCoder">YES</bool>
-			<string>com.apple.InterfaceBuilderKit</string>
-			<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-		</object>
-		<object class="NSMutableDictionary" key="IBDocument.Metadata">
-			<bool key="EncodedWithXMLCoder">YES</bool>
-			<object class="NSArray" key="dict.sortedKeys">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-			</object>
-			<object class="NSMutableArray" key="dict.values">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-			</object>
-		</object>
-		<object class="NSMutableArray" key="IBDocument.RootObjects" id="1048">
-			<bool key="EncodedWithXMLCoder">YES</bool>
-			<object class="NSCustomObject" id="1021">
-				<string key="NSClassName">NSApplication</string>
-			</object>
-			<object class="NSCustomObject" id="1014">
-				<string key="NSClassName">FirstResponder</string>
-			</object>
-			<object class="NSCustomObject" id="1050">
-				<string key="NSClassName">NSApplication</string>
-			</object>
-			<object class="NSMenu" id="649796088">
-				<string key="NSTitle">AMainMenu</string>
-				<object class="NSMutableArray" key="NSMenuItems">
-					<bool key="EncodedWithXMLCoder">YES</bool>
-					<object class="NSMenuItem" id="694149608">
-						<reference key="NSMenu" ref="649796088"/>
-						<string key="NSTitle">MacDependency</string>
-						<string key="NSKeyEquiv"/>
-						<int key="NSKeyEquivModMask">1048576</int>
-						<int key="NSMnemonicLoc">2147483647</int>
-						<object class="NSCustomResource" key="NSOnImage" id="1033313550">
-							<string key="NSClassName">NSImage</string>
-							<string key="NSResourceName">NSMenuCheckmark</string>
-						</object>
-						<object class="NSCustomResource" key="NSMixedImage" id="310636482">
-							<string key="NSClassName">NSImage</string>
-							<string key="NSResourceName">NSMenuMixedState</string>
-						</object>
-						<string key="NSAction">submenuAction:</string>
-						<object class="NSMenu" key="NSSubmenu" id="110575045">
-							<string key="NSTitle">MacDependency</string>
-							<object class="NSMutableArray" key="NSMenuItems">
-								<bool key="EncodedWithXMLCoder">YES</bool>
-								<object class="NSMenuItem" id="238522557">
-									<reference key="NSMenu" ref="110575045"/>
-									<string key="NSTitle">About MacDependency</string>
-									<string key="NSKeyEquiv"/>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="1033313550"/>
-									<reference key="NSMixedImage" ref="310636482"/>
-								</object>
-								<object class="NSMenuItem" id="304266470">
-									<reference key="NSMenu" ref="110575045"/>
-									<bool key="NSIsDisabled">YES</bool>
-									<bool key="NSIsSeparator">YES</bool>
-									<string key="NSTitle"/>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="1033313550"/>
-									<reference key="NSMixedImage" ref="310636482"/>
-								</object>
-								<object class="NSMenuItem" id="609285721">
-									<reference key="NSMenu" ref="110575045"/>
-									<string type="base64-UTF8" key="NSTitle">UHJlZmVyZW5jZXPigKY</string>
-									<string key="NSKeyEquiv">,</string>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="1033313550"/>
-									<reference key="NSMixedImage" ref="310636482"/>
-								</object>
-								<object class="NSMenuItem" id="481834944">
-									<reference key="NSMenu" ref="110575045"/>
-									<bool key="NSIsDisabled">YES</bool>
-									<bool key="NSIsSeparator">YES</bool>
-									<string key="NSTitle"/>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="1033313550"/>
-									<reference key="NSMixedImage" ref="310636482"/>
-								</object>
-								<object class="NSMenuItem" id="1046388886">
-									<reference key="NSMenu" ref="110575045"/>
-									<string key="NSTitle">Services</string>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="1033313550"/>
-									<reference key="NSMixedImage" ref="310636482"/>
-									<string key="NSAction">submenuAction:</string>
-									<object class="NSMenu" key="NSSubmenu" id="752062318">
-										<string key="NSTitle">Services</string>
-										<object class="NSMutableArray" key="NSMenuItems">
-											<bool key="EncodedWithXMLCoder">YES</bool>
-										</object>
-										<string key="NSName">_NSServicesMenu</string>
-									</object>
-								</object>
-								<object class="NSMenuItem" id="646227648">
-									<reference key="NSMenu" ref="110575045"/>
-									<bool key="NSIsDisabled">YES</bool>
-									<bool key="NSIsSeparator">YES</bool>
-									<string key="NSTitle"/>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="1033313550"/>
-									<reference key="NSMixedImage" ref="310636482"/>
-								</object>
-								<object class="NSMenuItem" id="755159360">
-									<reference key="NSMenu" ref="110575045"/>
-									<string key="NSTitle">Hide NewApplication</string>
-									<string key="NSKeyEquiv">h</string>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="1033313550"/>
-									<reference key="NSMixedImage" ref="310636482"/>
-								</object>
-								<object class="NSMenuItem" id="342932134">
-									<reference key="NSMenu" ref="110575045"/>
-									<string key="NSTitle">Hide Others</string>
-									<string key="NSKeyEquiv">h</string>
-									<int key="NSKeyEquivModMask">1572864</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="1033313550"/>
-									<reference key="NSMixedImage" ref="310636482"/>
-								</object>
-								<object class="NSMenuItem" id="908899353">
-									<reference key="NSMenu" ref="110575045"/>
-									<string key="NSTitle">Show All</string>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="1033313550"/>
-									<reference key="NSMixedImage" ref="310636482"/>
-								</object>
-								<object class="NSMenuItem" id="1056857174">
-									<reference key="NSMenu" ref="110575045"/>
-									<bool key="NSIsDisabled">YES</bool>
-									<bool key="NSIsSeparator">YES</bool>
-									<string key="NSTitle"/>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="1033313550"/>
-									<reference key="NSMixedImage" ref="310636482"/>
-								</object>
-								<object class="NSMenuItem" id="632727374">
-									<reference key="NSMenu" ref="110575045"/>
-									<string key="NSTitle">Quit MacDependency</string>
-									<string key="NSKeyEquiv">q</string>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="1033313550"/>
-									<reference key="NSMixedImage" ref="310636482"/>
-								</object>
-							</object>
-							<string key="NSName">_NSAppleMenu</string>
-						</object>
-					</object>
-					<object class="NSMenuItem" id="379814623">
-						<reference key="NSMenu" ref="649796088"/>
-						<string key="NSTitle">File</string>
-						<string key="NSKeyEquiv"/>
-						<int key="NSKeyEquivModMask">1048576</int>
-						<int key="NSMnemonicLoc">2147483647</int>
-						<reference key="NSOnImage" ref="1033313550"/>
-						<reference key="NSMixedImage" ref="310636482"/>
-						<string key="NSAction">submenuAction:</string>
-						<object class="NSMenu" key="NSSubmenu" id="720053764">
-							<string key="NSTitle">File</string>
-							<object class="NSMutableArray" key="NSMenuItems">
-								<bool key="EncodedWithXMLCoder">YES</bool>
-								<object class="NSMenuItem" id="722745758">
-									<reference key="NSMenu" ref="720053764"/>
-									<string type="base64-UTF8" key="NSTitle">T3BlbuKApg</string>
-									<string key="NSKeyEquiv">o</string>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="1033313550"/>
-									<reference key="NSMixedImage" ref="310636482"/>
-								</object>
-								<object class="NSMenuItem" id="1025936716">
-									<reference key="NSMenu" ref="720053764"/>
-									<string key="NSTitle">Open Recent</string>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="1033313550"/>
-									<reference key="NSMixedImage" ref="310636482"/>
-									<string key="NSAction">submenuAction:</string>
-									<object class="NSMenu" key="NSSubmenu" id="1065607017">
-										<string key="NSTitle">Open Recent</string>
-										<object class="NSMutableArray" key="NSMenuItems">
-											<bool key="EncodedWithXMLCoder">YES</bool>
-											<object class="NSMenuItem" id="759406840">
-												<reference key="NSMenu" ref="1065607017"/>
-												<string key="NSTitle">Clear Menu</string>
-												<string key="NSKeyEquiv"/>
-												<int key="NSKeyEquivModMask">1048576</int>
-												<int key="NSMnemonicLoc">2147483647</int>
-												<reference key="NSOnImage" ref="1033313550"/>
-												<reference key="NSMixedImage" ref="310636482"/>
-											</object>
-										</object>
-										<string key="NSName">_NSRecentDocumentsMenu</string>
-									</object>
-								</object>
-								<object class="NSMenuItem" id="425164168">
-									<reference key="NSMenu" ref="720053764"/>
-									<bool key="NSIsDisabled">YES</bool>
-									<bool key="NSIsSeparator">YES</bool>
-									<string key="NSTitle"/>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="1033313550"/>
-									<reference key="NSMixedImage" ref="310636482"/>
-								</object>
-								<object class="NSMenuItem" id="776162233">
-									<reference key="NSMenu" ref="720053764"/>
-									<string key="NSTitle">Close</string>
-									<string key="NSKeyEquiv">w</string>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="1033313550"/>
-									<reference key="NSMixedImage" ref="310636482"/>
-								</object>
-							</object>
-						</object>
-					</object>
-					<object class="NSMenuItem" id="586577488">
-						<reference key="NSMenu" ref="649796088"/>
-						<string key="NSTitle">View</string>
-						<string key="NSKeyEquiv"/>
-						<int key="NSKeyEquivModMask">1048576</int>
-						<int key="NSMnemonicLoc">2147483647</int>
-						<reference key="NSOnImage" ref="1033313550"/>
-						<reference key="NSMixedImage" ref="310636482"/>
-						<string key="NSAction">submenuAction:</string>
-						<object class="NSMenu" key="NSSubmenu" id="466310130">
-							<string key="NSTitle">View</string>
-							<object class="NSMutableArray" key="NSMenuItems">
-								<bool key="EncodedWithXMLCoder">YES</bool>
-								<object class="NSMenuItem" id="102151532">
-									<reference key="NSMenu" ref="466310130"/>
-									<string key="NSTitle">Show Toolbar</string>
-									<string key="NSKeyEquiv">t</string>
-									<int key="NSKeyEquivModMask">1572864</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="1033313550"/>
-									<reference key="NSMixedImage" ref="310636482"/>
-								</object>
-								<object class="NSMenuItem" id="237841660">
-									<reference key="NSMenu" ref="466310130"/>
-									<string type="base64-UTF8" key="NSTitle">Q3VzdG9taXplIFRvb2xiYXLigKY</string>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="1033313550"/>
-									<reference key="NSMixedImage" ref="310636482"/>
-								</object>
-							</object>
-						</object>
-					</object>
-					<object class="NSMenuItem" id="713487014">
-						<reference key="NSMenu" ref="649796088"/>
-						<string key="NSTitle">Window</string>
-						<string key="NSKeyEquiv"/>
-						<int key="NSKeyEquivModMask">1048576</int>
-						<int key="NSMnemonicLoc">2147483647</int>
-						<reference key="NSOnImage" ref="1033313550"/>
-						<reference key="NSMixedImage" ref="310636482"/>
-						<string key="NSAction">submenuAction:</string>
-						<object class="NSMenu" key="NSSubmenu" id="835318025">
-							<string key="NSTitle">Window</string>
-							<object class="NSMutableArray" key="NSMenuItems">
-								<bool key="EncodedWithXMLCoder">YES</bool>
-								<object class="NSMenuItem" id="1011231497">
-									<reference key="NSMenu" ref="835318025"/>
-									<string key="NSTitle">Minimize</string>
-									<string key="NSKeyEquiv">m</string>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="1033313550"/>
-									<reference key="NSMixedImage" ref="310636482"/>
-								</object>
-								<object class="NSMenuItem" id="575023229">
-									<reference key="NSMenu" ref="835318025"/>
-									<string key="NSTitle">Zoom</string>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="1033313550"/>
-									<reference key="NSMixedImage" ref="310636482"/>
-								</object>
-								<object class="NSMenuItem" id="299356726">
-									<reference key="NSMenu" ref="835318025"/>
-									<bool key="NSIsDisabled">YES</bool>
-									<bool key="NSIsSeparator">YES</bool>
-									<string key="NSTitle"/>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="1033313550"/>
-									<reference key="NSMixedImage" ref="310636482"/>
-								</object>
-								<object class="NSMenuItem" id="625202149">
-									<reference key="NSMenu" ref="835318025"/>
-									<string key="NSTitle">Bring All to Front</string>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="1033313550"/>
-									<reference key="NSMixedImage" ref="310636482"/>
-								</object>
-							</object>
-							<string key="NSName">_NSWindowsMenu</string>
-						</object>
-					</object>
-					<object class="NSMenuItem" id="391199113">
-						<reference key="NSMenu" ref="649796088"/>
-						<string key="NSTitle">Help</string>
-						<string key="NSKeyEquiv"/>
-						<int key="NSKeyEquivModMask">1048576</int>
-						<int key="NSMnemonicLoc">2147483647</int>
-						<reference key="NSOnImage" ref="1033313550"/>
-						<reference key="NSMixedImage" ref="310636482"/>
-						<string key="NSAction">submenuAction:</string>
-						<object class="NSMenu" key="NSSubmenu" id="374024848">
-							<string key="NSTitle">Help</string>
-							<object class="NSMutableArray" key="NSMenuItems">
-								<bool key="EncodedWithXMLCoder">YES</bool>
-								<object class="NSMenuItem" id="238773614">
-									<reference key="NSMenu" ref="374024848"/>
-									<string key="NSTitle">MacDependency Help</string>
-									<string key="NSKeyEquiv">?</string>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="1033313550"/>
-									<reference key="NSMixedImage" ref="310636482"/>
-								</object>
-							</object>
-						</object>
-					</object>
-				</object>
-				<string key="NSName">_NSMainMenu</string>
-			</object>
-			<object class="NSCustomObject" id="739804602">
-				<string key="NSClassName">NSFontManager</string>
-			</object>
-		</object>
-		<object class="IBObjectContainer" key="IBDocument.Objects">
-			<object class="NSMutableArray" key="connectionRecords">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">performMiniaturize:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="1011231497"/>
-					</object>
-					<int key="connectionID">37</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">arrangeInFront:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="625202149"/>
-					</object>
-					<int key="connectionID">39</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">clearRecentDocuments:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="759406840"/>
-					</object>
-					<int key="connectionID">127</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">orderFrontStandardAboutPanel:</string>
-						<reference key="source" ref="1021"/>
-						<reference key="destination" ref="238522557"/>
-					</object>
-					<int key="connectionID">142</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">performClose:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="776162233"/>
-					</object>
-					<int key="connectionID">193</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">performZoom:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="575023229"/>
-					</object>
-					<int key="connectionID">240</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">showHelp:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="238773614"/>
-					</object>
-					<int key="connectionID">360</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">runToolbarCustomizationPalette:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="237841660"/>
-					</object>
-					<int key="connectionID">365</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">toggleToolbarShown:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="102151532"/>
-					</object>
-					<int key="connectionID">366</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">hide:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="755159360"/>
-					</object>
-					<int key="connectionID">367</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">hideOtherApplications:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="342932134"/>
-					</object>
-					<int key="connectionID">368</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">unhideAllApplications:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="908899353"/>
-					</object>
-					<int key="connectionID">370</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">openDocument:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="722745758"/>
-					</object>
-					<int key="connectionID">372</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">terminate:</string>
-						<reference key="source" ref="1050"/>
-						<reference key="destination" ref="632727374"/>
-					</object>
-					<int key="connectionID">448</int>
-				</object>
-			</object>
-			<object class="IBMutableOrderedSet" key="objectRecords">
-				<object class="NSArray" key="orderedObjects">
-					<bool key="EncodedWithXMLCoder">YES</bool>
-					<object class="IBObjectRecord">
-						<int key="objectID">0</int>
-						<object class="NSArray" key="object" id="1049">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-						</object>
-						<reference key="children" ref="1048"/>
-						<nil key="parent"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">-2</int>
-						<reference key="object" ref="1021"/>
-						<reference key="parent" ref="1049"/>
-						<string type="base64-UTF8" key="objectName">RmlsZSdzIE93bmVyA</string>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">-1</int>
-						<reference key="object" ref="1014"/>
-						<reference key="parent" ref="1049"/>
-						<string key="objectName">First Responder</string>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">-3</int>
-						<reference key="object" ref="1050"/>
-						<reference key="parent" ref="1049"/>
-						<string key="objectName">Application</string>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">29</int>
-						<reference key="object" ref="649796088"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="713487014"/>
-							<reference ref="694149608"/>
-							<reference ref="391199113"/>
-							<reference ref="379814623"/>
-							<reference ref="586577488"/>
-						</object>
-						<reference key="parent" ref="1049"/>
-						<string key="objectName">MainMenu</string>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">19</int>
-						<reference key="object" ref="713487014"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="835318025"/>
-						</object>
-						<reference key="parent" ref="649796088"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">56</int>
-						<reference key="object" ref="694149608"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="110575045"/>
-						</object>
-						<reference key="parent" ref="649796088"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">103</int>
-						<reference key="object" ref="391199113"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="374024848"/>
-						</object>
-						<reference key="parent" ref="649796088"/>
-						<string key="objectName">1</string>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">83</int>
-						<reference key="object" ref="379814623"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="720053764"/>
-						</object>
-						<reference key="parent" ref="649796088"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">81</int>
-						<reference key="object" ref="720053764"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="722745758"/>
-							<reference ref="1025936716"/>
-							<reference ref="776162233"/>
-							<reference ref="425164168"/>
-						</object>
-						<reference key="parent" ref="379814623"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">72</int>
-						<reference key="object" ref="722745758"/>
-						<reference key="parent" ref="720053764"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">124</int>
-						<reference key="object" ref="1025936716"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="1065607017"/>
-						</object>
-						<reference key="parent" ref="720053764"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">73</int>
-						<reference key="object" ref="776162233"/>
-						<reference key="parent" ref="720053764"/>
-						<string key="objectName">1</string>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">79</int>
-						<reference key="object" ref="425164168"/>
-						<reference key="parent" ref="720053764"/>
-						<string key="objectName">7</string>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">125</int>
-						<reference key="object" ref="1065607017"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="759406840"/>
-						</object>
-						<reference key="parent" ref="1025936716"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">126</int>
-						<reference key="object" ref="759406840"/>
-						<reference key="parent" ref="1065607017"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">106</int>
-						<reference key="object" ref="374024848"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="238773614"/>
-						</object>
-						<reference key="parent" ref="391199113"/>
-						<string key="objectName">2</string>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">111</int>
-						<reference key="object" ref="238773614"/>
-						<reference key="parent" ref="374024848"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">57</int>
-						<reference key="object" ref="110575045"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="238522557"/>
-							<reference ref="755159360"/>
-							<reference ref="908899353"/>
-							<reference ref="632727374"/>
-							<reference ref="646227648"/>
-							<reference ref="609285721"/>
-							<reference ref="481834944"/>
-							<reference ref="304266470"/>
-							<reference ref="1046388886"/>
-							<reference ref="1056857174"/>
-							<reference ref="342932134"/>
-						</object>
-						<reference key="parent" ref="694149608"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">58</int>
-						<reference key="object" ref="238522557"/>
-						<reference key="parent" ref="110575045"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">134</int>
-						<reference key="object" ref="755159360"/>
-						<reference key="parent" ref="110575045"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">150</int>
-						<reference key="object" ref="908899353"/>
-						<reference key="parent" ref="110575045"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">136</int>
-						<reference key="object" ref="632727374"/>
-						<reference key="parent" ref="110575045"/>
-						<string key="objectName">1111</string>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">144</int>
-						<reference key="object" ref="646227648"/>
-						<reference key="parent" ref="110575045"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">129</int>
-						<reference key="object" ref="609285721"/>
-						<reference key="parent" ref="110575045"/>
-						<string key="objectName">121</string>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">143</int>
-						<reference key="object" ref="481834944"/>
-						<reference key="parent" ref="110575045"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">236</int>
-						<reference key="object" ref="304266470"/>
-						<reference key="parent" ref="110575045"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">131</int>
-						<reference key="object" ref="1046388886"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="752062318"/>
-						</object>
-						<reference key="parent" ref="110575045"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">149</int>
-						<reference key="object" ref="1056857174"/>
-						<reference key="parent" ref="110575045"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">145</int>
-						<reference key="object" ref="342932134"/>
-						<reference key="parent" ref="110575045"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">130</int>
-						<reference key="object" ref="752062318"/>
-						<reference key="parent" ref="1046388886"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">24</int>
-						<reference key="object" ref="835318025"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="299356726"/>
-							<reference ref="625202149"/>
-							<reference ref="575023229"/>
-							<reference ref="1011231497"/>
-						</object>
-						<reference key="parent" ref="713487014"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">92</int>
-						<reference key="object" ref="299356726"/>
-						<reference key="parent" ref="835318025"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">5</int>
-						<reference key="object" ref="625202149"/>
-						<reference key="parent" ref="835318025"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">239</int>
-						<reference key="object" ref="575023229"/>
-						<reference key="parent" ref="835318025"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">23</int>
-						<reference key="object" ref="1011231497"/>
-						<reference key="parent" ref="835318025"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">295</int>
-						<reference key="object" ref="586577488"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="466310130"/>
-						</object>
-						<reference key="parent" ref="649796088"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">296</int>
-						<reference key="object" ref="466310130"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="102151532"/>
-							<reference ref="237841660"/>
-						</object>
-						<reference key="parent" ref="586577488"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">297</int>
-						<reference key="object" ref="102151532"/>
-						<reference key="parent" ref="466310130"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">298</int>
-						<reference key="object" ref="237841660"/>
-						<reference key="parent" ref="466310130"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">419</int>
-						<reference key="object" ref="739804602"/>
-						<reference key="parent" ref="1049"/>
-					</object>
-				</object>
-			</object>
-			<object class="NSMutableDictionary" key="flattenedProperties">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-				<object class="NSMutableArray" key="dict.sortedKeys">
-					<bool key="EncodedWithXMLCoder">YES</bool>
-					<string>-1.IBPluginDependency</string>
-					<string>-2.IBPluginDependency</string>
-					<string>-3.IBPluginDependency</string>
-					<string>103.IBPluginDependency</string>
-					<string>103.ImportedFromIB2</string>
-					<string>106.IBEditorWindowLastContentRect</string>
-					<string>106.IBPluginDependency</string>
-					<string>106.ImportedFromIB2</string>
-					<string>106.editorWindowContentRectSynchronizationRect</string>
-					<string>111.IBPluginDependency</string>
-					<string>111.ImportedFromIB2</string>
-					<string>124.IBPluginDependency</string>
-					<string>124.ImportedFromIB2</string>
-					<string>125.IBPluginDependency</string>
-					<string>125.ImportedFromIB2</string>
-					<string>125.editorWindowContentRectSynchronizationRect</string>
-					<string>126.IBPluginDependency</string>
-					<string>126.ImportedFromIB2</string>
-					<string>129.IBPluginDependency</string>
-					<string>129.ImportedFromIB2</string>
-					<string>130.IBPluginDependency</string>
-					<string>130.ImportedFromIB2</string>
-					<string>130.editorWindowContentRectSynchronizationRect</string>
-					<string>131.IBPluginDependency</string>
-					<string>131.ImportedFromIB2</string>
-					<string>134.IBPluginDependency</string>
-					<string>134.ImportedFromIB2</string>
-					<string>136.IBPluginDependency</string>
-					<string>136.ImportedFromIB2</string>
-					<string>143.IBPluginDependency</string>
-					<string>143.ImportedFromIB2</string>
-					<string>144.IBPluginDependency</string>
-					<string>144.ImportedFromIB2</string>
-					<string>145.IBPluginDependency</string>
-					<string>145.ImportedFromIB2</string>
-					<string>149.IBPluginDependency</string>
-					<string>149.ImportedFromIB2</string>
-					<string>150.IBPluginDependency</string>
-					<string>150.ImportedFromIB2</string>
-					<string>19.IBPluginDependency</string>
-					<string>19.ImportedFromIB2</string>
-					<string>23.IBPluginDependency</string>
-					<string>23.ImportedFromIB2</string>
-					<string>236.IBPluginDependency</string>
-					<string>236.ImportedFromIB2</string>
-					<string>239.IBPluginDependency</string>
-					<string>239.ImportedFromIB2</string>
-					<string>24.IBEditorWindowLastContentRect</string>
-					<string>24.IBPluginDependency</string>
-					<string>24.ImportedFromIB2</string>
-					<string>24.editorWindowContentRectSynchronizationRect</string>
-					<string>29.IBEditorWindowLastContentRect</string>
-					<string>29.IBPluginDependency</string>
-					<string>29.ImportedFromIB2</string>
-					<string>29.WindowOrigin</string>
-					<string>29.editorWindowContentRectSynchronizationRect</string>
-					<string>295.IBPluginDependency</string>
-					<string>296.IBEditorWindowLastContentRect</string>
-					<string>296.IBPluginDependency</string>
-					<string>296.editorWindowContentRectSynchronizationRect</string>
-					<string>297.IBPluginDependency</string>
-					<string>298.IBPluginDependency</string>
-					<string>419.IBPluginDependency</string>
-					<string>5.IBPluginDependency</string>
-					<string>5.ImportedFromIB2</string>
-					<string>56.IBPluginDependency</string>
-					<string>56.ImportedFromIB2</string>
-					<string>57.IBEditorWindowLastContentRect</string>
-					<string>57.IBPluginDependency</string>
-					<string>57.ImportedFromIB2</string>
-					<string>57.editorWindowContentRectSynchronizationRect</string>
-					<string>58.IBPluginDependency</string>
-					<string>58.ImportedFromIB2</string>
-					<string>72.IBPluginDependency</string>
-					<string>72.ImportedFromIB2</string>
-					<string>73.IBPluginDependency</string>
-					<string>73.ImportedFromIB2</string>
-					<string>79.IBPluginDependency</string>
-					<string>79.ImportedFromIB2</string>
-					<string>81.IBEditorWindowLastContentRect</string>
-					<string>81.IBPluginDependency</string>
-					<string>81.ImportedFromIB2</string>
-					<string>81.editorWindowContentRectSynchronizationRect</string>
-					<string>83.IBPluginDependency</string>
-					<string>83.ImportedFromIB2</string>
-					<string>92.IBPluginDependency</string>
-					<string>92.ImportedFromIB2</string>
-				</object>
-				<object class="NSMutableArray" key="dict.values">
-					<bool key="EncodedWithXMLCoder">YES</bool>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilderKit</string>
-					<string>com.apple.InterfaceBuilderKit</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<integer value="1" id="9"/>
-					<string>{{-648, 810}, {220, 23}}</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>{{596, 852}, {216, 23}}</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>{{522, 812}, {146, 23}}</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>{{436, 809}, {64, 6}}</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>{{-719, 760}, {197, 73}}</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>{{525, 802}, {197, 73}}</string>
-					<string>{{-1002, 833}, {371, 20}}</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>{74, 862}</string>
-					<string>{{11, 977}, {478, 20}}</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>{{-769, 790}, {234, 43}}</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>{{475, 832}, {234, 43}}</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>{{-990, 650}, {249, 183}}</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>{{23, 794}, {245, 183}}</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>{{-855, 760}, {167, 73}}</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>{{155, 774}, {199, 203}}</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<reference ref="9"/>
-				</object>
-			</object>
-			<object class="NSMutableDictionary" key="unlocalizedProperties">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-				<object class="NSArray" key="dict.sortedKeys">
-					<bool key="EncodedWithXMLCoder">YES</bool>
-				</object>
-				<object class="NSMutableArray" key="dict.values">
-					<bool key="EncodedWithXMLCoder">YES</bool>
-				</object>
-			</object>
-			<nil key="activeLocalization"/>
-			<object class="NSMutableDictionary" key="localizations">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-				<object class="NSArray" key="dict.sortedKeys">
-					<bool key="EncodedWithXMLCoder">YES</bool>
-				</object>
-				<object class="NSMutableArray" key="dict.values">
-					<bool key="EncodedWithXMLCoder">YES</bool>
-				</object>
-			</object>
-			<nil key="sourceID"/>
-			<int key="maxID">450</int>
-		</object>
-		<object class="IBClassDescriber" key="IBDocument.Classes"/>
-		<int key="IBDocument.localizationMode">0</int>
-		<string key="IBDocument.LastKnownRelativeProjectPath">../MacDependency.xcodeproj</string>
-		<int key="IBDocument.defaultPropertyAccessControl">3</int>
-	</data>
-</archive>
+<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="11542" systemVersion="16B2555" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none">
+    <dependencies>
+        <deployment identifier="macosx"/>
+        <development version="7000" identifier="xcode"/>
+        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="11542"/>
+    </dependencies>
+    <objects>
+        <customObject id="-2" userLabel="File's Owner" customClass="NSApplication"/>
+        <customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
+        <customObject id="-3" userLabel="Application" customClass="NSObject"/>
+        <menu title="AMainMenu" systemMenu="main" id="29" userLabel="MainMenu">
+            <items>
+                <menuItem title="MacDependency" id="56">
+                    <menu key="submenu" title="MacDependency" systemMenu="apple" id="57">
+                        <items>
+                            <menuItem title="About MacDependency" id="58">
+                                <modifierMask key="keyEquivalentModifierMask"/>
+                                <connections>
+                                    <action selector="orderFrontStandardAboutPanel:" target="-2" id="142"/>
+                                </connections>
+                            </menuItem>
+                            <menuItem isSeparatorItem="YES" id="236">
+                                <modifierMask key="keyEquivalentModifierMask" command="YES"/>
+                            </menuItem>
+                            <menuItem title="Preferences…" keyEquivalent="," id="129" userLabel="121"/>
+                            <menuItem isSeparatorItem="YES" id="143">
+                                <modifierMask key="keyEquivalentModifierMask" command="YES"/>
+                            </menuItem>
+                            <menuItem title="Services" id="131">
+                                <menu key="submenu" title="Services" systemMenu="services" id="130"/>
+                            </menuItem>
+                            <menuItem isSeparatorItem="YES" id="144">
+                                <modifierMask key="keyEquivalentModifierMask" command="YES"/>
+                            </menuItem>
+                            <menuItem title="Hide NewApplication" keyEquivalent="h" id="134">
+                                <connections>
+                                    <action selector="hide:" target="-1" id="367"/>
+                                </connections>
+                            </menuItem>
+                            <menuItem title="Hide Others" keyEquivalent="h" id="145">
+                                <modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/>
+                                <connections>
+                                    <action selector="hideOtherApplications:" target="-1" id="368"/>
+                                </connections>
+                            </menuItem>
+                            <menuItem title="Show All" id="150">
+                                <connections>
+                                    <action selector="unhideAllApplications:" target="-1" id="370"/>
+                                </connections>
+                            </menuItem>
+                            <menuItem isSeparatorItem="YES" id="149">
+                                <modifierMask key="keyEquivalentModifierMask" command="YES"/>
+                            </menuItem>
+                            <menuItem title="Quit MacDependency" keyEquivalent="q" id="136" userLabel="1111">
+                                <connections>
+                                    <action selector="terminate:" target="-3" id="448"/>
+                                </connections>
+                            </menuItem>
+                        </items>
+                    </menu>
+                </menuItem>
+                <menuItem title="File" id="83">
+                    <menu key="submenu" title="File" id="81">
+                        <items>
+                            <menuItem title="Open…" keyEquivalent="o" id="72">
+                                <connections>
+                                    <action selector="openDocument:" target="-1" id="372"/>
+                                </connections>
+                            </menuItem>
+                            <menuItem title="Open Recent" id="124">
+                                <menu key="submenu" title="Open Recent" systemMenu="recentDocuments" id="125">
+                                    <items>
+                                        <menuItem title="Clear Menu" id="126">
+                                            <connections>
+                                                <action selector="clearRecentDocuments:" target="-1" id="127"/>
+                                            </connections>
+                                        </menuItem>
+                                    </items>
+                                </menu>
+                            </menuItem>
+                            <menuItem isSeparatorItem="YES" id="79" userLabel="7">
+                                <modifierMask key="keyEquivalentModifierMask" command="YES"/>
+                            </menuItem>
+                            <menuItem title="Close" keyEquivalent="w" id="73" userLabel="1">
+                                <connections>
+                                    <action selector="performClose:" target="-1" id="193"/>
+                                </connections>
+                            </menuItem>
+                        </items>
+                    </menu>
+                </menuItem>
+                <menuItem title="View" id="295">
+                    <menu key="submenu" title="View" id="296">
+                        <items>
+                            <menuItem title="Show Toolbar" keyEquivalent="t" id="297">
+                                <modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/>
+                                <connections>
+                                    <action selector="toggleToolbarShown:" target="-1" id="366"/>
+                                </connections>
+                            </menuItem>
+                            <menuItem title="Customize Toolbar…" id="298">
+                                <connections>
+                                    <action selector="runToolbarCustomizationPalette:" target="-1" id="365"/>
+                                </connections>
+                            </menuItem>
+                        </items>
+                    </menu>
+                </menuItem>
+                <menuItem title="Window" id="19">
+                    <menu key="submenu" title="Window" systemMenu="window" id="24">
+                        <items>
+                            <menuItem title="Minimize" keyEquivalent="m" id="23">
+                                <connections>
+                                    <action selector="performMiniaturize:" target="-1" id="37"/>
+                                </connections>
+                            </menuItem>
+                            <menuItem title="Zoom" id="239">
+                                <connections>
+                                    <action selector="performZoom:" target="-1" id="240"/>
+                                </connections>
+                            </menuItem>
+                            <menuItem isSeparatorItem="YES" id="92">
+                                <modifierMask key="keyEquivalentModifierMask" command="YES"/>
+                            </menuItem>
+                            <menuItem title="Bring All to Front" id="5">
+                                <connections>
+                                    <action selector="arrangeInFront:" target="-1" id="39"/>
+                                </connections>
+                            </menuItem>
+                        </items>
+                    </menu>
+                </menuItem>
+                <menuItem title="Help" id="103" userLabel="1">
+                    <menu key="submenu" title="Help" id="106" userLabel="2">
+                        <items>
+                            <menuItem title="MacDependency Help" keyEquivalent="?" id="111">
+                                <connections>
+                                    <action selector="showHelp:" target="-1" id="360"/>
+                                </connections>
+                            </menuItem>
+                        </items>
+                    </menu>
+                </menuItem>
+            </items>
+        </menu>
+        <customObject id="419" customClass="NSFontManager"/>
+    </objects>
+</document>
diff --git a/MacDependency/English.lproj/MyDocument.xib b/MacDependency/English.lproj/MyDocument.xib
index 787fb3e..2fa987a 100644
--- a/MacDependency/English.lproj/MyDocument.xib
+++ b/MacDependency/English.lproj/MyDocument.xib
@@ -1,3662 +1,1453 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10">
-	<data>
-		<int key="IBDocument.SystemTarget">1050</int>
-		<string key="IBDocument.SystemVersion">10J869</string>
-		<string key="IBDocument.InterfaceBuilderVersion">1306</string>
-		<string key="IBDocument.AppKitVersion">1038.35</string>
-		<string key="IBDocument.HIToolboxVersion">461.00</string>
-		<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
-			<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
-			<string key="NS.object.0">1306</string>
-		</object>
-		<object class="NSArray" key="IBDocument.IntegratedClassDependencies">
-			<bool key="EncodedWithXMLCoder">YES</bool>
-			<string>NSMenuItem</string>
-			<string>NSTextView</string>
-			<string>NSMenu</string>
-			<string>NSToolbarItem</string>
-			<string>NSButton</string>
-			<string>NSToolbarFlexibleSpaceItem</string>
-			<string>NSCustomObject</string>
-			<string>NSArrayController</string>
-			<string>NSSplitView</string>
-			<string>NSTableView</string>
-			<string>NSCustomView</string>
-			<string>NSDateFormatter</string>
-			<string>NSTextField</string>
-			<string>NSSearchField</string>
-			<string>NSSearchFieldCell</string>
-			<string>NSWindowTemplate</string>
-			<string>NSTextFieldCell</string>
-			<string>NSTreeController</string>
-			<string>NSButtonCell</string>
-			<string>NSTableColumn</string>
-			<string>NSSegmentedControl</string>
-			<string>NSOutlineView</string>
-			<string>NSPopUpButtonCell</string>
-			<string>NSView</string>
-			<string>NSBox</string>
-			<string>NSToolbar</string>
-			<string>NSScrollView</string>
-			<string>NSSegmentedCell</string>
-			<string>NSScroller</string>
-			<string>NSTableHeaderView</string>
-			<string>NSPopUpButton</string>
-		</object>
-		<object class="NSArray" key="IBDocument.PluginDependencies">
-			<bool key="EncodedWithXMLCoder">YES</bool>
-			<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-		</object>
-		<object class="NSMutableDictionary" key="IBDocument.Metadata">
-			<bool key="EncodedWithXMLCoder">YES</bool>
-			<object class="NSArray" key="dict.sortedKeys" id="0">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-			</object>
-			<reference key="dict.values" ref="0"/>
-		</object>
-		<object class="NSMutableArray" key="IBDocument.RootObjects" id="580458321">
-			<bool key="EncodedWithXMLCoder">YES</bool>
-			<object class="NSCustomObject" id="512844837">
-				<string key="NSClassName">MyDocument</string>
-			</object>
-			<object class="NSCustomObject" id="613418571">
-				<string key="NSClassName">FirstResponder</string>
-			</object>
-			<object class="NSWindowTemplate" id="275939982">
-				<int key="NSWindowStyleMask">15</int>
-				<int key="NSWindowBacking">2</int>
-				<string key="NSWindowRect">{{470, 260}, {938, 698}}</string>
-				<int key="NSWTFlags">1886912512</int>
-				<string key="NSWindowTitle">Window</string>
-				<string key="NSWindowClass">MyDocumentWindow</string>
-				<object class="NSToolbar" key="NSViewClass" id="999575573">
-					<object class="NSMutableString" key="NSToolbarIdentifier">
-						<characters key="NS.bytes">5B15C9FB-E698-423F-8D71-06B45A425019</characters>
-					</object>
-					<nil key="NSToolbarDelegate"/>
-					<bool key="NSToolbarPrefersToBeShown">YES</bool>
-					<bool key="NSToolbarShowsBaselineSeparator">YES</bool>
-					<bool key="NSToolbarAllowsUserCustomization">YES</bool>
-					<bool key="NSToolbarAutosavesConfiguration">NO</bool>
-					<int key="NSToolbarDisplayMode">1</int>
-					<int key="NSToolbarSizeMode">1</int>
-					<object class="NSMutableDictionary" key="NSToolbarIBIdentifiedItems">
-						<bool key="EncodedWithXMLCoder">YES</bool>
-						<object class="NSArray" key="dict.sortedKeys">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<string>380958DD-5EE1-42A4-A006-F65FDAD532FF</string>
-							<string>NSToolbarFlexibleSpaceItem</string>
-						</object>
-						<object class="NSMutableArray" key="dict.values">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<object class="NSToolbarItem" id="743465026">
-								<object class="NSMutableString" key="NSToolbarItemIdentifier">
-									<characters key="NS.bytes">380958DD-5EE1-42A4-A006-F65FDAD532FF</characters>
-								</object>
-								<string key="NSToolbarItemLabel">Architecture</string>
-								<string key="NSToolbarItemPaletteLabel">Architecture</string>
-								<nil key="NSToolbarItemToolTip"/>
-								<object class="NSPopUpButton" key="NSToolbarItemView" id="122712539">
-									<nil key="NSNextResponder"/>
-									<int key="NSvFlags">268</int>
-									<string key="NSFrame">{{0, 14}, {150, 25}}</string>
-									<bool key="NSEnabled">YES</bool>
-									<object class="NSPopUpButtonCell" key="NSCell" id="361137651">
-										<int key="NSCellFlags">-2076049856</int>
-										<int key="NSCellFlags2">2048</int>
-										<object class="NSFont" key="NSSupport" id="496012845">
-											<string key="NSName">LucidaGrande</string>
-											<double key="NSSize">13</double>
-											<int key="NSfFlags">1044</int>
-										</object>
-										<reference key="NSControlView" ref="122712539"/>
-										<int key="NSButtonFlags">-2038284033</int>
-										<int key="NSButtonFlags2">163</int>
-										<string key="NSAlternateContents"/>
-										<string key="NSKeyEquivalent"/>
-										<int key="NSPeriodicDelay">400</int>
-										<int key="NSPeriodicInterval">75</int>
-										<object class="NSMenuItem" key="NSMenuItem" id="312805641">
-											<reference key="NSMenu" ref="583170644"/>
-											<string key="NSTitle">Item 1</string>
-											<string key="NSKeyEquiv"/>
-											<int key="NSKeyEquivModMask">1048576</int>
-											<int key="NSMnemonicLoc">2147483647</int>
-											<int key="NSState">1</int>
-											<object class="NSCustomResource" key="NSOnImage" id="716097094">
-												<string key="NSClassName">NSImage</string>
-												<string key="NSResourceName">NSMenuCheckmark</string>
-											</object>
-											<object class="NSCustomResource" key="NSMixedImage" id="797874583">
-												<string key="NSClassName">NSImage</string>
-												<string key="NSResourceName">NSMenuMixedState</string>
-											</object>
-											<string key="NSAction">_popUpItemAction:</string>
-											<reference key="NSTarget" ref="361137651"/>
-										</object>
-										<bool key="NSMenuItemRespectAlignment">YES</bool>
-										<object class="NSMenu" key="NSMenu" id="583170644">
-											<string key="NSTitle">OtherViews</string>
-											<object class="NSMutableArray" key="NSMenuItems">
-												<bool key="EncodedWithXMLCoder">YES</bool>
-												<reference ref="312805641"/>
-												<object class="NSMenuItem" id="638398545">
-													<reference key="NSMenu" ref="583170644"/>
-													<string key="NSTitle">Item 2</string>
-													<string key="NSKeyEquiv"/>
-													<int key="NSKeyEquivModMask">1048576</int>
-													<int key="NSMnemonicLoc">2147483647</int>
-													<reference key="NSOnImage" ref="716097094"/>
-													<reference key="NSMixedImage" ref="797874583"/>
-													<string key="NSAction">_popUpItemAction:</string>
-													<reference key="NSTarget" ref="361137651"/>
-												</object>
-												<object class="NSMenuItem" id="346213429">
-													<reference key="NSMenu" ref="583170644"/>
-													<string key="NSTitle">Item 3</string>
-													<string key="NSKeyEquiv"/>
-													<int key="NSKeyEquivModMask">1048576</int>
-													<int key="NSMnemonicLoc">2147483647</int>
-													<reference key="NSOnImage" ref="716097094"/>
-													<reference key="NSMixedImage" ref="797874583"/>
-													<string key="NSAction">_popUpItemAction:</string>
-													<reference key="NSTarget" ref="361137651"/>
-												</object>
-											</object>
-										</object>
-										<int key="NSPreferredEdge">1</int>
-										<bool key="NSUsesItemFromMenu">YES</bool>
-										<bool key="NSAltersState">YES</bool>
-										<int key="NSArrowPosition">2</int>
-									</object>
-								</object>
-								<nil key="NSToolbarItemImage"/>
-								<nil key="NSToolbarItemTarget"/>
-								<nil key="NSToolbarItemAction"/>
-								<string key="NSToolbarItemMinSize">{150, 25}</string>
-								<string key="NSToolbarItemMaxSize">{150, 25}</string>
-								<bool key="NSToolbarItemEnabled">YES</bool>
-								<bool key="NSToolbarItemAutovalidates">YES</bool>
-								<int key="NSToolbarItemTag">0</int>
-								<bool key="NSToolbarIsUserRemovable">YES</bool>
-								<int key="NSToolbarItemVisibilityPriority">0</int>
-							</object>
-							<object class="NSToolbarFlexibleSpaceItem" id="379654699">
-								<string key="NSToolbarItemIdentifier">NSToolbarFlexibleSpaceItem</string>
-								<string key="NSToolbarItemLabel"/>
-								<string key="NSToolbarItemPaletteLabel">Flexible Space</string>
-								<nil key="NSToolbarItemToolTip"/>
-								<nil key="NSToolbarItemView"/>
-								<nil key="NSToolbarItemImage"/>
-								<nil key="NSToolbarItemTarget"/>
-								<nil key="NSToolbarItemAction"/>
-								<string key="NSToolbarItemMinSize">{1, 5}</string>
-								<string key="NSToolbarItemMaxSize">{20000, 32}</string>
-								<bool key="NSToolbarItemEnabled">YES</bool>
-								<bool key="NSToolbarItemAutovalidates">YES</bool>
-								<int key="NSToolbarItemTag">-1</int>
-								<bool key="NSToolbarIsUserRemovable">YES</bool>
-								<int key="NSToolbarItemVisibilityPriority">0</int>
-								<object class="NSMenuItem" key="NSToolbarItemMenuFormRepresentation">
-									<bool key="NSIsDisabled">YES</bool>
-									<bool key="NSIsSeparator">YES</bool>
-									<string key="NSTitle"/>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="716097094"/>
-									<reference key="NSMixedImage" ref="797874583"/>
-								</object>
-							</object>
-						</object>
-					</object>
-					<object class="NSArray" key="NSToolbarIBAllowedItems">
-						<bool key="EncodedWithXMLCoder">YES</bool>
-						<reference ref="379654699"/>
-						<reference ref="743465026"/>
-					</object>
-					<object class="NSMutableArray" key="NSToolbarIBDefaultItems">
-						<bool key="EncodedWithXMLCoder">YES</bool>
-						<reference ref="743465026"/>
-						<reference ref="379654699"/>
-					</object>
-					<object class="NSMutableArray" key="NSToolbarIBSelectableItems">
-						<bool key="EncodedWithXMLCoder">YES</bool>
-					</object>
-				</object>
-				<string key="NSWindowContentMinSize">{94, 86}</string>
-				<object class="NSView" key="NSWindowView" id="568628114">
-					<reference key="NSNextResponder"/>
-					<int key="NSvFlags">274</int>
-					<object class="NSMutableArray" key="NSSubviews">
-						<bool key="EncodedWithXMLCoder">YES</bool>
-						<object class="NSSplitView" id="480030409">
-							<reference key="NSNextResponder" ref="568628114"/>
-							<int key="NSvFlags">274</int>
-							<object class="NSMutableArray" key="NSSubviews">
-								<bool key="EncodedWithXMLCoder">YES</bool>
-								<object class="NSCustomView" id="168893345">
-									<reference key="NSNextResponder" ref="480030409"/>
-									<int key="NSvFlags">274</int>
-									<object class="NSMutableArray" key="NSSubviews">
-										<bool key="EncodedWithXMLCoder">YES</bool>
-										<object class="NSScrollView" id="316479869">
-											<reference key="NSNextResponder" ref="168893345"/>
-											<int key="NSvFlags">274</int>
-											<object class="NSMutableArray" key="NSSubviews">
-												<bool key="EncodedWithXMLCoder">YES</bool>
-												<object class="NSClipView" id="305821142">
-													<reference key="NSNextResponder" ref="316479869"/>
-													<int key="NSvFlags">2304</int>
-													<object class="NSMutableArray" key="NSSubviews">
-														<bool key="EncodedWithXMLCoder">YES</bool>
-														<object class="NSOutlineView" id="882949769">
-															<reference key="NSNextResponder" ref="305821142"/>
-															<int key="NSvFlags">4352</int>
-															<string key="NSFrameSize">{495, 656}</string>
-															<reference key="NSSuperview" ref="305821142"/>
-															<reference key="NSNextKeyView" ref="132988028"/>
-															<bool key="NSEnabled">YES</bool>
-															<object class="NSTableHeaderView" key="NSHeaderView" id="626659117">
-																<reference key="NSNextResponder" ref="246277682"/>
-																<int key="NSvFlags">256</int>
-																<string key="NSFrameSize">{495, 17}</string>
-																<reference key="NSSuperview" ref="246277682"/>
-																<reference key="NSNextKeyView" ref="305821142"/>
-																<reference key="NSTableView" ref="882949769"/>
-															</object>
-															<object class="_NSCornerView" key="NSCornerView" id="1032172204">
-																<reference key="NSNextResponder" ref="316479869"/>
-																<int key="NSvFlags">-2147483392</int>
-																<string key="NSFrame">{{-26, 0}, {16, 17}}</string>
-																<reference key="NSSuperview" ref="316479869"/>
-																<reference key="NSNextKeyView" ref="246277682"/>
-															</object>
-															<object class="NSMutableArray" key="NSTableColumns">
-																<bool key="EncodedWithXMLCoder">YES</bool>
-																<object class="NSTableColumn" id="28815098">
-																	<double key="NSWidth">240</double>
-																	<double key="NSMinWidth">16</double>
-																	<double key="NSMaxWidth">1000</double>
-																	<object class="NSTableHeaderCell" key="NSHeaderCell">
-																		<int key="NSCellFlags">75628096</int>
-																		<int key="NSCellFlags2">2048</int>
-																		<string key="NSContents">Name (Install Name)</string>
-																		<object class="NSFont" key="NSSupport" id="26">
-																			<string key="NSName">LucidaGrande</string>
-																			<double key="NSSize">11</double>
-																			<int key="NSfFlags">3100</int>
-																		</object>
-																		<object class="NSColor" key="NSBackgroundColor">
-																			<int key="NSColorSpace">3</int>
-																			<bytes key="NSWhite">MC4zMzMzMzI5OQA</bytes>
-																		</object>
-																		<object class="NSColor" key="NSTextColor" id="193167496">
-																			<int key="NSColorSpace">6</int>
-																			<string key="NSCatalogName">System</string>
-																			<string key="NSColorName">headerTextColor</string>
-																			<object class="NSColor" key="NSColor" id="790077763">
-																				<int key="NSColorSpace">3</int>
-																				<bytes key="NSWhite">MAA</bytes>
-																			</object>
-																		</object>
-																	</object>
-																	<object class="NSTextFieldCell" key="NSDataCell" id="1055282365">
-																		<int key="NSCellFlags">337772096</int>
-																		<int key="NSCellFlags2">2560</int>
-																		<string key="NSContents">Text Cell</string>
-																		<reference key="NSSupport" ref="496012845"/>
-																		<reference key="NSControlView" ref="882949769"/>
-																		<object class="NSColor" key="NSBackgroundColor" id="131586594">
-																			<int key="NSColorSpace">6</int>
-																			<string key="NSCatalogName">System</string>
-																			<string key="NSColorName">controlBackgroundColor</string>
-																			<object class="NSColor" key="NSColor" id="230683939">
-																				<int key="NSColorSpace">3</int>
-																				<bytes key="NSWhite">MC42NjY2NjY2NjY3AA</bytes>
-																			</object>
-																		</object>
-																		<object class="NSColor" key="NSTextColor" id="83514011">
-																			<int key="NSColorSpace">6</int>
-																			<string key="NSCatalogName">System</string>
-																			<string key="NSColorName">controlTextColor</string>
-																			<reference key="NSColor" ref="790077763"/>
-																		</object>
-																	</object>
-																	<int key="NSResizingMask">3</int>
-																	<bool key="NSIsResizeable">YES</bool>
-																	<reference key="NSTableView" ref="882949769"/>
-																</object>
-																<object class="NSTableColumn" id="856594260">
-																	<double key="NSWidth">64</double>
-																	<double key="NSMinWidth">10</double>
-																	<double key="NSMaxWidth">3.4028229999999999e+38</double>
-																	<object class="NSTableHeaderCell" key="NSHeaderCell">
-																		<int key="NSCellFlags">75628096</int>
-																		<int key="NSCellFlags2">2048</int>
-																		<string key="NSContents">Type</string>
-																		<reference key="NSSupport" ref="26"/>
-																		<object class="NSColor" key="NSBackgroundColor" id="1030985262">
-																			<int key="NSColorSpace">6</int>
-																			<string key="NSCatalogName">System</string>
-																			<string key="NSColorName">headerColor</string>
-																			<object class="NSColor" key="NSColor" id="505013229">
-																				<int key="NSColorSpace">3</int>
-																				<bytes key="NSWhite">MQA</bytes>
-																			</object>
-																		</object>
-																		<reference key="NSTextColor" ref="193167496"/>
-																	</object>
-																	<object class="NSTextFieldCell" key="NSDataCell" id="396048020">
-																		<int key="NSCellFlags">337772096</int>
-																		<int key="NSCellFlags2">2560</int>
-																		<string key="NSContents">Text Cell</string>
-																		<reference key="NSSupport" ref="496012845"/>
-																		<reference key="NSControlView" ref="882949769"/>
-																		<reference key="NSBackgroundColor" ref="131586594"/>
-																		<reference key="NSTextColor" ref="83514011"/>
-																	</object>
-																	<int key="NSResizingMask">3</int>
-																	<bool key="NSIsResizeable">YES</bool>
-																	<reference key="NSTableView" ref="882949769"/>
-																</object>
-																<object class="NSTableColumn" id="734332375">
-																	<double key="NSWidth">93</double>
-																	<double key="NSMinWidth">10</double>
-																	<double key="NSMaxWidth">3.4028229999999999e+38</double>
-																	<object class="NSTableHeaderCell" key="NSHeaderCell">
-																		<int key="NSCellFlags">75628096</int>
-																		<int key="NSCellFlags2">2048</int>
-																		<string key="NSContents">Current Version</string>
-																		<reference key="NSSupport" ref="26"/>
-																		<reference key="NSBackgroundColor" ref="1030985262"/>
-																		<reference key="NSTextColor" ref="193167496"/>
-																	</object>
-																	<object class="NSTextFieldCell" key="NSDataCell" id="92621518">
-																		<int key="NSCellFlags">337772096</int>
-																		<int key="NSCellFlags2">2560</int>
-																		<string key="NSContents">Text Cell</string>
-																		<reference key="NSSupport" ref="496012845"/>
-																		<reference key="NSControlView" ref="882949769"/>
-																		<reference key="NSBackgroundColor" ref="131586594"/>
-																		<reference key="NSTextColor" ref="83514011"/>
-																	</object>
-																	<int key="NSResizingMask">3</int>
-																	<bool key="NSIsResizeable">YES</bool>
-																	<reference key="NSTableView" ref="882949769"/>
-																</object>
-																<object class="NSTableColumn" id="584193008">
-																	<double key="NSWidth">86</double>
-																	<double key="NSMinWidth">10</double>
-																	<double key="NSMaxWidth">3.4028229999999999e+38</double>
-																	<object class="NSTableHeaderCell" key="NSHeaderCell">
-																		<int key="NSCellFlags">75628096</int>
-																		<int key="NSCellFlags2">2048</int>
-																		<string key="NSContents">Compatible Version</string>
-																		<reference key="NSSupport" ref="26"/>
-																		<reference key="NSBackgroundColor" ref="1030985262"/>
-																		<reference key="NSTextColor" ref="193167496"/>
-																	</object>
-																	<object class="NSTextFieldCell" key="NSDataCell" id="173897280">
-																		<int key="NSCellFlags">337772096</int>
-																		<int key="NSCellFlags2">-2147481088</int>
-																		<string key="NSContents">Text Cell</string>
-																		<reference key="NSSupport" ref="496012845"/>
-																		<reference key="NSControlView" ref="882949769"/>
-																		<reference key="NSBackgroundColor" ref="131586594"/>
-																		<reference key="NSTextColor" ref="83514011"/>
-																	</object>
-																	<int key="NSResizingMask">3</int>
-																	<bool key="NSIsResizeable">YES</bool>
-																	<reference key="NSTableView" ref="882949769"/>
-																</object>
-															</object>
-															<double key="NSIntercellSpacingWidth">3</double>
-															<double key="NSIntercellSpacingHeight">0.0</double>
-															<object class="NSColor" key="NSBackgroundColor">
-																<int key="NSColorSpace">6</int>
-																<string key="NSCatalogName">System</string>
-																<string key="NSColorName">_sourceListBackgroundColor</string>
-																<object class="NSColor" key="NSColor">
-																	<int key="NSColorSpace">1</int>
-																	<bytes key="NSRGB">MC44MzkyMTU2OTU5IDAuODY2NjY2Njc0NiAwLjg5ODAzOTIyMTgAA</bytes>
-																</object>
-															</object>
-															<object class="NSColor" key="NSGridColor" id="483818171">
-																<int key="NSColorSpace">6</int>
-																<string key="NSCatalogName">System</string>
-																<string key="NSColorName">gridColor</string>
-																<object class="NSColor" key="NSColor">
-																	<int key="NSColorSpace">3</int>
-																	<bytes key="NSWhite">MC41AA</bytes>
-																</object>
-															</object>
-															<double key="NSRowHeight">20</double>
-															<int key="NSTvFlags">-767557632</int>
-															<reference key="NSDelegate"/>
-															<reference key="NSDataSource"/>
-															<int key="NSColumnAutoresizingStyle">4</int>
-															<int key="NSDraggingSourceMaskForLocal">15</int>
-															<int key="NSDraggingSourceMaskForNonLocal">0</int>
-															<bool key="NSAllowsTypeSelect">YES</bool>
-															<int key="NSTableViewSelectionHighlightStyle">1</int>
-															<int key="NSTableViewDraggingDestinationStyle">1</int>
-															<float key="NSOutlineViewIndentationPerLevelKey">14</float>
-														</object>
-													</object>
-													<string key="NSFrame">{{1, 17}, {495, 656}}</string>
-													<reference key="NSSuperview" ref="316479869"/>
-													<reference key="NSNextKeyView" ref="882949769"/>
-													<reference key="NSDocView" ref="882949769"/>
-													<reference key="NSBGColor" ref="131586594"/>
-													<int key="NScvFlags">4</int>
-												</object>
-												<object class="NSScroller" id="132988028">
-													<reference key="NSNextResponder" ref="316479869"/>
-													<int key="NSvFlags">-2147483392</int>
-													<string key="NSFrame">{{479, 17}, {15, 645}}</string>
-													<reference key="NSSuperview" ref="316479869"/>
-													<reference key="NSNextKeyView" ref="797605026"/>
-													<reference key="NSTarget" ref="316479869"/>
-													<string key="NSAction">_doScroller:</string>
-													<double key="NSCurValue">0.010670731707317072</double>
-													<double key="NSPercent">0.998004</double>
-												</object>
-												<object class="NSScroller" id="797605026">
-													<reference key="NSNextResponder" ref="316479869"/>
-													<int key="NSvFlags">-2147483392</int>
-													<string key="NSFrame">{{1, 662}, {478, 15}}</string>
-													<reference key="NSSuperview" ref="316479869"/>
-													<reference key="NSNextKeyView" ref="945751664"/>
-													<int key="NSsFlags">1</int>
-													<reference key="NSTarget" ref="316479869"/>
-													<string key="NSAction">_doScroller:</string>
-													<double key="NSPercent">0.99395160000000005</double>
-												</object>
-												<object class="NSClipView" id="246277682">
-													<reference key="NSNextResponder" ref="316479869"/>
-													<int key="NSvFlags">2304</int>
-													<object class="NSMutableArray" key="NSSubviews">
-														<bool key="EncodedWithXMLCoder">YES</bool>
-														<reference ref="626659117"/>
-													</object>
-													<string key="NSFrame">{{1, 0}, {495, 17}}</string>
-													<reference key="NSSuperview" ref="316479869"/>
-													<reference key="NSNextKeyView" ref="626659117"/>
-													<reference key="NSDocView" ref="626659117"/>
-													<reference key="NSBGColor" ref="131586594"/>
-													<int key="NScvFlags">4</int>
-												</object>
-												<reference ref="1032172204"/>
-											</object>
-											<string key="NSFrameSize">{497, 674}</string>
-											<reference key="NSSuperview" ref="168893345"/>
-											<reference key="NSNextKeyView" ref="1032172204"/>
-											<int key="NSsFlags">562</int>
-											<reference key="NSVScroller" ref="132988028"/>
-											<reference key="NSHScroller" ref="797605026"/>
-											<reference key="NSContentView" ref="305821142"/>
-											<reference key="NSHeaderClipView" ref="246277682"/>
-											<reference key="NSCornerView" ref="1032172204"/>
-											<bytes key="NSScrollAmts">QSAAAEEgAABBoAAAQaAAAA</bytes>
-										</object>
-									</object>
-									<string key="NSFrameSize">{497, 674}</string>
-									<reference key="NSSuperview" ref="480030409"/>
-									<reference key="NSNextKeyView" ref="316479869"/>
-									<string key="NSClassName">NSView</string>
-								</object>
-								<object class="NSCustomView" id="945751664">
-									<reference key="NSNextResponder" ref="480030409"/>
-									<int key="NSvFlags">274</int>
-									<object class="NSMutableArray" key="NSSubviews">
-										<bool key="EncodedWithXMLCoder">YES</bool>
-										<object class="NSSplitView" id="121913769">
-											<reference key="NSNextResponder" ref="945751664"/>
-											<int key="NSvFlags">274</int>
-											<object class="NSMutableArray" key="NSSubviews">
-												<bool key="EncodedWithXMLCoder">YES</bool>
-												<object class="NSCustomView" id="555772475">
-													<reference key="NSNextResponder" ref="121913769"/>
-													<int key="NSvFlags">274</int>
-													<object class="NSMutableArray" key="NSSubviews">
-														<bool key="EncodedWithXMLCoder">YES</bool>
-														<object class="NSButton" id="1008118083">
-															<reference key="NSNextResponder" ref="555772475"/>
-															<int key="NSvFlags">265</int>
-															<string key="NSFrame">{{325, 411}, {99, 17}}</string>
-															<reference key="NSSuperview" ref="555772475"/>
-															<reference key="NSNextKeyView" ref="993238193"/>
-															<bool key="NSEnabled">YES</bool>
-															<object class="NSButtonCell" key="NSCell" id="79581081">
-																<int key="NSCellFlags">67239424</int>
-																<int key="NSCellFlags2">134348800</int>
-																<string key="NSContents">Reveal in Finder</string>
-																<reference key="NSSupport" ref="26"/>
-																<reference key="NSControlView" ref="1008118083"/>
-																<int key="NSButtonFlags">-2038152961</int>
-																<int key="NSButtonFlags2">164</int>
-																<string key="NSAlternateContents"/>
-																<string key="NSKeyEquivalent"/>
-																<int key="NSPeriodicDelay">400</int>
-																<int key="NSPeriodicInterval">75</int>
-															</object>
-														</object>
-														<object class="NSTextField" id="913859628">
-															<reference key="NSNextResponder" ref="555772475"/>
-															<int key="NSvFlags">268</int>
-															<string key="NSFrame">{{17, 413}, {67, 14}}</string>
-															<reference key="NSSuperview" ref="555772475"/>
-															<reference key="NSNextKeyView" ref="1042111986"/>
-															<bool key="NSEnabled">YES</bool>
-															<object class="NSTextFieldCell" key="NSCell" id="330882544">
-																<int key="NSCellFlags">68288064</int>
-																<int key="NSCellFlags2">272761856</int>
-																<string key="NSContents">File Name</string>
-																<reference key="NSSupport" ref="26"/>
-																<reference key="NSControlView" ref="913859628"/>
-																<object class="NSColor" key="NSBackgroundColor" id="1000931367">
-																	<int key="NSColorSpace">6</int>
-																	<string key="NSCatalogName">System</string>
-																	<string key="NSColorName">controlColor</string>
-																	<reference key="NSColor" ref="230683939"/>
-																</object>
-																<reference key="NSTextColor" ref="83514011"/>
-															</object>
-														</object>
-														<object class="NSTextField" id="1042111986">
-															<reference key="NSNextResponder" ref="555772475"/>
-															<int key="NSvFlags">266</int>
-															<string key="NSFrame">{{99, 413}, {221, 14}}</string>
-															<reference key="NSSuperview" ref="555772475"/>
-															<reference key="NSNextKeyView" ref="1008118083"/>
-															<bool key="NSEnabled">YES</bool>
-															<object class="NSTextFieldCell" key="NSCell" id="861957056">
-																<int key="NSCellFlags">68288064</int>
-																<int key="NSCellFlags2">272761856</int>
-																<string key="NSContents">Label</string>
-																<reference key="NSSupport" ref="26"/>
-																<reference key="NSControlView" ref="1042111986"/>
-																<reference key="NSBackgroundColor" ref="1000931367"/>
-																<reference key="NSTextColor" ref="83514011"/>
-															</object>
-														</object>
-														<object class="NSTextField" id="880416516">
-															<reference key="NSNextResponder" ref="555772475"/>
-															<int key="NSvFlags">268</int>
-															<string key="NSFrame">{{17, 325}, {61, 14}}</string>
-															<reference key="NSSuperview" ref="555772475"/>
-															<reference key="NSNextKeyView" ref="161798316"/>
-															<bool key="NSEnabled">YES</bool>
-															<object class="NSTextFieldCell" key="NSCell" id="158980578">
-																<int key="NSCellFlags">68288064</int>
-																<int key="NSCellFlags2">272761856</int>
-																<string key="NSContents">File Type</string>
-																<reference key="NSSupport" ref="26"/>
-																<reference key="NSControlView" ref="880416516"/>
-																<reference key="NSBackgroundColor" ref="1000931367"/>
-																<reference key="NSTextColor" ref="83514011"/>
-															</object>
-														</object>
-														<object class="NSTextField" id="161798316">
-															<reference key="NSNextResponder" ref="555772475"/>
-															<int key="NSvFlags">266</int>
-															<string key="NSFrame">{{99, 325}, {328, 14}}</string>
-															<reference key="NSSuperview" ref="555772475"/>
-															<reference key="NSNextKeyView" ref="87679271"/>
-															<bool key="NSEnabled">YES</bool>
-															<object class="NSTextFieldCell" key="NSCell" id="418558818">
-																<int key="NSCellFlags">68288064</int>
-																<int key="NSCellFlags2">272761856</int>
-																<string key="NSContents">Label</string>
-																<reference key="NSSupport" ref="26"/>
-																<reference key="NSControlView" ref="161798316"/>
-																<reference key="NSBackgroundColor" ref="1000931367"/>
-																<reference key="NSTextColor" ref="83514011"/>
-															</object>
-														</object>
-														<object class="NSTextField" id="87679271">
-															<reference key="NSNextResponder" ref="555772475"/>
-															<int key="NSvFlags">268</int>
-															<string key="NSFrame">{{16, 303}, {56, 14}}</string>
-															<reference key="NSSuperview" ref="555772475"/>
-															<reference key="NSNextKeyView" ref="908552118"/>
-															<bool key="NSEnabled">YES</bool>
-															<object class="NSTextFieldCell" key="NSCell" id="696765352">
-																<int key="NSCellFlags">68288064</int>
-																<int key="NSCellFlags2">272761856</int>
-																<string key="NSContents">Size</string>
-																<reference key="NSSupport" ref="26"/>
-																<reference key="NSControlView" ref="87679271"/>
-																<reference key="NSBackgroundColor" ref="1000931367"/>
-																<reference key="NSTextColor" ref="83514011"/>
-															</object>
-														</object>
-														<object class="NSTextField" id="908552118">
-															<reference key="NSNextResponder" ref="555772475"/>
-															<int key="NSvFlags">266</int>
-															<string key="NSFrame">{{99, 303}, {328, 14}}</string>
-															<reference key="NSSuperview" ref="555772475"/>
-															<reference key="NSNextKeyView" ref="128137111"/>
-															<bool key="NSEnabled">YES</bool>
-															<object class="NSTextFieldCell" key="NSCell" id="627396623">
-																<int key="NSCellFlags">68288064</int>
-																<int key="NSCellFlags2">272761856</int>
-																<string key="NSContents">Label</string>
-																<reference key="NSSupport" ref="26"/>
-																<reference key="NSControlView" ref="908552118"/>
-																<reference key="NSBackgroundColor" ref="1000931367"/>
-																<reference key="NSTextColor" ref="83514011"/>
-															</object>
-														</object>
-														<object class="NSTextField" id="468417045">
-															<reference key="NSNextResponder" ref="555772475"/>
-															<int key="NSvFlags">268</int>
-															<string key="NSFrame">{{17, 369}, {82, 14}}</string>
-															<reference key="NSSuperview" ref="555772475"/>
-															<reference key="NSNextKeyView" ref="984087406"/>
-															<bool key="NSEnabled">YES</bool>
-															<object class="NSTextFieldCell" key="NSCell" id="443541637">
-																<int key="NSCellFlags">68288064</int>
-																<int key="NSCellFlags2">272761856</int>
-																<string key="NSContents">Architecture</string>
-																<reference key="NSSupport" ref="26"/>
-																<reference key="NSControlView" ref="468417045"/>
-																<reference key="NSBackgroundColor" ref="1000931367"/>
-																<reference key="NSTextColor" ref="83514011"/>
-															</object>
-														</object>
-														<object class="NSSegmentedControl" id="293024117">
-															<reference key="NSNextResponder" ref="555772475"/>
-															<int key="NSvFlags">264</int>
-															<string key="NSFrame">{{142, 203}, {129, 18}}</string>
-															<reference key="NSSuperview" ref="555772475"/>
-															<reference key="NSNextKeyView" ref="635628551"/>
-															<bool key="NSEnabled">YES</bool>
-															<object class="NSSegmentedCell" key="NSCell" id="582070752">
-																<int key="NSCellFlags">67239424</int>
-																<int key="NSCellFlags2">131072</int>
-																<reference key="NSSupport" ref="26"/>
-																<reference key="NSControlView" ref="293024117"/>
-																<object class="NSMutableArray" key="NSSegmentImages">
-																	<bool key="EncodedWithXMLCoder">YES</bool>
-																	<object class="NSSegmentItem">
-																		<double key="NSSegmentItemWidth">59</double>
-																		<string key="NSSegmentItemLabel">Export</string>
-																		<bool key="NSSegmentItemSelected">YES</bool>
-																		<int key="NSSegmentItemImageScaling">0</int>
-																	</object>
-																	<object class="NSSegmentItem">
-																		<double key="NSSegmentItemWidth">63</double>
-																		<string key="NSSegmentItemLabel">Import</string>
-																		<int key="NSSegmentItemTag">1</int>
-																		<int key="NSSegmentItemImageScaling">0</int>
-																	</object>
-																</object>
-																<int key="NSTrackingMode">1</int>
-																<int key="NSSegmentStyle">3</int>
-															</object>
-														</object>
-														<object class="NSScrollView" id="249986093">
-															<reference key="NSNextResponder" ref="555772475"/>
-															<int key="NSvFlags">274</int>
-															<object class="NSMutableArray" key="NSSubviews">
-																<bool key="EncodedWithXMLCoder">YES</bool>
-																<object class="NSClipView" id="486190613">
-																	<reference key="NSNextResponder" ref="249986093"/>
-																	<int key="NSvFlags">2304</int>
-																	<object class="NSMutableArray" key="NSSubviews">
-																		<bool key="EncodedWithXMLCoder">YES</bool>
-																		<object class="NSTableView" id="381571687">
-																			<reference key="NSNextResponder" ref="486190613"/>
-																			<int key="NSvFlags">256</int>
-																			<string key="NSFrameSize">{403, 171}</string>
-																			<reference key="NSSuperview" ref="486190613"/>
-																			<reference key="NSNextKeyView" ref="702688654"/>
-																			<bool key="NSEnabled">YES</bool>
-																			<object class="NSTableHeaderView" key="NSHeaderView" id="822923245">
-																				<reference key="NSNextResponder" ref="1023177159"/>
-																				<int key="NSvFlags">256</int>
-																				<string key="NSFrameSize">{403, 17}</string>
-																				<reference key="NSSuperview" ref="1023177159"/>
-																				<reference key="NSNextKeyView" ref="486190613"/>
-																				<reference key="NSTableView" ref="381571687"/>
-																			</object>
-																			<object class="_NSCornerView" key="NSCornerView" id="691569355">
-																				<reference key="NSNextResponder" ref="249986093"/>
-																				<int key="NSvFlags">-2147483392</int>
-																				<string key="NSFrame">{{-22, 0}, {12, 17}}</string>
-																				<reference key="NSSuperview" ref="249986093"/>
-																				<reference key="NSNextKeyView" ref="1023177159"/>
-																			</object>
-																			<object class="NSMutableArray" key="NSTableColumns">
-																				<bool key="EncodedWithXMLCoder">YES</bool>
-																				<object class="NSTableColumn" id="948551868">
-																					<double key="NSWidth">101</double>
-																					<double key="NSMinWidth">40</double>
-																					<double key="NSMaxWidth">1000</double>
-																					<object class="NSTableHeaderCell" key="NSHeaderCell">
-																						<int key="NSCellFlags">75628096</int>
-																						<int key="NSCellFlags2">2048</int>
-																						<string key="NSContents">Type</string>
-																						<reference key="NSSupport" ref="26"/>
-																						<object class="NSColor" key="NSBackgroundColor" id="569701626">
-																							<int key="NSColorSpace">3</int>
-																							<bytes key="NSWhite">MC4zMzMzMzI5OQA</bytes>
-																						</object>
-																						<reference key="NSTextColor" ref="193167496"/>
-																					</object>
-																					<object class="NSTextFieldCell" key="NSDataCell" id="204807275">
-																						<int key="NSCellFlags">337772096</int>
-																						<int key="NSCellFlags2">-2147481600</int>
-																						<string key="NSContents">Text Cell</string>
-																						<reference key="NSSupport" ref="496012845"/>
-																						<reference key="NSControlView" ref="381571687"/>
-																						<reference key="NSBackgroundColor" ref="131586594"/>
-																						<reference key="NSTextColor" ref="83514011"/>
-																					</object>
-																					<int key="NSResizingMask">3</int>
-																					<bool key="NSIsResizeable">YES</bool>
-																					<reference key="NSTableView" ref="381571687"/>
-																				</object>
-																				<object class="NSTableColumn" id="636268497">
-																					<double key="NSWidth">296</double>
-																					<double key="NSMinWidth">40</double>
-																					<double key="NSMaxWidth">1000</double>
-																					<object class="NSTableHeaderCell" key="NSHeaderCell">
-																						<int key="NSCellFlags">75628096</int>
-																						<int key="NSCellFlags2">2048</int>
-																						<string key="NSContents">Name</string>
-																						<reference key="NSSupport" ref="26"/>
-																						<reference key="NSBackgroundColor" ref="569701626"/>
-																						<reference key="NSTextColor" ref="193167496"/>
-																					</object>
-																					<object class="NSTextFieldCell" key="NSDataCell" id="685641417">
-																						<int key="NSCellFlags">337772096</int>
-																						<int key="NSCellFlags2">2048</int>
-																						<string key="NSContents">Text Cell</string>
-																						<reference key="NSSupport" ref="496012845"/>
-																						<reference key="NSControlView" ref="381571687"/>
-																						<reference key="NSBackgroundColor" ref="131586594"/>
-																						<reference key="NSTextColor" ref="83514011"/>
-																					</object>
-																					<int key="NSResizingMask">3</int>
-																					<bool key="NSIsResizeable">YES</bool>
-																					<reference key="NSTableView" ref="381571687"/>
-																				</object>
-																			</object>
-																			<double key="NSIntercellSpacingWidth">3</double>
-																			<double key="NSIntercellSpacingHeight">2</double>
-																			<reference key="NSBackgroundColor" ref="505013229"/>
-																			<reference key="NSGridColor" ref="483818171"/>
-																			<double key="NSRowHeight">17</double>
-																			<int key="NSTvFlags">-692060160</int>
-																			<reference key="NSDelegate"/>
-																			<reference key="NSDataSource"/>
-																			<int key="NSColumnAutoresizingStyle">4</int>
-																			<int key="NSDraggingSourceMaskForLocal">15</int>
-																			<int key="NSDraggingSourceMaskForNonLocal">0</int>
-																			<bool key="NSAllowsTypeSelect">YES</bool>
-																			<int key="NSTableViewDraggingDestinationStyle">0</int>
-																		</object>
-																	</object>
-																	<string key="NSFrame">{{1, 17}, {403, 171}}</string>
-																	<reference key="NSSuperview" ref="249986093"/>
-																	<reference key="NSNextKeyView" ref="381571687"/>
-																	<reference key="NSDocView" ref="381571687"/>
-																	<reference key="NSBGColor" ref="131586594"/>
-																	<int key="NScvFlags">4</int>
-																</object>
-																<object class="NSScroller" id="702688654">
-																	<reference key="NSNextResponder" ref="249986093"/>
-																	<int key="NSvFlags">-2147483392</int>
-																	<string key="NSFrame">{{391, 17}, {11, 190}}</string>
-																	<reference key="NSSuperview" ref="249986093"/>
-																	<reference key="NSNextKeyView" ref="546786446"/>
-																	<int key="NSsFlags">256</int>
-																	<reference key="NSTarget" ref="249986093"/>
-																	<string key="NSAction">_doScroller:</string>
-																	<double key="NSCurValue">37</double>
-																	<double key="NSPercent">0.19473679999999999</double>
-																</object>
-																<object class="NSScroller" id="546786446">
-																	<reference key="NSNextResponder" ref="249986093"/>
-																	<int key="NSvFlags">-2147483392</int>
-																	<string key="NSFrame">{{1, 207}, {390, 11}}</string>
-																	<reference key="NSSuperview" ref="249986093"/>
-																	<reference key="NSNextKeyView" ref="492646848"/>
-																	<int key="NSsFlags">257</int>
-																	<reference key="NSTarget" ref="249986093"/>
-																	<string key="NSAction">_doScroller:</string>
-																	<double key="NSPercent">0.57142859999999995</double>
-																</object>
-																<object class="NSClipView" id="1023177159">
-																	<reference key="NSNextResponder" ref="249986093"/>
-																	<int key="NSvFlags">2304</int>
-																	<object class="NSMutableArray" key="NSSubviews">
-																		<bool key="EncodedWithXMLCoder">YES</bool>
-																		<reference ref="822923245"/>
-																	</object>
-																	<string key="NSFrame">{{1, 0}, {403, 17}}</string>
-																	<reference key="NSSuperview" ref="249986093"/>
-																	<reference key="NSNextKeyView" ref="822923245"/>
-																	<reference key="NSDocView" ref="822923245"/>
-																	<reference key="NSBGColor" ref="131586594"/>
-																	<int key="NScvFlags">4</int>
-																</object>
-																<reference ref="691569355"/>
-															</object>
-															<string key="NSFrame">{{19, 8}, {405, 189}}</string>
-															<reference key="NSSuperview" ref="555772475"/>
-															<reference key="NSNextKeyView" ref="691569355"/>
-															<int key="NSsFlags">562</int>
-															<reference key="NSVScroller" ref="702688654"/>
-															<reference key="NSHScroller" ref="546786446"/>
-															<reference key="NSContentView" ref="486190613"/>
-															<reference key="NSHeaderClipView" ref="1023177159"/>
-															<reference key="NSCornerView" ref="691569355"/>
-															<bytes key="NSScrollAmts">QSAAAEEgAABBmAAAQZgAAA</bytes>
-														</object>
-														<object class="NSTextField" id="924827965">
-															<reference key="NSNextResponder" ref="555772475"/>
-															<int key="NSvFlags">268</int>
-															<string key="NSFrame">{{16, 237}, {56, 14}}</string>
-															<reference key="NSSuperview" ref="555772475"/>
-															<reference key="NSNextKeyView" ref="525589992"/>
-															<bool key="NSEnabled">YES</bool>
-															<object class="NSTextFieldCell" key="NSCell" id="163383457">
-																<int key="NSCellFlags">68288064</int>
-																<int key="NSCellFlags2">272761856</int>
-																<string key="NSContents">RPaths</string>
-																<reference key="NSSupport" ref="26"/>
-																<reference key="NSControlView" ref="924827965"/>
-																<reference key="NSBackgroundColor" ref="1000931367"/>
-																<reference key="NSTextColor" ref="83514011"/>
-															</object>
-														</object>
-														<object class="NSTextField" id="85521222">
-															<reference key="NSNextResponder" ref="555772475"/>
-															<int key="NSvFlags">268</int>
-															<string key="NSFrame">{{16, 259}, {56, 14}}</string>
-															<reference key="NSSuperview" ref="555772475"/>
-															<reference key="NSNextKeyView" ref="471557668"/>
-															<bool key="NSEnabled">YES</bool>
-															<object class="NSTextFieldCell" key="NSCell" id="1051075048">
-																<int key="NSCellFlags">68288064</int>
-																<int key="NSCellFlags2">272761856</int>
-																<string key="NSContents">UUID</string>
-																<reference key="NSSupport" ref="26"/>
-																<reference key="NSControlView" ref="85521222"/>
-																<reference key="NSBackgroundColor" ref="1000931367"/>
-																<reference key="NSTextColor" ref="83514011"/>
-															</object>
-														</object>
-														<object class="NSTextField" id="128137111">
-															<reference key="NSNextResponder" ref="555772475"/>
-															<int key="NSvFlags">268</int>
-															<string key="NSFrame">{{16, 281}, {56, 14}}</string>
-															<reference key="NSSuperview" ref="555772475"/>
-															<reference key="NSNextKeyView" ref="216813176"/>
-															<bool key="NSEnabled">YES</bool>
-															<object class="NSTextFieldCell" key="NSCell" id="342940662">
-																<int key="NSCellFlags">68288064</int>
-																<int key="NSCellFlags2">272761856</int>
-																<string key="NSContents">Version</string>
-																<reference key="NSSupport" ref="26"/>
-																<reference key="NSControlView" ref="128137111"/>
-																<reference key="NSBackgroundColor" ref="1000931367"/>
-																<reference key="NSTextColor" ref="83514011"/>
-															</object>
-														</object>
-														<object class="NSTextField" id="525589992">
-															<reference key="NSNextResponder" ref="555772475"/>
-															<int key="NSvFlags">266</int>
-															<string key="NSFrame">{{99, 237}, {328, 14}}</string>
-															<reference key="NSSuperview" ref="555772475"/>
-															<reference key="NSNextKeyView" ref="442705473"/>
-															<bool key="NSEnabled">YES</bool>
-															<object class="NSTextFieldCell" key="NSCell" id="192004636">
-																<int key="NSCellFlags">68288064</int>
-																<int key="NSCellFlags2">272761856</int>
-																<string key="NSContents">Label</string>
-																<reference key="NSSupport" ref="26"/>
-																<reference key="NSControlView" ref="525589992"/>
-																<reference key="NSBackgroundColor" ref="1000931367"/>
-																<reference key="NSTextColor" ref="83514011"/>
-															</object>
-														</object>
-														<object class="NSTextField" id="471557668">
-															<reference key="NSNextResponder" ref="555772475"/>
-															<int key="NSvFlags">266</int>
-															<string key="NSFrame">{{99, 259}, {328, 14}}</string>
-															<reference key="NSSuperview" ref="555772475"/>
-															<reference key="NSNextKeyView" ref="924827965"/>
-															<bool key="NSEnabled">YES</bool>
-															<object class="NSTextFieldCell" key="NSCell" id="916820763">
-																<int key="NSCellFlags">68288064</int>
-																<int key="NSCellFlags2">272761856</int>
-																<string key="NSContents">Label</string>
-																<reference key="NSSupport" ref="26"/>
-																<reference key="NSControlView" ref="471557668"/>
-																<reference key="NSBackgroundColor" ref="1000931367"/>
-																<reference key="NSTextColor" ref="83514011"/>
-															</object>
-														</object>
-														<object class="NSTextField" id="216813176">
-															<reference key="NSNextResponder" ref="555772475"/>
-															<int key="NSvFlags">266</int>
-															<string key="NSFrame">{{99, 281}, {328, 14}}</string>
-															<reference key="NSSuperview" ref="555772475"/>
-															<reference key="NSNextKeyView" ref="85521222"/>
-															<bool key="NSEnabled">YES</bool>
-															<object class="NSTextFieldCell" key="NSCell" id="881859768">
-																<int key="NSCellFlags">68288064</int>
-																<int key="NSCellFlags2">272761856</int>
-																<string key="NSContents">Label</string>
-																<reference key="NSSupport" ref="26"/>
-																<reference key="NSControlView" ref="216813176"/>
-																<reference key="NSBackgroundColor" ref="1000931367"/>
-																<reference key="NSTextColor" ref="83514011"/>
-															</object>
-														</object>
-														<object class="NSTextField" id="193052838">
-															<reference key="NSNextResponder" ref="555772475"/>
-															<int key="NSvFlags">268</int>
-															<string key="NSFrame">{{16, 347}, {87, 14}}</string>
-															<reference key="NSSuperview" ref="555772475"/>
-															<reference key="NSNextKeyView" ref="572346780"/>
-															<bool key="NSEnabled">YES</bool>
-															<object class="NSTextFieldCell" key="NSCell" id="427638139">
-																<int key="NSCellFlags">68288064</int>
-																<int key="NSCellFlags2">272761856</int>
-																<string key="NSContents">Dynamic Linker</string>
-																<reference key="NSSupport" ref="26"/>
-																<reference key="NSControlView" ref="193052838"/>
-																<reference key="NSBackgroundColor" ref="1000931367"/>
-																<reference key="NSTextColor" ref="83514011"/>
-															</object>
-														</object>
-														<object class="NSTextField" id="572346780">
-															<reference key="NSNextResponder" ref="555772475"/>
-															<int key="NSvFlags">268</int>
-															<string key="NSFrame">{{17, 347}, {82, 14}}</string>
-															<reference key="NSSuperview" ref="555772475"/>
-															<reference key="NSNextKeyView" ref="354532091"/>
-															<bool key="NSEnabled">YES</bool>
-															<object class="NSTextFieldCell" key="NSCell" id="217076080">
-																<int key="NSCellFlags">68288064</int>
-																<int key="NSCellFlags2">272761856</int>
-																<string key="NSContents">ID</string>
-																<reference key="NSSupport" ref="26"/>
-																<reference key="NSControlView" ref="572346780"/>
-																<reference key="NSBackgroundColor" ref="1000931367"/>
-																<reference key="NSTextColor" ref="83514011"/>
-															</object>
-														</object>
-														<object class="NSTextField" id="1056341274">
-															<reference key="NSNextResponder" ref="555772475"/>
-															<int key="NSvFlags">266</int>
-															<string key="NSFrame">{{99, 347}, {328, 14}}</string>
-															<reference key="NSSuperview" ref="555772475"/>
-															<reference key="NSNextKeyView" ref="880416516"/>
-															<bool key="NSEnabled">YES</bool>
-															<object class="NSTextFieldCell" key="NSCell" id="351106799">
-																<int key="NSCellFlags">68288064</int>
-																<int key="NSCellFlags2">272761856</int>
-																<string key="NSContents">Label</string>
-																<reference key="NSSupport" ref="26"/>
-																<reference key="NSControlView" ref="1056341274"/>
-																<reference key="NSBackgroundColor" ref="1000931367"/>
-																<reference key="NSTextColor" ref="83514011"/>
-															</object>
-														</object>
-														<object class="NSTextField" id="354532091">
-															<reference key="NSNextResponder" ref="555772475"/>
-															<int key="NSvFlags">266</int>
-															<string key="NSFrame">{{99, 347}, {328, 14}}</string>
-															<reference key="NSSuperview" ref="555772475"/>
-															<reference key="NSNextKeyView" ref="1056341274"/>
-															<bool key="NSEnabled">YES</bool>
-															<object class="NSTextFieldCell" key="NSCell" id="1016675935">
-																<int key="NSCellFlags">68288064</int>
-																<int key="NSCellFlags2">272761856</int>
-																<string key="NSContents">Label</string>
-																<reference key="NSSupport" ref="26"/>
-																<reference key="NSControlView" ref="354532091"/>
-																<reference key="NSBackgroundColor" ref="1000931367"/>
-																<reference key="NSTextColor" ref="83514011"/>
-															</object>
-														</object>
-														<object class="NSTextField" id="993238193">
-															<reference key="NSNextResponder" ref="555772475"/>
-															<int key="NSvFlags">268</int>
-															<string key="NSFrame">{{17, 391}, {83, 14}}</string>
-															<reference key="NSSuperview" ref="555772475"/>
-															<reference key="NSNextKeyView" ref="75068185"/>
-															<bool key="NSEnabled">YES</bool>
-															<object class="NSTextFieldCell" key="NSCell" id="514752317">
-																<int key="NSCellFlags">68288064</int>
-																<int key="NSCellFlags2">272761856</int>
-																<string key="NSContents">Last Modified</string>
-																<reference key="NSSupport" ref="26"/>
-																<reference key="NSControlView" ref="993238193"/>
-																<reference key="NSBackgroundColor" ref="1000931367"/>
-																<reference key="NSTextColor" ref="83514011"/>
-															</object>
-														</object>
-														<object class="NSTextField" id="75068185">
-															<reference key="NSNextResponder" ref="555772475"/>
-															<int key="NSvFlags">268</int>
-															<string key="NSFrame">{{99, 391}, {326, 14}}</string>
-															<reference key="NSSuperview" ref="555772475"/>
-															<reference key="NSNextKeyView" ref="468417045"/>
-															<bool key="NSEnabled">YES</bool>
-															<object class="NSTextFieldCell" key="NSCell" id="977880734">
-																<int key="NSCellFlags">68288064</int>
-																<int key="NSCellFlags2">-1874721792</int>
-																<string key="NSContents">Label</string>
-																<reference key="NSSupport" ref="26"/>
-																<object class="NSDateFormatter" key="NSFormatter" id="137468763">
-																	<object class="NSMutableDictionary" key="NS.attributes">
-																		<bool key="EncodedWithXMLCoder">YES</bool>
-																		<object class="NSArray" key="dict.sortedKeys">
-																			<bool key="EncodedWithXMLCoder">YES</bool>
-																			<string>dateFormat_10_0</string>
-																			<string>dateStyle</string>
-																			<string>formatterBehavior</string>
-																			<string>timeStyle</string>
-																		</object>
-																		<object class="NSMutableArray" key="dict.values">
-																			<bool key="EncodedWithXMLCoder">YES</bool>
-																			<string>%m/%d/%y</string>
-																			<integer value="2"/>
-																			<integer value="1040"/>
-																			<integer value="2"/>
-																		</object>
-																	</object>
-																	<string key="NS.format">dd.MM.yyyy HH:mm:ss</string>
-																	<bool key="NS.natural">NO</bool>
-																</object>
-																<reference key="NSControlView" ref="75068185"/>
-																<reference key="NSBackgroundColor" ref="1000931367"/>
-																<reference key="NSTextColor" ref="83514011"/>
-															</object>
-														</object>
-														<object class="NSButton" id="442705473">
-															<reference key="NSNextResponder" ref="555772475"/>
-															<int key="NSvFlags">268</int>
-															<string key="NSFrame">{{19, 203}, {108, 17}}</string>
-															<reference key="NSSuperview" ref="555772475"/>
-															<reference key="NSNextKeyView" ref="293024117"/>
-															<bool key="NSEnabled">YES</bool>
-															<object class="NSButtonCell" key="NSCell" id="959090593">
-																<int key="NSCellFlags">-2080244224</int>
-																<int key="NSCellFlags2">134348800</int>
-																<string key="NSContents">Demangle Names</string>
-																<reference key="NSSupport" ref="26"/>
-																<reference key="NSControlView" ref="442705473"/>
-																<int key="NSButtonFlags">914637055</int>
-																<int key="NSButtonFlags2">164</int>
-																<string key="NSAlternateContents"/>
-																<string key="NSKeyEquivalent"/>
-																<int key="NSPeriodicDelay">400</int>
-																<int key="NSPeriodicInterval">75</int>
-															</object>
-														</object>
-														<object class="NSSearchField" id="635628551">
-															<reference key="NSNextResponder" ref="555772475"/>
-															<int key="NSvFlags">266</int>
-															<string key="NSFrame">{{283, 203}, {141, 19}}</string>
-															<reference key="NSSuperview" ref="555772475"/>
-															<reference key="NSNextKeyView" ref="249986093"/>
-															<bool key="NSEnabled">YES</bool>
-															<object class="NSSearchFieldCell" key="NSCell" id="1029989959">
-																<int key="NSCellFlags">343014976</int>
-																<int key="NSCellFlags2">268567552</int>
-																<string key="NSContents"/>
-																<reference key="NSSupport" ref="26"/>
-																<reference key="NSControlView" ref="635628551"/>
-																<bool key="NSDrawsBackground">YES</bool>
-																<int key="NSTextBezelStyle">1</int>
-																<object class="NSColor" key="NSBackgroundColor" id="464014257">
-																	<int key="NSColorSpace">6</int>
-																	<string key="NSCatalogName">System</string>
-																	<string key="NSColorName">textBackgroundColor</string>
-																	<reference key="NSColor" ref="505013229"/>
-																</object>
-																<reference key="NSTextColor" ref="83514011"/>
-																<object class="NSButtonCell" key="NSSearchButtonCell">
-																	<int key="NSCellFlags">-2147353088</int>
-																	<int key="NSCellFlags2">0</int>
-																	<string key="NSContents">search</string>
-																	<reference key="NSControlView" ref="635628551"/>
-																	<string key="NSAction">_searchFieldSearch:</string>
-																	<reference key="NSTarget" ref="1029989959"/>
-																	<int key="NSButtonFlags">138690815</int>
-																	<int key="NSButtonFlags2">0</int>
-																	<string key="NSKeyEquivalent"/>
-																	<int key="NSPeriodicDelay">400</int>
-																	<int key="NSPeriodicInterval">75</int>
-																</object>
-																<object class="NSButtonCell" key="NSCancelButtonCell">
-																	<int key="NSCellFlags">130560</int>
-																	<int key="NSCellFlags2">0</int>
-																	<string key="NSContents">clear</string>
-																	<object class="NSMutableArray" key="NSAccessibilityOverriddenAttributes">
-																		<bool key="EncodedWithXMLCoder">YES</bool>
-																		<object class="NSMutableDictionary">
-																			<bool key="EncodedWithXMLCoder">YES</bool>
-																			<object class="NSArray" key="dict.sortedKeys">
-																				<bool key="EncodedWithXMLCoder">YES</bool>
-																				<string>AXDescription</string>
-																				<string>NSAccessibilityEncodedAttributesValueType</string>
-																			</object>
-																			<object class="NSMutableArray" key="dict.values">
-																				<bool key="EncodedWithXMLCoder">YES</bool>
-																				<string>cancel</string>
-																				<integer value="1"/>
-																			</object>
-																		</object>
-																	</object>
-																	<reference key="NSControlView" ref="635628551"/>
-																	<string key="NSAction">_searchFieldCancel:</string>
-																	<reference key="NSTarget" ref="1029989959"/>
-																	<int key="NSButtonFlags">138690815</int>
-																	<int key="NSButtonFlags2">0</int>
-																	<string key="NSKeyEquivalent"/>
-																	<int key="NSPeriodicDelay">400</int>
-																	<int key="NSPeriodicInterval">75</int>
-																</object>
-																<int key="NSMaximumRecents">255</int>
-															</object>
-														</object>
-														<object class="NSPopUpButton" id="984087406">
-															<reference key="NSNextResponder" ref="555772475"/>
-															<int key="NSvFlags">268</int>
-															<string key="NSFrame">{{99, 365}, {174, 22}}</string>
-															<reference key="NSSuperview" ref="555772475"/>
-															<reference key="NSNextKeyView" ref="193052838"/>
-															<bool key="NSEnabled">YES</bool>
-															<object class="NSPopUpButtonCell" key="NSCell" id="688711585">
-																<int key="NSCellFlags">-2076049856</int>
-																<int key="NSCellFlags2">133120</int>
-																<reference key="NSSupport" ref="26"/>
-																<reference key="NSControlView" ref="984087406"/>
-																<int key="NSButtonFlags">109199615</int>
-																<int key="NSButtonFlags2">129</int>
-																<string key="NSAlternateContents"/>
-																<string key="NSKeyEquivalent"/>
-																<int key="NSPeriodicDelay">400</int>
-																<int key="NSPeriodicInterval">75</int>
-																<object class="NSMenuItem" key="NSMenuItem" id="461234873">
-																	<reference key="NSMenu" ref="845219202"/>
-																	<string key="NSTitle">Item 1</string>
-																	<string key="NSKeyEquiv"/>
-																	<int key="NSKeyEquivModMask">1048576</int>
-																	<int key="NSMnemonicLoc">2147483647</int>
-																	<int key="NSState">1</int>
-																	<reference key="NSOnImage" ref="716097094"/>
-																	<reference key="NSMixedImage" ref="797874583"/>
-																	<string key="NSAction">_popUpItemAction:</string>
-																	<reference key="NSTarget" ref="688711585"/>
-																</object>
-																<bool key="NSMenuItemRespectAlignment">YES</bool>
-																<object class="NSMenu" key="NSMenu" id="845219202">
-																	<string key="NSTitle">OtherViews</string>
-																	<object class="NSMutableArray" key="NSMenuItems">
-																		<bool key="EncodedWithXMLCoder">YES</bool>
-																		<reference ref="461234873"/>
-																		<object class="NSMenuItem" id="326564045">
-																			<reference key="NSMenu" ref="845219202"/>
-																			<string key="NSTitle">Item 2</string>
-																			<string key="NSKeyEquiv"/>
-																			<int key="NSKeyEquivModMask">1048576</int>
-																			<int key="NSMnemonicLoc">2147483647</int>
-																			<reference key="NSOnImage" ref="716097094"/>
-																			<reference key="NSMixedImage" ref="797874583"/>
-																			<string key="NSAction">_popUpItemAction:</string>
-																			<reference key="NSTarget" ref="688711585"/>
-																		</object>
-																		<object class="NSMenuItem" id="919642695">
-																			<reference key="NSMenu" ref="845219202"/>
-																			<string key="NSTitle">Item 3</string>
-																			<string key="NSKeyEquiv"/>
-																			<int key="NSKeyEquivModMask">1048576</int>
-																			<int key="NSMnemonicLoc">2147483647</int>
-																			<reference key="NSOnImage" ref="716097094"/>
-																			<reference key="NSMixedImage" ref="797874583"/>
-																			<string key="NSAction">_popUpItemAction:</string>
-																			<reference key="NSTarget" ref="688711585"/>
-																		</object>
-																	</object>
-																</object>
-																<int key="NSPreferredEdge">1</int>
-																<bool key="NSUsesItemFromMenu">YES</bool>
-																<bool key="NSAltersState">YES</bool>
-																<int key="NSArrowPosition">2</int>
-															</object>
-														</object>
-													</object>
-													<string key="NSFrameSize">{444, 447}</string>
-													<reference key="NSSuperview" ref="121913769"/>
-													<reference key="NSNextKeyView" ref="913859628"/>
-													<string key="NSClassName">NSView</string>
-												</object>
-												<object class="NSCustomView" id="492646848">
-													<reference key="NSNextResponder" ref="121913769"/>
-													<int key="NSvFlags">274</int>
-													<object class="NSMutableArray" key="NSSubviews">
-														<bool key="EncodedWithXMLCoder">YES</bool>
-														<object class="NSBox" id="563730626">
-															<reference key="NSNextResponder" ref="492646848"/>
-															<int key="NSvFlags">18</int>
-															<object class="NSMutableArray" key="NSSubviews">
-																<bool key="EncodedWithXMLCoder">YES</bool>
-																<object class="NSView" id="686421275">
-																	<reference key="NSNextResponder" ref="563730626"/>
-																	<int key="NSvFlags">256</int>
-																	<object class="NSMutableArray" key="NSSubviews">
-																		<bool key="EncodedWithXMLCoder">YES</bool>
-																		<object class="NSView" id="906745934">
-																			<reference key="NSNextResponder" ref="686421275"/>
-																			<int key="NSvFlags">274</int>
-																			<object class="NSMutableArray" key="NSSubviews">
-																				<bool key="EncodedWithXMLCoder">YES</bool>
-																				<object class="NSScrollView" id="728598117">
-																					<reference key="NSNextResponder" ref="906745934"/>
-																					<int key="NSvFlags">274</int>
-																					<object class="NSMutableArray" key="NSSubviews">
-																						<bool key="EncodedWithXMLCoder">YES</bool>
-																						<object class="NSClipView" id="795904284">
-																							<reference key="NSNextResponder" ref="728598117"/>
-																							<int key="NSvFlags">2304</int>
-																							<object class="NSMutableArray" key="NSSubviews">
-																								<bool key="EncodedWithXMLCoder">YES</bool>
-																								<object class="NSTextView" id="197066997">
-																									<reference key="NSNextResponder" ref="795904284"/>
-																									<int key="NSvFlags">2322</int>
-																									<string key="NSFrameSize">{379, 108}</string>
-																									<reference key="NSSuperview" ref="795904284"/>
-																									<reference key="NSNextKeyView" ref="634124974"/>
-																									<object class="NSTextContainer" key="NSTextContainer" id="137364179">
-																										<object class="NSLayoutManager" key="NSLayoutManager">
-																											<object class="NSTextStorage" key="NSTextStorage">
-																												<object class="NSMutableString" key="NSString">
-																													<characters key="NS.bytes">Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda</characters>
-																												</object>
-																												<object class="NSMutableArray" key="NSAttributes">
-																													<bool key="EncodedWithXMLCoder">YES</bool>
-																													<object class="NSDictionary">
-																														<bool key="EncodedWithXMLCoder">YES</bool>
-																														<object class="NSArray" key="dict.sortedKeys">
-																															<bool key="EncodedWithXMLCoder">YES</bool>
-																															<string>NSFont</string>
-																															<string>NSParagraphStyle</string>
-																														</object>
-																														<object class="NSMutableArray" key="dict.values">
-																															<bool key="EncodedWithXMLCoder">YES</bool>
-																															<object class="NSFont">
-																																<string key="NSName">LucidaGrande</string>
-																																<double key="NSSize">10</double>
-																																<int key="NSfFlags">2843</int>
-																															</object>
-																															<object class="NSParagraphStyle">
-																																<int key="NSAlignment">3</int>
-																																<object class="NSArray" key="NSTabStops">
-																																	<bool key="EncodedWithXMLCoder">YES</bool>
-																																	<object class="NSTextTab" id="974998070">
-																																		<double key="NSLocation">0.0</double>
-																																	</object>
-																																	<object class="NSTextTab" id="133336062">
-																																		<double key="NSLocation">56</double>
-																																	</object>
-																																	<object class="NSTextTab" id="793016775">
-																																		<double key="NSLocation">112</double>
-																																	</object>
-																																	<object class="NSTextTab" id="781005552">
-																																		<double key="NSLocation">168</double>
-																																	</object>
-																																	<object class="NSTextTab" id="303825739">
-																																		<double key="NSLocation">224</double>
-																																	</object>
-																																	<object class="NSTextTab" id="321258436">
-																																		<double key="NSLocation">280</double>
-																																	</object>
-																																	<object class="NSTextTab" id="303341548">
-																																		<double key="NSLocation">336</double>
-																																	</object>
-																																	<object class="NSTextTab" id="866998590">
-																																		<double key="NSLocation">392</double>
-																																	</object>
-																																	<object class="NSTextTab" id="355757292">
-																																		<double key="NSLocation">448</double>
-																																	</object>
-																																	<object class="NSTextTab" id="33984874">
-																																		<double key="NSLocation">504</double>
-																																	</object>
-																																	<object class="NSTextTab" id="821660655">
-																																		<double key="NSLocation">560</double>
-																																	</object>
-																																	<object class="NSTextTab" id="224111294">
-																																		<double key="NSLocation">616</double>
-																																	</object>
-																																	<object class="NSTextTab" id="381503305">
-																																		<double key="NSLocation">672</double>
-																																	</object>
-																																	<object class="NSTextTab" id="1046843110">
-																																		<double key="NSLocation">728</double>
-																																	</object>
-																																	<object class="NSTextTab" id="609330402">
-																																		<double key="NSLocation">784</double>
-																																	</object>
-																																	<object class="NSTextTab" id="115442141">
-																																		<double key="NSLocation">840</double>
-																																	</object>
-																																	<object class="NSTextTab" id="590378848">
-																																		<double key="NSLocation">896</double>
-																																	</object>
-																																	<object class="NSTextTab" id="1009007391">
-																																		<double key="NSLocation">952</double>
-																																	</object>
-																																	<object class="NSTextTab" id="213337894">
-																																		<double key="NSLocation">1008</double>
-																																	</object>
-																																	<object class="NSTextTab" id="557769119">
-																																		<double key="NSLocation">1064</double>
-																																	</object>
-																																	<object class="NSTextTab" id="297934200">
-																																		<double key="NSLocation">1120</double>
-																																	</object>
-																																	<object class="NSTextTab" id="886059088">
-																																		<double key="NSLocation">1176</double>
-																																	</object>
-																																	<object class="NSTextTab" id="1033672787">
-																																		<double key="NSLocation">1232</double>
-																																	</object>
-																																	<object class="NSTextTab" id="558698189">
-																																		<double key="NSLocation">1288</double>
-																																	</object>
-																																	<object class="NSTextTab" id="916739533">
-																																		<double key="NSLocation">1344</double>
-																																	</object>
-																																	<object class="NSTextTab" id="469464632">
-																																		<double key="NSLocation">1400</double>
-																																	</object>
-																																	<object class="NSTextTab" id="111650831">
-																																		<double key="NSLocation">1456</double>
-																																	</object>
-																																	<object class="NSTextTab" id="283147612">
-																																		<double key="NSLocation">1512</double>
-																																	</object>
-																																	<object class="NSTextTab" id="491963932">
-																																		<double key="NSLocation">1568</double>
-																																	</object>
-																																	<object class="NSTextTab" id="64171203">
-																																		<double key="NSLocation">1624</double>
-																																	</object>
-																																	<object class="NSTextTab" id="450175245">
-																																		<double key="NSLocation">1680</double>
-																																	</object>
-																																	<object class="NSTextTab" id="393220177">
-																																		<double key="NSLocation">1736</double>
-																																	</object>
-																																</object>
-																															</object>
-																														</object>
-																													</object>
-																													<object class="NSDictionary">
-																														<bool key="EncodedWithXMLCoder">YES</bool>
-																														<object class="NSArray" key="dict.sortedKeys">
-																															<bool key="EncodedWithXMLCoder">YES</bool>
-																															<string>NSFont</string>
-																															<string>NSParagraphStyle</string>
-																														</object>
-																														<object class="NSMutableArray" key="dict.values">
-																															<bool key="EncodedWithXMLCoder">YES</bool>
-																															<object class="NSFont">
-																																<string key="NSName">LucidaGrande-Bold</string>
-																																<double key="NSSize">10</double>
-																																<int key="NSfFlags">16</int>
-																															</object>
-																															<object class="NSParagraphStyle">
-																																<int key="NSAlignment">3</int>
-																																<object class="NSArray" key="NSTabStops">
-																																	<bool key="EncodedWithXMLCoder">YES</bool>
-																																	<reference ref="974998070"/>
-																																	<reference ref="133336062"/>
-																																	<reference ref="793016775"/>
-																																	<reference ref="781005552"/>
-																																	<reference ref="303825739"/>
-																																	<reference ref="321258436"/>
-																																	<reference ref="303341548"/>
-																																	<reference ref="866998590"/>
-																																	<reference ref="355757292"/>
-																																	<reference ref="33984874"/>
-																																	<reference ref="821660655"/>
-																																	<reference ref="224111294"/>
-																																	<reference ref="381503305"/>
-																																	<reference ref="1046843110"/>
-																																	<reference ref="609330402"/>
-																																	<reference ref="115442141"/>
-																																	<reference ref="590378848"/>
-																																	<reference ref="1009007391"/>
-																																	<reference ref="213337894"/>
-																																	<reference ref="557769119"/>
-																																	<reference ref="297934200"/>
-																																	<reference ref="886059088"/>
-																																	<reference ref="1033672787"/>
-																																	<reference ref="558698189"/>
-																																	<reference ref="916739533"/>
-																																	<reference ref="469464632"/>
-																																	<reference ref="111650831"/>
-																																	<reference ref="283147612"/>
-																																	<reference ref="491963932"/>
-																																	<reference ref="64171203"/>
-																																	<reference ref="450175245"/>
-																																	<reference ref="393220177"/>
-																																</object>
-																															</object>
-																														</object>
-																													</object>
-																												</object>
-																												<object class="NSMutableData" key="NSAttributeInfo">
-																													<bytes key="NS.bytes">GQAEAQgADAEiAAcBhAQAA</bytes>
-																												</object>
-																												<nil key="NSDelegate"/>
-																											</object>
-																											<object class="NSMutableArray" key="NSTextContainers">
-																												<bool key="EncodedWithXMLCoder">YES</bool>
-																												<reference ref="137364179"/>
-																											</object>
-																											<int key="NSLMFlags">6</int>
-																											<nil key="NSDelegate"/>
-																										</object>
-																										<reference key="NSTextView" ref="197066997"/>
-																										<double key="NSWidth">379</double>
-																										<int key="NSTCFlags">1</int>
-																									</object>
-																									<object class="NSTextViewSharedData" key="NSSharedData">
-																										<int key="NSFlags">2309</int>
-																										<int key="NSTextCheckingTypes">0</int>
-																										<nil key="NSMarkedAttributes"/>
-																										<reference key="NSBackgroundColor" ref="505013229"/>
-																										<object class="NSDictionary" key="NSSelectedAttributes">
-																											<bool key="EncodedWithXMLCoder">YES</bool>
-																											<object class="NSArray" key="dict.sortedKeys">
-																												<bool key="EncodedWithXMLCoder">YES</bool>
-																												<string>NSBackgroundColor</string>
-																												<string>NSColor</string>
-																											</object>
-																											<object class="NSMutableArray" key="dict.values">
-																												<bool key="EncodedWithXMLCoder">YES</bool>
-																												<object class="NSColor">
-																													<int key="NSColorSpace">6</int>
-																													<string key="NSCatalogName">System</string>
-																													<string key="NSColorName">selectedTextBackgroundColor</string>
-																													<reference key="NSColor" ref="230683939"/>
-																												</object>
-																												<object class="NSColor">
-																													<int key="NSColorSpace">6</int>
-																													<string key="NSCatalogName">System</string>
-																													<string key="NSColorName">selectedTextColor</string>
-																													<reference key="NSColor" ref="790077763"/>
-																												</object>
-																											</object>
-																										</object>
-																										<reference key="NSInsertionColor" ref="790077763"/>
-																										<object class="NSDictionary" key="NSLinkAttributes">
-																											<bool key="EncodedWithXMLCoder">YES</bool>
-																											<object class="NSArray" key="dict.sortedKeys">
-																												<bool key="EncodedWithXMLCoder">YES</bool>
-																												<string>NSColor</string>
-																												<string>NSUnderline</string>
-																											</object>
-																											<object class="NSMutableArray" key="dict.values">
-																												<bool key="EncodedWithXMLCoder">YES</bool>
-																												<object class="NSColor">
-																													<int key="NSColorSpace">1</int>
-																													<bytes key="NSRGB">MCAwIDEAA</bytes>
-																												</object>
-																												<integer value="1"/>
-																											</object>
-																										</object>
-																										<nil key="NSDefaultParagraphStyle"/>
-																									</object>
-																									<int key="NSTVFlags">6</int>
-																									<string key="NSMaxSize">{760, 1e+07}</string>
-																									<string key="NSMinize">{223, 0}</string>
-																									<nil key="NSDelegate"/>
-																								</object>
-																							</object>
-																							<string key="NSFrame">{{1, 1}, {379, 175}}</string>
-																							<reference key="NSSuperview" ref="728598117"/>
-																							<reference key="NSNextKeyView" ref="197066997"/>
-																							<reference key="NSDocView" ref="197066997"/>
-																							<reference key="NSBGColor" ref="505013229"/>
-																							<object class="NSCursor" key="NSCursor">
-																								<string key="NSHotSpot">{4, -5}</string>
-																								<int key="NSCursorType">1</int>
-																							</object>
-																							<int key="NScvFlags">4</int>
-																						</object>
-																						<object class="NSScroller" id="634124974">
-																							<reference key="NSNextResponder" ref="728598117"/>
-																							<int key="NSvFlags">-2147483392</int>
-																							<string key="NSFrame">{{346, 1}, {15, 163}}</string>
-																							<reference key="NSSuperview" ref="728598117"/>
-																							<reference key="NSNextKeyView" ref="650097667"/>
-																							<reference key="NSTarget" ref="728598117"/>
-																							<string key="NSAction">_doScroller:</string>
-																							<double key="NSPercent">0.9506173</double>
-																						</object>
-																						<object class="NSScroller" id="883967482">
-																							<reference key="NSNextResponder" ref="728598117"/>
-																							<int key="NSvFlags">-2147483392</int>
-																							<string key="NSFrame">{{-100, -100}, {345, 15}}</string>
-																							<reference key="NSSuperview" ref="728598117"/>
-																							<reference key="NSNextKeyView" ref="795904284"/>
-																							<int key="NSsFlags">1</int>
-																							<reference key="NSTarget" ref="728598117"/>
-																							<string key="NSAction">_doScroller:</string>
-																							<double key="NSCurValue">1</double>
-																							<double key="NSPercent">0.94565220000000005</double>
-																						</object>
-																					</object>
-																					<string key="NSFrame">{{17, 10}, {381, 177}}</string>
-																					<reference key="NSSuperview" ref="906745934"/>
-																					<reference key="NSNextKeyView" ref="883967482"/>
-																					<int key="NSsFlags">530</int>
-																					<reference key="NSVScroller" ref="634124974"/>
-																					<reference key="NSHScroller" ref="883967482"/>
-																					<reference key="NSContentView" ref="795904284"/>
-																				</object>
-																			</object>
-																			<string key="NSFrame">{{-3, 2}, {406, 193}}</string>
-																			<reference key="NSSuperview" ref="686421275"/>
-																			<reference key="NSNextKeyView" ref="728598117"/>
-																		</object>
-																	</object>
-																	<string key="NSFrame">{{1, 1}, {408, 194}}</string>
-																	<reference key="NSSuperview" ref="563730626"/>
-																	<reference key="NSNextKeyView" ref="906745934"/>
-																</object>
-															</object>
-															<string key="NSFrame">{{12, 8}, {410, 210}}</string>
-															<reference key="NSSuperview" ref="492646848"/>
-															<reference key="NSNextKeyView" ref="686421275"/>
-															<string key="NSOffsets">{0, 0}</string>
-															<object class="NSTextFieldCell" key="NSTitleCell">
-																<int key="NSCellFlags">67239424</int>
-																<int key="NSCellFlags2">0</int>
-																<string key="NSContents">Warnings &amp; Errors</string>
-																<reference key="NSSupport" ref="26"/>
-																<reference key="NSBackgroundColor" ref="464014257"/>
-																<object class="NSColor" key="NSTextColor">
-																	<int key="NSColorSpace">3</int>
-																	<bytes key="NSWhite">MCAwLjgwMDAwMDAxMTkAA</bytes>
-																</object>
-															</object>
-															<reference key="NSContentView" ref="686421275"/>
-															<int key="NSBorderType">1</int>
-															<int key="NSBoxType">0</int>
-															<int key="NSTitlePosition">2</int>
-															<bool key="NSTransparent">NO</bool>
-														</object>
-													</object>
-													<string key="NSFrame">{{0, 456}, {444, 218}}</string>
-													<reference key="NSSuperview" ref="121913769"/>
-													<reference key="NSNextKeyView" ref="563730626"/>
-													<string key="NSClassName">NSView</string>
-												</object>
-											</object>
-											<string key="NSFrameSize">{444, 674}</string>
-											<reference key="NSSuperview" ref="945751664"/>
-											<reference key="NSNextKeyView" ref="555772475"/>
-										</object>
-									</object>
-									<string key="NSFrame">{{498, 0}, {444, 674}}</string>
-									<reference key="NSSuperview" ref="480030409"/>
-									<reference key="NSNextKeyView" ref="121913769"/>
-									<string key="NSClassName">NSView</string>
-								</object>
-							</object>
-							<string key="NSFrame">{{-2, 24}, {942, 674}}</string>
-							<reference key="NSSuperview" ref="568628114"/>
-							<reference key="NSNextKeyView" ref="168893345"/>
-							<bool key="NSIsVertical">YES</bool>
-							<int key="NSDividerStyle">2</int>
-						</object>
-						<object class="NSTextField" id="650097667">
-							<reference key="NSNextResponder" ref="568628114"/>
-							<int key="NSvFlags">290</int>
-							<string key="NSFrame">{{-3, 5}, {944, 14}}</string>
-							<reference key="NSSuperview" ref="568628114"/>
-							<reference key="NSNextKeyView"/>
-							<bool key="NSEnabled">YES</bool>
-							<object class="NSTextFieldCell" key="NSCell" id="1054042850">
-								<int key="NSCellFlags">67239424</int>
-								<int key="NSCellFlags2">138543104</int>
-								<string key="NSContents">n Dependencies</string>
-								<reference key="NSSupport" ref="26"/>
-								<reference key="NSControlView" ref="650097667"/>
-								<reference key="NSBackgroundColor" ref="1000931367"/>
-								<reference key="NSTextColor" ref="83514011"/>
-							</object>
-						</object>
-					</object>
-					<string key="NSFrame">{{7, 11}, {938, 698}}</string>
-					<reference key="NSSuperview"/>
-					<reference key="NSNextKeyView" ref="480030409"/>
-				</object>
-				<string key="NSScreenRect">{{0, 0}, {1920, 1178}}</string>
-				<string key="NSMinSize">{94, 157}</string>
-				<string key="NSMaxSize">{1e+13, 1e+13}</string>
-			</object>
-			<object class="NSCustomObject" id="796877042">
-				<string key="NSClassName">NSApplication</string>
-			</object>
-			<object class="NSTreeController" id="227604121">
-				<object class="NSMutableArray" key="NSDeclaredKeys">
-					<bool key="EncodedWithXMLCoder">YES</bool>
-					<string>currentVersion</string>
-					<string>name</string>
-					<string>compatibleVersion</string>
-					<string>children</string>
-					<string>symbols</string>
-					<string>filename</string>
-					<string>type</string>
-					<string>version</string>
-					<string>size</string>
-					<string>installID</string>
-					<string>installName</string>
-					<string>lastModificationTime</string>
-					<string>architectures</string>
-					<string>idName</string>
-					<string>symbolFilter</string>
-					<string>fileType</string>
-					<string>dependencyType</string>
-					<string>textColor</string>
-				</object>
-				<string key="NSObjectClassName">MachOModel</string>
-				<object class="_NSManagedProxy" key="_NSManagedProxy"/>
-				<bool key="NSAvoidsEmptySelection">YES</bool>
-				<bool key="NSPreservesSelection">YES</bool>
-				<bool key="NSSelectsInsertedObjects">YES</bool>
-				<string key="NSTreeContentChildrenKey">children</string>
-				<string key="NSTreeContentLeafKey">isLeaf</string>
-			</object>
-			<object class="NSCustomObject" id="521446972">
-				<string key="NSClassName">VersionFormatter</string>
-			</object>
-			<object class="NSCustomObject" id="1020601628">
-				<string key="NSClassName">SymbolTableEntryTypeFormatter</string>
-			</object>
-			<object class="NSArrayController" id="604010272">
-				<object class="NSMutableArray" key="NSDeclaredKeys">
-					<bool key="EncodedWithXMLCoder">YES</bool>
-					<string>type</string>
-					<string>name</string>
-					<string>symb</string>
-					<string>symbolFilter</string>
-					<string>showIdentifier</string>
-				</object>
-				<string key="NSObjectClassName">SymbolTableEntryModel</string>
-				<object class="_NSManagedProxy" key="_NSManagedProxy"/>
-				<bool key="NSAvoidsEmptySelection">YES</bool>
-				<bool key="NSPreservesSelection">YES</bool>
-				<bool key="NSSelectsInsertedObjects">YES</bool>
-				<bool key="NSFilterRestrictsInsertion">YES</bool>
-				<bool key="NSClearsFilterPredicateOnInsertion">YES</bool>
-			</object>
-			<object class="NSArrayController" id="880618101">
-				<object class="NSMutableArray" key="NSDeclaredKeys">
-					<bool key="EncodedWithXMLCoder">YES</bool>
-					<string>label</string>
-					<string>uuid</string>
-					<string>identifier</string>
-					<string>r</string>
-					<string>rPath</string>
-					<string>showIdentifier</string>
-					<string>rpath</string>
-					<string>dynamicLinker</string>
-				</object>
-				<string key="NSObjectClassName">ArchitectureModel</string>
-				<object class="_NSManagedProxy" key="_NSManagedProxy"/>
-				<bool key="NSAvoidsEmptySelection">YES</bool>
-				<bool key="NSPreservesSelection">YES</bool>
-				<bool key="NSSelectsInsertedObjects">YES</bool>
-				<bool key="NSFilterRestrictsInsertion">YES</bool>
-				<bool key="NSClearsFilterPredicateOnInsertion">YES</bool>
-			</object>
-			<object class="NSArrayController" id="657463956">
-				<object class="NSMutableArray" key="NSDeclaredKeys">
-					<bool key="EncodedWithXMLCoder">YES</bool>
-					<string>label</string>
-					<string>rootModel</string>
-				</object>
-				<string key="NSObjectClassName">ArchitectureModel</string>
-				<object class="_NSManagedProxy" key="_NSManagedProxy"/>
-				<bool key="NSAvoidsEmptySelection">YES</bool>
-				<bool key="NSPreservesSelection">YES</bool>
-				<bool key="NSSelectsInsertedObjects">YES</bool>
-				<bool key="NSFilterRestrictsInsertion">YES</bool>
-				<bool key="NSClearsFilterPredicateOnInsertion">YES</bool>
-			</object>
-		</object>
-		<object class="IBObjectContainer" key="IBDocument.Objects">
-			<object class="NSMutableArray" key="connectionRecords">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-				<object class="IBConnectionRecord">
-					<object class="IBOutletConnection" key="connection">
-						<string key="label">delegate</string>
-						<reference key="source" ref="275939982"/>
-						<reference key="destination" ref="512844837"/>
-					</object>
-					<int key="connectionID">17</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBOutletConnection" key="connection">
-						<string key="label">window</string>
-						<reference key="source" ref="512844837"/>
-						<reference key="destination" ref="275939982"/>
-					</object>
-					<int key="connectionID">18</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">value: arrangedObjects.currentVersion</string>
-						<reference key="source" ref="734332375"/>
-						<reference key="destination" ref="227604121"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="734332375"/>
-							<reference key="NSDestination" ref="227604121"/>
-							<string key="NSLabel">value: arrangedObjects.currentVersion</string>
-							<string key="NSBinding">value</string>
-							<string key="NSKeyPath">arrangedObjects.currentVersion</string>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100094</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">value: arrangedObjects.name</string>
-						<reference key="source" ref="28815098"/>
-						<reference key="destination" ref="227604121"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="28815098"/>
-							<reference key="NSDestination" ref="227604121"/>
-							<string key="NSLabel">value: arrangedObjects.name</string>
-							<string key="NSBinding">value</string>
-							<string key="NSKeyPath">arrangedObjects.name</string>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100096</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">value: arrangedObjects.compatibleVersion</string>
-						<reference key="source" ref="584193008"/>
-						<reference key="destination" ref="227604121"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="584193008"/>
-							<reference key="NSDestination" ref="227604121"/>
-							<string key="NSLabel">value: arrangedObjects.compatibleVersion</string>
-							<string key="NSBinding">value</string>
-							<string key="NSKeyPath">arrangedObjects.compatibleVersion</string>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100098</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">value: selection.filename</string>
-						<reference key="source" ref="1042111986"/>
-						<reference key="destination" ref="227604121"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="1042111986"/>
-							<reference key="NSDestination" ref="227604121"/>
-							<string key="NSLabel">value: selection.filename</string>
-							<string key="NSBinding">value</string>
-							<string key="NSKeyPath">selection.filename</string>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100109</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBOutletConnection" key="connection">
-						<string key="label">formatter</string>
-						<reference key="source" ref="173897280"/>
-						<reference key="destination" ref="521446972"/>
-					</object>
-					<int key="connectionID">100164</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBOutletConnection" key="connection">
-						<string key="label">formatter</string>
-						<reference key="source" ref="92621518"/>
-						<reference key="destination" ref="521446972"/>
-					</object>
-					<int key="connectionID">100165</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">value: selection.lastModificationTime</string>
-						<reference key="source" ref="977880734"/>
-						<reference key="destination" ref="227604121"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="977880734"/>
-							<reference key="NSDestination" ref="227604121"/>
-							<string key="NSLabel">value: selection.lastModificationTime</string>
-							<string key="NSBinding">value</string>
-							<string key="NSKeyPath">selection.lastModificationTime</string>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100171</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBOutletConnection" key="connection">
-						<string key="label">dependenciesController</string>
-						<reference key="source" ref="512844837"/>
-						<reference key="destination" ref="227604121"/>
-					</object>
-					<int key="connectionID">100190</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">value: arrangedObjects.name</string>
-						<reference key="source" ref="636268497"/>
-						<reference key="destination" ref="604010272"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="636268497"/>
-							<reference key="NSDestination" ref="604010272"/>
-							<string key="NSLabel">value: arrangedObjects.name</string>
-							<string key="NSBinding">value</string>
-							<string key="NSKeyPath">arrangedObjects.name</string>
-							<object class="NSDictionary" key="NSOptions">
-								<string key="NS.key.0">NSConditionallySetsEditable</string>
-								<boolean value="YES" key="NS.object.0"/>
-							</object>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100208</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">value: arrangedObjects.type</string>
-						<reference key="source" ref="948551868"/>
-						<reference key="destination" ref="604010272"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="948551868"/>
-							<reference key="NSDestination" ref="604010272"/>
-							<string key="NSLabel">value: arrangedObjects.type</string>
-							<string key="NSBinding">value</string>
-							<string key="NSKeyPath">arrangedObjects.type</string>
-							<object class="NSDictionary" key="NSOptions">
-								<string key="NS.key.0">NSConditionallySetsEditable</string>
-								<boolean value="YES" key="NS.object.0"/>
-							</object>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100223</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBOutletConnection" key="connection">
-						<string key="label">formatter</string>
-						<reference key="source" ref="204807275"/>
-						<reference key="destination" ref="1020601628"/>
-					</object>
-					<int key="connectionID">100224</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">typeFilterChanged:</string>
-						<reference key="source" ref="604010272"/>
-						<reference key="destination" ref="293024117"/>
-					</object>
-					<int key="connectionID">100232</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBOutletConnection" key="connection">
-						<string key="label">typeFilterControl</string>
-						<reference key="source" ref="604010272"/>
-						<reference key="destination" ref="293024117"/>
-					</object>
-					<int key="connectionID">100233</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">predicate: nameFilter</string>
-						<reference key="source" ref="635628551"/>
-						<reference key="destination" ref="604010272"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="635628551"/>
-							<reference key="NSDestination" ref="604010272"/>
-							<string key="NSLabel">predicate: nameFilter</string>
-							<string key="NSBinding">predicate</string>
-							<string key="NSKeyPath">nameFilter</string>
-							<object class="NSDictionary" key="NSOptions">
-								<bool key="EncodedWithXMLCoder">YES</bool>
-								<object class="NSArray" key="dict.sortedKeys">
-									<bool key="EncodedWithXMLCoder">YES</bool>
-									<string>NSDisplayName</string>
-									<string>NSPredicateFormat</string>
-								</object>
-								<object class="NSMutableArray" key="dict.values">
-									<bool key="EncodedWithXMLCoder">YES</bool>
-									<string>predicate</string>
-									<string>name contains $value</string>
-								</object>
-							</object>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100234</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">value: arrangedObjects.dependencyType</string>
-						<reference key="source" ref="856594260"/>
-						<reference key="destination" ref="227604121"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="856594260"/>
-							<reference key="NSDestination" ref="227604121"/>
-							<string key="NSLabel">value: arrangedObjects.dependencyType</string>
-							<string key="NSBinding">value</string>
-							<string key="NSKeyPath">arrangedObjects.dependencyType</string>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100247</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">contentArray: selection.architectures</string>
-						<reference key="source" ref="880618101"/>
-						<reference key="destination" ref="227604121"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="880618101"/>
-							<reference key="NSDestination" ref="227604121"/>
-							<string key="NSLabel">contentArray: selection.architectures</string>
-							<string key="NSBinding">contentArray</string>
-							<string key="NSKeyPath">selection.architectures</string>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100252</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">contentArray: selection.symbols</string>
-						<reference key="source" ref="604010272"/>
-						<reference key="destination" ref="880618101"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="604010272"/>
-							<reference key="NSDestination" ref="880618101"/>
-							<string key="NSLabel">contentArray: selection.symbols</string>
-							<string key="NSBinding">contentArray</string>
-							<string key="NSKeyPath">selection.symbols</string>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100254</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">value: selection.fileType</string>
-						<reference key="source" ref="161798316"/>
-						<reference key="destination" ref="880618101"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="161798316"/>
-							<reference key="NSDestination" ref="880618101"/>
-							<string key="NSLabel">value: selection.fileType</string>
-							<string key="NSBinding">value</string>
-							<string key="NSKeyPath">selection.fileType</string>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100256</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">value: selection.size</string>
-						<reference key="source" ref="908552118"/>
-						<reference key="destination" ref="880618101"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="908552118"/>
-							<reference key="NSDestination" ref="880618101"/>
-							<string key="NSLabel">value: selection.size</string>
-							<string key="NSBinding">value</string>
-							<string key="NSKeyPath">selection.size</string>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100257</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">value: selection.version</string>
-						<reference key="source" ref="216813176"/>
-						<reference key="destination" ref="880618101"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="216813176"/>
-							<reference key="NSDestination" ref="880618101"/>
-							<string key="NSLabel">value: selection.version</string>
-							<string key="NSBinding">value</string>
-							<string key="NSKeyPath">selection.version</string>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100258</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">contentArray: architectures</string>
-						<reference key="source" ref="657463956"/>
-						<reference key="destination" ref="512844837"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="657463956"/>
-							<reference key="NSDestination" ref="512844837"/>
-							<string key="NSLabel">contentArray: architectures</string>
-							<string key="NSBinding">contentArray</string>
-							<string key="NSKeyPath">architectures</string>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100309</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">contentArray: selection.rootModel</string>
-						<reference key="source" ref="227604121"/>
-						<reference key="destination" ref="657463956"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="227604121"/>
-							<reference key="NSDestination" ref="657463956"/>
-							<string key="NSLabel">contentArray: selection.rootModel</string>
-							<string key="NSBinding">contentArray</string>
-							<string key="NSKeyPath">selection.rootModel</string>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100314</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">content: arrangedObjects</string>
-						<reference key="source" ref="122712539"/>
-						<reference key="destination" ref="657463956"/>
-						<object class="NSNibBindingConnector" key="connector" id="272646350">
-							<reference key="NSSource" ref="122712539"/>
-							<reference key="NSDestination" ref="657463956"/>
-							<string key="NSLabel">content: arrangedObjects</string>
-							<string key="NSBinding">content</string>
-							<string key="NSKeyPath">arrangedObjects</string>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100342</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">contentValues: arrangedObjects.label</string>
-						<reference key="source" ref="122712539"/>
-						<reference key="destination" ref="657463956"/>
-						<object class="NSNibBindingConnector" key="connector" id="645772205">
-							<reference key="NSSource" ref="122712539"/>
-							<reference key="NSDestination" ref="657463956"/>
-							<string key="NSLabel">contentValues: arrangedObjects.label</string>
-							<string key="NSBinding">contentValues</string>
-							<string key="NSKeyPath">arrangedObjects.label</string>
-							<reference key="NSPreviousConnector" ref="272646350"/>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100345</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">selectedIndex: selectionIndex</string>
-						<reference key="source" ref="122712539"/>
-						<reference key="destination" ref="657463956"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="122712539"/>
-							<reference key="NSDestination" ref="657463956"/>
-							<string key="NSLabel">selectedIndex: selectionIndex</string>
-							<string key="NSBinding">selectedIndex</string>
-							<string key="NSKeyPath">selectionIndex</string>
-							<reference key="NSPreviousConnector" ref="645772205"/>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100348</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">content: arrangedObjects</string>
-						<reference key="source" ref="984087406"/>
-						<reference key="destination" ref="880618101"/>
-						<object class="NSNibBindingConnector" key="connector" id="1003334020">
-							<reference key="NSSource" ref="984087406"/>
-							<reference key="NSDestination" ref="880618101"/>
-							<string key="NSLabel">content: arrangedObjects</string>
-							<string key="NSBinding">content</string>
-							<string key="NSKeyPath">arrangedObjects</string>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100355</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">contentValues: arrangedObjects.label</string>
-						<reference key="source" ref="984087406"/>
-						<reference key="destination" ref="880618101"/>
-						<object class="NSNibBindingConnector" key="connector" id="152270181">
-							<reference key="NSSource" ref="984087406"/>
-							<reference key="NSDestination" ref="880618101"/>
-							<string key="NSLabel">contentValues: arrangedObjects.label</string>
-							<string key="NSBinding">contentValues</string>
-							<string key="NSKeyPath">arrangedObjects.label</string>
-							<reference key="NSPreviousConnector" ref="1003334020"/>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100359</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">selectedIndex: selectionIndex</string>
-						<reference key="source" ref="984087406"/>
-						<reference key="destination" ref="880618101"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="984087406"/>
-							<reference key="NSDestination" ref="880618101"/>
-							<string key="NSLabel">selectedIndex: selectionIndex</string>
-							<string key="NSBinding">selectedIndex</string>
-							<string key="NSKeyPath">selectionIndex</string>
-							<reference key="NSPreviousConnector" ref="152270181"/>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100360</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">textColor: arrangedObjects.textColor</string>
-						<reference key="source" ref="28815098"/>
-						<reference key="destination" ref="227604121"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="28815098"/>
-							<reference key="NSDestination" ref="227604121"/>
-							<string key="NSLabel">textColor: arrangedObjects.textColor</string>
-							<string key="NSBinding">textColor</string>
-							<string key="NSKeyPath">arrangedObjects.textColor</string>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100362</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">textColor: arrangedObjects.textColor</string>
-						<reference key="source" ref="856594260"/>
-						<reference key="destination" ref="227604121"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="856594260"/>
-							<reference key="NSDestination" ref="227604121"/>
-							<string key="NSLabel">textColor: arrangedObjects.textColor</string>
-							<string key="NSBinding">textColor</string>
-							<string key="NSKeyPath">arrangedObjects.textColor</string>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100364</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">textColor: arrangedObjects.textColor</string>
-						<reference key="source" ref="734332375"/>
-						<reference key="destination" ref="227604121"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="734332375"/>
-							<reference key="NSDestination" ref="227604121"/>
-							<string key="NSLabel">textColor: arrangedObjects.textColor</string>
-							<string key="NSBinding">textColor</string>
-							<string key="NSKeyPath">arrangedObjects.textColor</string>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100366</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">textColor: arrangedObjects.textColor</string>
-						<reference key="source" ref="584193008"/>
-						<reference key="destination" ref="227604121"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="584193008"/>
-							<reference key="NSDestination" ref="227604121"/>
-							<string key="NSLabel">textColor: arrangedObjects.textColor</string>
-							<string key="NSBinding">textColor</string>
-							<string key="NSKeyPath">arrangedObjects.textColor</string>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100368</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBOutletConnection" key="connection">
-						<string key="label">document</string>
-						<reference key="source" ref="657463956"/>
-						<reference key="destination" ref="512844837"/>
-					</object>
-					<int key="connectionID">100376</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">clickRevealInFinder:</string>
-						<reference key="source" ref="512844837"/>
-						<reference key="destination" ref="1008118083"/>
-					</object>
-					<int key="connectionID">100382</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBOutletConnection" key="connection">
-						<string key="label">textFieldFilename</string>
-						<reference key="source" ref="512844837"/>
-						<reference key="destination" ref="1042111986"/>
-					</object>
-					<int key="connectionID">100383</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBOutletConnection" key="connection">
-						<string key="label">textFieldBottomBar</string>
-						<reference key="source" ref="512844837"/>
-						<reference key="destination" ref="650097667"/>
-					</object>
-					<int key="connectionID">100386</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">attributedString: log</string>
-						<reference key="source" ref="197066997"/>
-						<reference key="destination" ref="512844837"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="197066997"/>
-							<reference key="NSDestination" ref="512844837"/>
-							<string key="NSLabel">attributedString: log</string>
-							<string key="NSBinding">attributedString</string>
-							<string key="NSKeyPath">log</string>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100393</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBOutletConnection" key="connection">
-						<string key="label">delegate</string>
-						<reference key="source" ref="197066997"/>
-						<reference key="destination" ref="512844837"/>
-					</object>
-					<int key="connectionID">100394</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">value: dependencyStatus</string>
-						<reference key="source" ref="650097667"/>
-						<reference key="destination" ref="512844837"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="650097667"/>
-							<reference key="NSDestination" ref="512844837"/>
-							<string key="NSLabel">value: dependencyStatus</string>
-							<string key="NSBinding">value</string>
-							<string key="NSKeyPath">dependencyStatus</string>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100396</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBOutletConnection" key="connection">
-						<string key="label">mainSplitView</string>
-						<reference key="source" ref="512844837"/>
-						<reference key="destination" ref="480030409"/>
-					</object>
-					<int key="connectionID">100397</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBOutletConnection" key="connection">
-						<string key="label">symbolTableController</string>
-						<reference key="source" ref="512844837"/>
-						<reference key="destination" ref="604010272"/>
-					</object>
-					<int key="connectionID">100398</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">value: demangleNames</string>
-						<reference key="source" ref="442705473"/>
-						<reference key="destination" ref="604010272"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="442705473"/>
-							<reference key="NSDestination" ref="604010272"/>
-							<string key="NSLabel">value: demangleNames</string>
-							<string key="NSBinding">value</string>
-							<string key="NSKeyPath">demangleNames</string>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100399</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">value: selection.uuid</string>
-						<reference key="source" ref="471557668"/>
-						<reference key="destination" ref="880618101"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="471557668"/>
-							<reference key="NSDestination" ref="880618101"/>
-							<string key="NSLabel">value: selection.uuid</string>
-							<string key="NSBinding">value</string>
-							<string key="NSKeyPath">selection.uuid</string>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100405</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">value: selection.identifier</string>
-						<reference key="source" ref="354532091"/>
-						<reference key="destination" ref="880618101"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="354532091"/>
-							<reference key="NSDestination" ref="880618101"/>
-							<string key="NSLabel">value: selection.identifier</string>
-							<string key="NSBinding">value</string>
-							<string key="NSKeyPath">selection.identifier</string>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100406</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">hidden: selection.showIdentifier</string>
-						<reference key="source" ref="354532091"/>
-						<reference key="destination" ref="880618101"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="354532091"/>
-							<reference key="NSDestination" ref="880618101"/>
-							<string key="NSLabel">hidden: selection.showIdentifier</string>
-							<string key="NSBinding">hidden</string>
-							<string key="NSKeyPath">selection.showIdentifier</string>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100415</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">hidden: selection.showIdentifier</string>
-						<reference key="source" ref="572346780"/>
-						<reference key="destination" ref="880618101"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="572346780"/>
-							<reference key="NSDestination" ref="880618101"/>
-							<string key="NSLabel">hidden: selection.showIdentifier</string>
-							<string key="NSBinding">hidden</string>
-							<string key="NSKeyPath">selection.showIdentifier</string>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100416</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">value: selection.rpath</string>
-						<reference key="source" ref="525589992"/>
-						<reference key="destination" ref="880618101"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="525589992"/>
-							<reference key="NSDestination" ref="880618101"/>
-							<string key="NSLabel">value: selection.rpath</string>
-							<string key="NSBinding">value</string>
-							<string key="NSKeyPath">selection.rpath</string>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100417</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">value: selection.dynamicLinker</string>
-						<reference key="source" ref="1056341274"/>
-						<reference key="destination" ref="880618101"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="1056341274"/>
-							<reference key="NSDestination" ref="880618101"/>
-							<string key="NSLabel">value: selection.dynamicLinker</string>
-							<string key="NSBinding">value</string>
-							<string key="NSKeyPath">selection.dynamicLinker</string>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100426</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">hidden: selection.showIdentifier</string>
-						<reference key="source" ref="193052838"/>
-						<reference key="destination" ref="880618101"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="193052838"/>
-							<reference key="NSDestination" ref="880618101"/>
-							<string key="NSLabel">hidden: selection.showIdentifier</string>
-							<string key="NSBinding">hidden</string>
-							<string key="NSKeyPath">selection.showIdentifier</string>
-							<object class="NSDictionary" key="NSOptions">
-								<bool key="EncodedWithXMLCoder">YES</bool>
-								<object class="NSArray" key="dict.sortedKeys">
-									<bool key="EncodedWithXMLCoder">YES</bool>
-									<string>NSNoSelectionPlaceholder</string>
-									<string>NSValueTransformerName</string>
-								</object>
-								<object class="NSMutableArray" key="dict.values">
-									<bool key="EncodedWithXMLCoder">YES</bool>
-									<integer value="1"/>
-									<string>NSNegateBoolean</string>
-								</object>
-							</object>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100430</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBBindingConnection" key="connection">
-						<string key="label">hidden: selection.showIdentifier</string>
-						<reference key="source" ref="1056341274"/>
-						<reference key="destination" ref="880618101"/>
-						<object class="NSNibBindingConnector" key="connector">
-							<reference key="NSSource" ref="1056341274"/>
-							<reference key="NSDestination" ref="880618101"/>
-							<string key="NSLabel">hidden: selection.showIdentifier</string>
-							<string key="NSBinding">hidden</string>
-							<string key="NSKeyPath">selection.showIdentifier</string>
-							<object class="NSDictionary" key="NSOptions">
-								<bool key="EncodedWithXMLCoder">YES</bool>
-								<object class="NSArray" key="dict.sortedKeys">
-									<bool key="EncodedWithXMLCoder">YES</bool>
-									<string>NSNoSelectionPlaceholder</string>
-									<string>NSValueTransformerName</string>
-								</object>
-								<object class="NSMutableArray" key="dict.values">
-									<bool key="EncodedWithXMLCoder">YES</bool>
-									<integer value="1"/>
-									<string>NSNegateBoolean</string>
-								</object>
-							</object>
-							<int key="NSNibBindingConnectorVersion">2</int>
-						</object>
-					</object>
-					<int key="connectionID">100431</int>
-				</object>
-			</object>
-			<object class="IBMutableOrderedSet" key="objectRecords">
-				<object class="NSArray" key="orderedObjects">
-					<bool key="EncodedWithXMLCoder">YES</bool>
-					<object class="IBObjectRecord">
-						<int key="objectID">0</int>
-						<reference key="object" ref="0"/>
-						<reference key="children" ref="580458321"/>
-						<nil key="parent"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">-2</int>
-						<reference key="object" ref="512844837"/>
-						<reference key="parent" ref="0"/>
-						<string key="objectName">File's Owner</string>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">-1</int>
-						<reference key="object" ref="613418571"/>
-						<reference key="parent" ref="0"/>
-						<string key="objectName">First Responder</string>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">5</int>
-						<reference key="object" ref="275939982"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="568628114"/>
-							<reference ref="999575573"/>
-						</object>
-						<reference key="parent" ref="0"/>
-						<string key="objectName">Window</string>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">6</int>
-						<reference key="object" ref="568628114"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="480030409"/>
-							<reference ref="650097667"/>
-						</object>
-						<reference key="parent" ref="275939982"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">-3</int>
-						<reference key="object" ref="796877042"/>
-						<reference key="parent" ref="0"/>
-						<string key="objectName">Application</string>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100030</int>
-						<reference key="object" ref="480030409"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="945751664"/>
-							<reference ref="168893345"/>
-						</object>
-						<reference key="parent" ref="568628114"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100032</int>
-						<reference key="object" ref="945751664"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="121913769"/>
-						</object>
-						<reference key="parent" ref="480030409"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100042</int>
-						<reference key="object" ref="121913769"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="492646848"/>
-							<reference ref="555772475"/>
-						</object>
-						<reference key="parent" ref="945751664"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100084</int>
-						<reference key="object" ref="227604121"/>
-						<reference key="parent" ref="0"/>
-						<string key="objectName">Dependency Tree Controller</string>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100119</int>
-						<reference key="object" ref="999575573"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="379654699"/>
-							<reference ref="743465026"/>
-						</object>
-						<reference key="parent" ref="275939982"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100125</int>
-						<reference key="object" ref="379654699"/>
-						<reference key="parent" ref="999575573"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100163</int>
-						<reference key="object" ref="521446972"/>
-						<reference key="parent" ref="0"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100181</int>
-						<reference key="object" ref="1020601628"/>
-						<reference key="parent" ref="0"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100044</int>
-						<reference key="object" ref="492646848"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="563730626"/>
-						</object>
-						<reference key="parent" ref="121913769"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100031</int>
-						<reference key="object" ref="168893345"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="316479869"/>
-						</object>
-						<reference key="parent" ref="480030409"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100033</int>
-						<reference key="object" ref="316479869"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="626659117"/>
-							<reference ref="882949769"/>
-							<reference ref="797605026"/>
-							<reference ref="132988028"/>
-						</object>
-						<reference key="parent" ref="168893345"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100091</int>
-						<reference key="object" ref="626659117"/>
-						<reference key="parent" ref="316479869"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100036</int>
-						<reference key="object" ref="882949769"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="584193008"/>
-							<reference ref="734332375"/>
-							<reference ref="28815098"/>
-							<reference ref="856594260"/>
-						</object>
-						<reference key="parent" ref="316479869"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100089</int>
-						<reference key="object" ref="584193008"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="173897280"/>
-						</object>
-						<reference key="parent" ref="882949769"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100090</int>
-						<reference key="object" ref="173897280"/>
-						<reference key="parent" ref="584193008"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100087</int>
-						<reference key="object" ref="734332375"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="92621518"/>
-						</object>
-						<reference key="parent" ref="882949769"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100088</int>
-						<reference key="object" ref="92621518"/>
-						<reference key="parent" ref="734332375"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100038</int>
-						<reference key="object" ref="28815098"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="1055282365"/>
-						</object>
-						<reference key="parent" ref="882949769"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100041</int>
-						<reference key="object" ref="1055282365"/>
-						<reference key="parent" ref="28815098"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100035</int>
-						<reference key="object" ref="797605026"/>
-						<reference key="parent" ref="316479869"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100034</int>
-						<reference key="object" ref="132988028"/>
-						<reference key="parent" ref="316479869"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100197</int>
-						<reference key="object" ref="604010272"/>
-						<reference key="parent" ref="0"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100244</int>
-						<reference key="object" ref="856594260"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="396048020"/>
-						</object>
-						<reference key="parent" ref="882949769"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100245</int>
-						<reference key="object" ref="396048020"/>
-						<reference key="parent" ref="856594260"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100248</int>
-						<reference key="object" ref="880618101"/>
-						<reference key="parent" ref="0"/>
-						<string key="objectName">Architectures Controller</string>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100303</int>
-						<reference key="object" ref="657463956"/>
-						<reference key="parent" ref="0"/>
-						<string key="objectName">Root Architectures Controller</string>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100321</int>
-						<reference key="object" ref="743465026"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="122712539"/>
-						</object>
-						<reference key="parent" ref="999575573"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100315</int>
-						<reference key="object" ref="122712539"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="361137651"/>
-						</object>
-						<reference key="parent" ref="743465026"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100316</int>
-						<reference key="object" ref="361137651"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="583170644"/>
-						</object>
-						<reference key="parent" ref="122712539"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100317</int>
-						<reference key="object" ref="583170644"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="346213429"/>
-							<reference ref="638398545"/>
-							<reference ref="312805641"/>
-						</object>
-						<reference key="parent" ref="361137651"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100320</int>
-						<reference key="object" ref="346213429"/>
-						<reference key="parent" ref="583170644"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100319</int>
-						<reference key="object" ref="638398545"/>
-						<reference key="parent" ref="583170644"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100318</int>
-						<reference key="object" ref="312805641"/>
-						<reference key="parent" ref="583170644"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100384</int>
-						<reference key="object" ref="650097667"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="1054042850"/>
-						</object>
-						<reference key="parent" ref="568628114"/>
-						<string key="objectName">SmallStaticText - n Dependencies</string>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100385</int>
-						<reference key="object" ref="1054042850"/>
-						<reference key="parent" ref="650097667"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100387</int>
-						<reference key="object" ref="563730626"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="906745934"/>
-						</object>
-						<reference key="parent" ref="492646848"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100388</int>
-						<reference key="object" ref="906745934"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="728598117"/>
-						</object>
-						<reference key="parent" ref="563730626"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100389</int>
-						<reference key="object" ref="728598117"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="197066997"/>
-							<reference ref="883967482"/>
-							<reference ref="634124974"/>
-						</object>
-						<reference key="parent" ref="906745934"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100390</int>
-						<reference key="object" ref="197066997"/>
-						<reference key="parent" ref="728598117"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100391</int>
-						<reference key="object" ref="883967482"/>
-						<reference key="parent" ref="728598117"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100392</int>
-						<reference key="object" ref="634124974"/>
-						<reference key="parent" ref="728598117"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100043</int>
-						<reference key="object" ref="555772475"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="1042111986"/>
-							<reference ref="1008118083"/>
-							<reference ref="249986093"/>
-							<reference ref="984087406"/>
-							<reference ref="75068185"/>
-							<reference ref="216813176"/>
-							<reference ref="908552118"/>
-							<reference ref="161798316"/>
-							<reference ref="354532091"/>
-							<reference ref="572346780"/>
-							<reference ref="880416516"/>
-							<reference ref="993238193"/>
-							<reference ref="468417045"/>
-							<reference ref="913859628"/>
-							<reference ref="471557668"/>
-							<reference ref="85521222"/>
-							<reference ref="442705473"/>
-							<reference ref="293024117"/>
-							<reference ref="635628551"/>
-							<reference ref="128137111"/>
-							<reference ref="87679271"/>
-							<reference ref="924827965"/>
-							<reference ref="525589992"/>
-							<reference ref="193052838"/>
-							<reference ref="1056341274"/>
-						</object>
-						<reference key="parent" ref="121913769"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100047</int>
-						<reference key="object" ref="1042111986"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="861957056"/>
-						</object>
-						<reference key="parent" ref="555772475"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100048</int>
-						<reference key="object" ref="861957056"/>
-						<reference key="parent" ref="1042111986"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100379</int>
-						<reference key="object" ref="1008118083"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="79581081"/>
-						</object>
-						<reference key="parent" ref="555772475"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100380</int>
-						<reference key="object" ref="79581081"/>
-						<reference key="parent" ref="1008118083"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100073</int>
-						<reference key="object" ref="249986093"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="702688654"/>
-							<reference ref="546786446"/>
-							<reference ref="381571687"/>
-							<reference ref="822923245"/>
-						</object>
-						<reference key="parent" ref="555772475"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100074</int>
-						<reference key="object" ref="702688654"/>
-						<reference key="parent" ref="249986093"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100075</int>
-						<reference key="object" ref="546786446"/>
-						<reference key="parent" ref="249986093"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100076</int>
-						<reference key="object" ref="381571687"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="948551868"/>
-							<reference ref="636268497"/>
-						</object>
-						<reference key="parent" ref="249986093"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100078</int>
-						<reference key="object" ref="948551868"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="204807275"/>
-						</object>
-						<reference key="parent" ref="381571687"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100081</int>
-						<reference key="object" ref="204807275"/>
-						<reference key="parent" ref="948551868"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100079</int>
-						<reference key="object" ref="636268497"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="685641417"/>
-						</object>
-						<reference key="parent" ref="381571687"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100080</int>
-						<reference key="object" ref="685641417"/>
-						<reference key="parent" ref="636268497"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100077</int>
-						<reference key="object" ref="822923245"/>
-						<reference key="parent" ref="249986093"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100349</int>
-						<reference key="object" ref="984087406"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="688711585"/>
-						</object>
-						<reference key="parent" ref="555772475"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100350</int>
-						<reference key="object" ref="688711585"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="845219202"/>
-						</object>
-						<reference key="parent" ref="984087406"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100351</int>
-						<reference key="object" ref="845219202"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="919642695"/>
-							<reference ref="326564045"/>
-							<reference ref="461234873"/>
-						</object>
-						<reference key="parent" ref="688711585"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100354</int>
-						<reference key="object" ref="919642695"/>
-						<reference key="parent" ref="845219202"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100353</int>
-						<reference key="object" ref="326564045"/>
-						<reference key="parent" ref="845219202"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100352</int>
-						<reference key="object" ref="461234873"/>
-						<reference key="parent" ref="845219202"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100168</int>
-						<reference key="object" ref="75068185"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="977880734"/>
-						</object>
-						<reference key="parent" ref="555772475"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100169</int>
-						<reference key="object" ref="977880734"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="137468763"/>
-						</object>
-						<reference key="parent" ref="75068185"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100172</int>
-						<reference key="object" ref="137468763"/>
-						<reference key="parent" ref="977880734"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100146</int>
-						<reference key="object" ref="216813176"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="881859768"/>
-						</object>
-						<reference key="parent" ref="555772475"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100147</int>
-						<reference key="object" ref="881859768"/>
-						<reference key="parent" ref="216813176"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100144</int>
-						<reference key="object" ref="128137111"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="342940662"/>
-						</object>
-						<reference key="parent" ref="555772475"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100145</int>
-						<reference key="object" ref="342940662"/>
-						<reference key="parent" ref="128137111"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100055</int>
-						<reference key="object" ref="908552118"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="627396623"/>
-						</object>
-						<reference key="parent" ref="555772475"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100056</int>
-						<reference key="object" ref="627396623"/>
-						<reference key="parent" ref="908552118"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100053</int>
-						<reference key="object" ref="87679271"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="696765352"/>
-						</object>
-						<reference key="parent" ref="555772475"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100054</int>
-						<reference key="object" ref="696765352"/>
-						<reference key="parent" ref="87679271"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100051</int>
-						<reference key="object" ref="161798316"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="418558818"/>
-						</object>
-						<reference key="parent" ref="555772475"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100052</int>
-						<reference key="object" ref="418558818"/>
-						<reference key="parent" ref="161798316"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100155</int>
-						<reference key="object" ref="354532091"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="1016675935"/>
-						</object>
-						<reference key="parent" ref="555772475"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100156</int>
-						<reference key="object" ref="1016675935"/>
-						<reference key="parent" ref="354532091"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100153</int>
-						<reference key="object" ref="572346780"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="217076080"/>
-						</object>
-						<reference key="parent" ref="555772475"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100154</int>
-						<reference key="object" ref="217076080"/>
-						<reference key="parent" ref="572346780"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100049</int>
-						<reference key="object" ref="880416516"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="158980578"/>
-						</object>
-						<reference key="parent" ref="555772475"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100050</int>
-						<reference key="object" ref="158980578"/>
-						<reference key="parent" ref="880416516"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100166</int>
-						<reference key="object" ref="993238193"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="514752317"/>
-						</object>
-						<reference key="parent" ref="555772475"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100167</int>
-						<reference key="object" ref="514752317"/>
-						<reference key="parent" ref="993238193"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100191</int>
-						<reference key="object" ref="635628551"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="1029989959"/>
-						</object>
-						<reference key="parent" ref="555772475"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100192</int>
-						<reference key="object" ref="1029989959"/>
-						<reference key="parent" ref="635628551"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100069</int>
-						<reference key="object" ref="293024117"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="582070752"/>
-						</object>
-						<reference key="parent" ref="555772475"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100070</int>
-						<reference key="object" ref="582070752"/>
-						<reference key="parent" ref="293024117"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100179</int>
-						<reference key="object" ref="442705473"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="959090593"/>
-						</object>
-						<reference key="parent" ref="555772475"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100180</int>
-						<reference key="object" ref="959090593"/>
-						<reference key="parent" ref="442705473"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100057</int>
-						<reference key="object" ref="468417045"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="443541637"/>
-						</object>
-						<reference key="parent" ref="555772475"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100058</int>
-						<reference key="object" ref="443541637"/>
-						<reference key="parent" ref="468417045"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100045</int>
-						<reference key="object" ref="913859628"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="330882544"/>
-						</object>
-						<reference key="parent" ref="555772475"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100046</int>
-						<reference key="object" ref="330882544"/>
-						<reference key="parent" ref="913859628"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100400</int>
-						<reference key="object" ref="85521222"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="1051075048"/>
-						</object>
-						<reference key="parent" ref="555772475"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100401</int>
-						<reference key="object" ref="1051075048"/>
-						<reference key="parent" ref="85521222"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100402</int>
-						<reference key="object" ref="471557668"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="916820763"/>
-						</object>
-						<reference key="parent" ref="555772475"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100403</int>
-						<reference key="object" ref="916820763"/>
-						<reference key="parent" ref="471557668"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100407</int>
-						<reference key="object" ref="924827965"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="163383457"/>
-						</object>
-						<reference key="parent" ref="555772475"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100408</int>
-						<reference key="object" ref="163383457"/>
-						<reference key="parent" ref="924827965"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100409</int>
-						<reference key="object" ref="525589992"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="192004636"/>
-						</object>
-						<reference key="parent" ref="555772475"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100410</int>
-						<reference key="object" ref="192004636"/>
-						<reference key="parent" ref="525589992"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100418</int>
-						<reference key="object" ref="193052838"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="427638139"/>
-						</object>
-						<reference key="parent" ref="555772475"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100419</int>
-						<reference key="object" ref="427638139"/>
-						<reference key="parent" ref="193052838"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100422</int>
-						<reference key="object" ref="1056341274"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="351106799"/>
-						</object>
-						<reference key="parent" ref="555772475"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">100423</int>
-						<reference key="object" ref="351106799"/>
-						<reference key="parent" ref="1056341274"/>
-					</object>
-				</object>
-			</object>
-			<object class="NSMutableDictionary" key="flattenedProperties">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-				<object class="NSArray" key="dict.sortedKeys">
-					<bool key="EncodedWithXMLCoder">YES</bool>
-					<string>-1.IBPluginDependency</string>
-					<string>-2.IBPluginDependency</string>
-					<string>-3.IBPluginDependency</string>
-					<string>100030.IBPluginDependency</string>
-					<string>100031.IBPluginDependency</string>
-					<string>100031.IBUserGuides</string>
-					<string>100032.IBPluginDependency</string>
-					<string>100033.IBPluginDependency</string>
-					<string>100034.IBPluginDependency</string>
-					<string>100035.IBPluginDependency</string>
-					<string>100036.CustomClassName</string>
-					<string>100036.IBPluginDependency</string>
-					<string>100038.IBPluginDependency</string>
-					<string>100041.IBPluginDependency</string>
-					<string>100042.IBPluginDependency</string>
-					<string>100042.IBViewIntegration.shadowBlurRadius</string>
-					<string>100042.IBViewIntegration.shadowColor</string>
-					<string>100042.IBViewIntegration.shadowOffsetHeight</string>
-					<string>100042.IBViewIntegration.shadowOffsetWidth</string>
-					<string>100043.IBPluginDependency</string>
-					<string>100044.IBPluginDependency</string>
-					<string>100045.IBPluginDependency</string>
-					<string>100046.IBPluginDependency</string>
-					<string>100047.IBPluginDependency</string>
-					<string>100048.IBPluginDependency</string>
-					<string>100049.IBPluginDependency</string>
-					<string>100050.IBPluginDependency</string>
-					<string>100051.IBPluginDependency</string>
-					<string>100052.IBPluginDependency</string>
-					<string>100053.IBPluginDependency</string>
-					<string>100054.IBPluginDependency</string>
-					<string>100055.IBPluginDependency</string>
-					<string>100056.IBPluginDependency</string>
-					<string>100057.IBPluginDependency</string>
-					<string>100058.IBPluginDependency</string>
-					<string>100069.IBPluginDependency</string>
-					<string>100069.IBSegmentedControlTracker.RoundRobinState</string>
-					<string>100069.IBSegmentedControlTracker.WasGrowing</string>
-					<string>100070.IBPluginDependency</string>
-					<string>100073.IBPluginDependency</string>
-					<string>100074.IBPluginDependency</string>
-					<string>100075.IBPluginDependency</string>
-					<string>100076.IBPluginDependency</string>
-					<string>100077.IBPluginDependency</string>
-					<string>100078.IBPluginDependency</string>
-					<string>100079.IBPluginDependency</string>
-					<string>100080.IBPluginDependency</string>
-					<string>100081.IBPluginDependency</string>
-					<string>100084.IBPluginDependency</string>
-					<string>100087.IBPluginDependency</string>
-					<string>100088.IBPluginDependency</string>
-					<string>100089.IBPluginDependency</string>
-					<string>100090.IBPluginDependency</string>
-					<string>100091.IBPluginDependency</string>
-					<string>100119.IBEditorWindowLastContentRect</string>
-					<string>100119.IBPluginDependency</string>
-					<string>100125.IBPluginDependency</string>
-					<string>100144.IBPluginDependency</string>
-					<string>100145.IBPluginDependency</string>
-					<string>100146.IBPluginDependency</string>
-					<string>100147.IBPluginDependency</string>
-					<string>100153.IBPluginDependency</string>
-					<string>100154.IBPluginDependency</string>
-					<string>100155.IBPluginDependency</string>
-					<string>100156.IBPluginDependency</string>
-					<string>100163.IBPluginDependency</string>
-					<string>100166.IBPluginDependency</string>
-					<string>100167.IBPluginDependency</string>
-					<string>100168.IBPluginDependency</string>
-					<string>100169.IBPluginDependency</string>
-					<string>100172.IBPluginDependency</string>
-					<string>100179.IBPluginDependency</string>
-					<string>100180.IBPluginDependency</string>
-					<string>100181.IBPluginDependency</string>
-					<string>100191.IBPluginDependency</string>
-					<string>100192.IBPluginDependency</string>
-					<string>100197.CustomClassName</string>
-					<string>100197.IBPluginDependency</string>
-					<string>100244.IBPluginDependency</string>
-					<string>100245.IBPluginDependency</string>
-					<string>100248.IBPluginDependency</string>
-					<string>100303.CustomClassName</string>
-					<string>100303.IBPluginDependency</string>
-					<string>100315.IBPluginDependency</string>
-					<string>100316.IBPluginDependency</string>
-					<string>100317.IBPluginDependency</string>
-					<string>100318.IBPluginDependency</string>
-					<string>100319.IBPluginDependency</string>
-					<string>100320.IBPluginDependency</string>
-					<string>100321.IBPluginDependency</string>
-					<string>100349.IBPluginDependency</string>
-					<string>100350.IBPluginDependency</string>
-					<string>100351.IBPluginDependency</string>
-					<string>100352.IBPluginDependency</string>
-					<string>100353.IBPluginDependency</string>
-					<string>100354.IBPluginDependency</string>
-					<string>100379.IBPluginDependency</string>
-					<string>100380.IBPluginDependency</string>
-					<string>100384.IBPluginDependency</string>
-					<string>100384.IBViewIntegration.shadowBlurRadius</string>
-					<string>100384.IBViewIntegration.shadowColor</string>
-					<string>100384.IBViewIntegration.shadowOffsetHeight</string>
-					<string>100384.IBViewIntegration.shadowOffsetWidth</string>
-					<string>100385.IBPluginDependency</string>
-					<string>100387.IBPluginDependency</string>
-					<string>100388.IBPluginDependency</string>
-					<string>100389.IBPluginDependency</string>
-					<string>100390.IBPluginDependency</string>
-					<string>100391.IBPluginDependency</string>
-					<string>100392.IBPluginDependency</string>
-					<string>100400.IBPluginDependency</string>
-					<string>100401.IBPluginDependency</string>
-					<string>100402.IBPluginDependency</string>
-					<string>100403.IBPluginDependency</string>
-					<string>100407.IBPluginDependency</string>
-					<string>100408.IBPluginDependency</string>
-					<string>100409.IBPluginDependency</string>
-					<string>100410.IBPluginDependency</string>
-					<string>100418.IBPluginDependency</string>
-					<string>100419.IBPluginDependency</string>
-					<string>100422.IBPluginDependency</string>
-					<string>100423.IBPluginDependency</string>
-					<string>5.IBEditorWindowLastContentRect</string>
-					<string>5.IBPluginDependency</string>
-					<string>5.IBWindowTemplateEditedContentRect</string>
-					<string>5.ImportedFromIB2</string>
-					<string>5.editorWindowContentRectSynchronizationRect</string>
-					<string>6.IBPluginDependency</string>
-					<string>6.IBUserGuides</string>
-					<string>6.ImportedFromIB2</string>
-				</object>
-				<object class="NSMutableArray" key="dict.values">
-					<bool key="EncodedWithXMLCoder">YES</bool>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<object class="NSMutableArray">
-						<bool key="EncodedWithXMLCoder">YES</bool>
-					</object>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>AutoExpandOutlineView</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<real value="0.0"/>
-					<reference ref="790077763"/>
-					<real value="0.0"/>
-					<real value="0.0"/>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<integer value="0"/>
-					<integer value="0"/>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>{{591, 904}, {616, 0}}</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>SymbolTableController</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>ArchitecturesController</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<real value="0.0"/>
-					<reference ref="790077763"/>
-					<real value="0.0"/>
-					<real value="0.0"/>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>{{265, 109}, {938, 698}}</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>{{265, 109}, {938, 698}}</string>
-					<integer value="1"/>
-					<string>{{201, 387}, {507, 413}}</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<object class="NSMutableArray">
-						<bool key="EncodedWithXMLCoder">YES</bool>
-						<object class="IBUserGuide">
-							<reference key="view" ref="568628114"/>
-							<double key="location">24</double>
-							<int key="affinity">1</int>
-						</object>
-					</object>
-					<integer value="1"/>
-				</object>
-			</object>
-			<object class="NSMutableDictionary" key="unlocalizedProperties">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-				<reference key="dict.sortedKeys" ref="0"/>
-				<reference key="dict.values" ref="0"/>
-			</object>
-			<nil key="activeLocalization"/>
-			<object class="NSMutableDictionary" key="localizations">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-				<reference key="dict.sortedKeys" ref="0"/>
-				<reference key="dict.values" ref="0"/>
-			</object>
-			<nil key="sourceID"/>
-			<int key="maxID">100433</int>
-		</object>
-		<object class="IBClassDescriber" key="IBDocument.Classes"/>
-		<int key="IBDocument.localizationMode">0</int>
-		<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaFramework</string>
-		<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencies">
-			<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string>
-			<integer value="1050" key="NS.object.0"/>
-		</object>
-		<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
-			<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string>
-			<integer value="1050" key="NS.object.0"/>
-		</object>
-		<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
-			<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string>
-			<integer value="3000" key="NS.object.0"/>
-		</object>
-		<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
-		<int key="IBDocument.defaultPropertyAccessControl">3</int>
-		<object class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
-			<bool key="EncodedWithXMLCoder">YES</bool>
-			<object class="NSArray" key="dict.sortedKeys">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-				<string>NSMenuCheckmark</string>
-				<string>NSMenuMixedState</string>
-			</object>
-			<object class="NSMutableArray" key="dict.values">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-				<string>{9, 8}</string>
-				<string>{7, 2}</string>
-			</object>
-		</object>
-	</data>
-</archive>
+<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="11542" systemVersion="16B2555" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none">
+    <dependencies>
+        <deployment identifier="macosx"/>
+        <development version="7000" identifier="xcode"/>
+        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="11542"/>
+        <capability name="box content view" minToolsVersion="7.0"/>
+    </dependencies>
+    <objects>
+        <customObject id="-2" userLabel="File's Owner" customClass="MyDocument">
+            <connections>
+                <outlet property="dependenciesController" destination="100084" id="100190"/>
+                <outlet property="mainSplitView" destination="100030" id="100397"/>
+                <outlet property="symbolTableController" destination="100197" id="100398"/>
+                <outlet property="textFieldBottomBar" destination="100384" id="100386"/>
+                <outlet property="textFieldFilename" destination="100047" id="100383"/>
+                <outlet property="window" destination="5" id="18"/>
+            </connections>
+        </customObject>
+        <customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
+        <window title="Window" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO" animationBehavior="default" id="5" userLabel="Window" customClass="MyDocumentWindow">
+            <windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES" resizable="YES"/>
+            <windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/>
+            <rect key="contentRect" x="470" y="260" width="938" height="698"/>
+            <rect key="screenRect" x="0.0" y="0.0" width="1920" height="1178"/>
+            <value key="minSize" type="size" width="94" height="86"/>
+            <view key="contentView" id="6">
+                <rect key="frame" x="0.0" y="0.0" width="938" height="698"/>
+                <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                <userGuides>
+                    <userLayoutGuide location="24" affinity="minY"/>
+                </userGuides>
+                <subviews>
+                    <splitView dividerStyle="thin" vertical="YES" id="100030">
+                        <rect key="frame" x="-2" y="24" width="942" height="674"/>
+                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                        <subviews>
+                            <customView id="100031">
+                                <rect key="frame" x="0.0" y="0.0" width="497" height="674"/>
+                                <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                <subviews>
+                                    <scrollView autohidesScrollers="YES" horizontalLineScroll="20" horizontalPageScroll="10" verticalLineScroll="20" verticalPageScroll="10" usesPredominantAxisScrolling="NO" id="100033">
+                                        <rect key="frame" x="0.0" y="0.0" width="497" height="674"/>
+                                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                        <clipView key="contentView" drawsBackground="NO" id="nN7-H6-hSe">
+                                            <rect key="frame" x="1" y="0.0" width="495" height="673"/>
+                                            <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                            <subviews>
+                                                <outlineView focusRingType="none" verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" selectionHighlightStyle="sourceList" multipleSelection="NO" autosaveColumns="NO" rowHeight="20" headerView="100091" indentationPerLevel="14" autoresizesOutlineColumn="YES" outlineTableColumn="100038" id="100036" customClass="AutoExpandOutlineView">
+                                                    <rect key="frame" x="0.0" y="0.0" width="495" height="650"/>
+                                                    <autoresizingMask key="autoresizingMask"/>
+                                                    <size key="intercellSpacing" width="3" height="0.0"/>
+                                                    <color key="backgroundColor" name="_sourceListBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                                    <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/>
+                                                    <tableColumns>
+                                                        <tableColumn editable="NO" width="240" minWidth="16" maxWidth="1000" id="100038">
+                                                            <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Name (Install Name)">
+                                                                <font key="font" metaFont="smallSystem" size="14"/>
+                                                                <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
+                                                                <color key="backgroundColor" white="0.33333299" alpha="1" colorSpace="calibratedWhite"/>
+                                                            </tableHeaderCell>
+                                                            <textFieldCell key="dataCell" lineBreakMode="truncatingMiddle" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="100041">
+                                                                <font key="font" metaFont="system"/>
+                                                                <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                                <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                                            </textFieldCell>
+                                                            <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
+                                                            <connections>
+                                                                <binding destination="100084" name="value" keyPath="arrangedObjects.name" id="100096"/>
+                                                                <binding destination="100084" name="textColor" keyPath="arrangedObjects.textColor" id="100362"/>
+                                                            </connections>
+                                                        </tableColumn>
+                                                        <tableColumn editable="NO" width="64" minWidth="10" maxWidth="3.4028229999999999e+38" id="100244">
+                                                            <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Type">
+                                                                <font key="font" metaFont="smallSystem" size="14"/>
+                                                                <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
+                                                                <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
+                                                            </tableHeaderCell>
+                                                            <textFieldCell key="dataCell" lineBreakMode="truncatingMiddle" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="100245">
+                                                                <font key="font" metaFont="system"/>
+                                                                <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                                <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                                            </textFieldCell>
+                                                            <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
+                                                            <connections>
+                                                                <binding destination="100084" name="value" keyPath="arrangedObjects.dependencyType" id="100247"/>
+                                                                <binding destination="100084" name="textColor" keyPath="arrangedObjects.textColor" id="100364"/>
+                                                            </connections>
+                                                        </tableColumn>
+                                                        <tableColumn editable="NO" width="93" minWidth="10" maxWidth="3.4028229999999999e+38" id="100087">
+                                                            <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Current Version">
+                                                                <font key="font" metaFont="smallSystem" size="14"/>
+                                                                <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
+                                                                <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
+                                                            </tableHeaderCell>
+                                                            <textFieldCell key="dataCell" lineBreakMode="truncatingMiddle" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="100088">
+                                                                <font key="font" metaFont="system"/>
+                                                                <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                                <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                                                <connections>
+                                                                    <outlet property="formatter" destination="100163" id="100165"/>
+                                                                </connections>
+                                                            </textFieldCell>
+                                                            <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
+                                                            <connections>
+                                                                <binding destination="100084" name="value" keyPath="arrangedObjects.currentVersion" id="100094"/>
+                                                                <binding destination="100084" name="textColor" keyPath="arrangedObjects.textColor" id="100366"/>
+                                                            </connections>
+                                                        </tableColumn>
+                                                        <tableColumn editable="NO" width="86" minWidth="10" maxWidth="3.4028229999999999e+38" id="100089">
+                                                            <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Compatible Version">
+                                                                <font key="font" metaFont="smallSystem" size="14"/>
+                                                                <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
+                                                                <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
+                                                            </tableHeaderCell>
+                                                            <textFieldCell key="dataCell" lineBreakMode="truncatingMiddle" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="100090">
+                                                                <font key="font" metaFont="system"/>
+                                                                <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                                <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                                                <connections>
+                                                                    <outlet property="formatter" destination="100163" id="100164"/>
+                                                                </connections>
+                                                            </textFieldCell>
+                                                            <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
+                                                            <connections>
+                                                                <binding destination="100084" name="value" keyPath="arrangedObjects.compatibleVersion" id="100098"/>
+                                                                <binding destination="100084" name="textColor" keyPath="arrangedObjects.textColor" id="100368"/>
+                                                            </connections>
+                                                        </tableColumn>
+                                                    </tableColumns>
+                                                </outlineView>
+                                            </subviews>
+                                            <nil key="backgroundColor"/>
+                                        </clipView>
+                                        <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="100035">
+                                            <rect key="frame" x="1" y="662" width="478" height="15"/>
+                                            <autoresizingMask key="autoresizingMask"/>
+                                        </scroller>
+                                        <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" doubleValue="0.010670731707317072" horizontal="NO" id="100034">
+                                            <rect key="frame" x="479" y="17" width="15" height="645"/>
+                                            <autoresizingMask key="autoresizingMask"/>
+                                        </scroller>
+                                        <tableHeaderView key="headerView" id="100091">
+                                            <rect key="frame" x="0.0" y="0.0" width="495" height="23"/>
+                                            <autoresizingMask key="autoresizingMask"/>
+                                        </tableHeaderView>
+                                    </scrollView>
+                                </subviews>
+                            </customView>
+                            <customView id="100032">
+                                <rect key="frame" x="498" y="0.0" width="444" height="674"/>
+                                <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                <subviews>
+                                    <splitView id="100042">
+                                        <rect key="frame" x="0.0" y="0.0" width="444" height="674"/>
+                                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                        <subviews>
+                                            <customView id="100043">
+                                                <rect key="frame" x="0.0" y="0.0" width="444" height="447"/>
+                                                <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                                <subviews>
+                                                    <popUpButton verticalHuggingPriority="750" id="100349">
+                                                        <rect key="frame" x="100" y="365" width="173" height="26"/>
+                                                        <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
+                                                        <popUpButtonCell key="cell" type="push" title="Item 1" bezelStyle="rounded" alignment="left" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" selectedItem="100352" id="100350">
+                                                            <behavior key="behavior" lightByBackground="YES" lightByGray="YES"/>
+                                                            <font key="font" metaFont="message" size="16"/>
+                                                            <menu key="menu" title="OtherViews" id="100351">
+                                                                <items>
+                                                                    <menuItem title="Item 1" state="on" id="100352"/>
+                                                                    <menuItem title="Item 2" id="100353"/>
+                                                                    <menuItem title="Item 3" id="100354"/>
+                                                                </items>
+                                                            </menu>
+                                                        </popUpButtonCell>
+                                                        <connections>
+                                                            <binding destination="100248" name="content" keyPath="arrangedObjects" id="100355"/>
+                                                            <binding destination="100248" name="contentValues" keyPath="arrangedObjects.label" previousBinding="100355" id="100359"/>
+                                                            <binding destination="100248" name="selectedIndex" keyPath="selectionIndex" previousBinding="100359" id="100360"/>
+                                                        </connections>
+                                                    </popUpButton>
+                                                    <searchField wantsLayer="YES" verticalHuggingPriority="750" id="100191">
+                                                        <rect key="frame" x="283" y="203" width="141" height="22"/>
+                                                        <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
+                                                        <searchFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" borderStyle="bezel" bezelStyle="round" id="100192">
+                                                            <font key="font" metaFont="system" size="16"/>
+                                                            <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                            <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                                        </searchFieldCell>
+                                                        <connections>
+                                                            <binding destination="100197" name="predicate" keyPath="nameFilter" id="100234">
+                                                                <dictionary key="options">
+                                                                    <string key="NSDisplayName">predicate</string>
+                                                                    <string key="NSPredicateFormat">name contains $value</string>
+                                                                </dictionary>
+                                                            </binding>
+                                                        </connections>
+                                                    </searchField>
+                                                    <button verticalHuggingPriority="750" id="100179">
+                                                        <rect key="frame" x="19" y="203" width="108" height="19"/>
+                                                        <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
+                                                        <buttonCell key="cell" type="roundRect" title="Demangle Names" bezelStyle="roundedRect" alignment="center" state="on" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="100180">
+                                                            <behavior key="behavior" lightByBackground="YES" lightByGray="YES" changeBackground="YES" changeGray="YES"/>
+                                                            <font key="font" metaFont="cellTitle"/>
+                                                        </buttonCell>
+                                                        <connections>
+                                                            <binding destination="100197" name="value" keyPath="demangleNames" id="100399"/>
+                                                        </connections>
+                                                    </button>
+                                                    <textField verticalHuggingPriority="750" id="100168">
+                                                        <rect key="frame" x="99" y="391" width="326" height="14"/>
+                                                        <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
+                                                        <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Label" id="100169">
+                                                            <dateFormatter key="formatter" formatterBehavior="custom10_4" dateStyle="medium" timeStyle="medium" id="100172"/>
+                                                            <font key="font" metaFont="system" size="11"/>
+                                                            <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                            <connections>
+                                                                <binding destination="100084" name="value" keyPath="selection.lastModificationTime" id="100171"/>
+                                                            </connections>
+                                                        </textFieldCell>
+                                                    </textField>
+                                                    <textField verticalHuggingPriority="750" id="100166">
+                                                        <rect key="frame" x="17" y="391" width="83" height="14"/>
+                                                        <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
+                                                        <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Last Modified" id="100167">
+                                                            <font key="font" metaFont="system" size="11"/>
+                                                            <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                        </textFieldCell>
+                                                    </textField>
+                                                    <textField verticalHuggingPriority="750" id="100155">
+                                                        <rect key="frame" x="99" y="347" width="328" height="14"/>
+                                                        <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
+                                                        <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Label" id="100156">
+                                                            <font key="font" metaFont="system" size="11"/>
+                                                            <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                        </textFieldCell>
+                                                        <connections>
+                                                            <binding destination="100248" name="value" keyPath="selection.identifier" id="100406"/>
+                                                            <binding destination="100248" name="hidden" keyPath="selection.showIdentifier" id="100415"/>
+                                                        </connections>
+                                                    </textField>
+                                                    <textField verticalHuggingPriority="750" id="100422">
+                                                        <rect key="frame" x="99" y="347" width="328" height="14"/>
+                                                        <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
+                                                        <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Label" id="100423">
+                                                            <font key="font" metaFont="system" size="11"/>
+                                                            <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                        </textFieldCell>
+                                                        <connections>
+                                                            <binding destination="100248" name="value" keyPath="selection.dynamicLinker" id="100426"/>
+                                                            <binding destination="100248" name="hidden" keyPath="selection.showIdentifier" id="100431">
+                                                                <dictionary key="options">
+                                                                    <integer key="NSNoSelectionPlaceholder" value="1"/>
+                                                                    <string key="NSValueTransformerName">NSNegateBoolean</string>
+                                                                </dictionary>
+                                                            </binding>
+                                                        </connections>
+                                                    </textField>
+                                                    <textField verticalHuggingPriority="750" id="100153">
+                                                        <rect key="frame" x="17" y="347" width="82" height="14"/>
+                                                        <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
+                                                        <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="ID" id="100154">
+                                                            <font key="font" metaFont="system" size="11"/>
+                                                            <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                        </textFieldCell>
+                                                        <connections>
+                                                            <binding destination="100248" name="hidden" keyPath="selection.showIdentifier" id="100416"/>
+                                                        </connections>
+                                                    </textField>
+                                                    <textField verticalHuggingPriority="750" id="100418">
+                                                        <rect key="frame" x="16" y="347" width="87" height="14"/>
+                                                        <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
+                                                        <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Dynamic Linker" id="100419">
+                                                            <font key="font" metaFont="system" size="11"/>
+                                                            <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                        </textFieldCell>
+                                                        <connections>
+                                                            <binding destination="100248" name="hidden" keyPath="selection.showIdentifier" id="100430">
+                                                                <dictionary key="options">
+                                                                    <integer key="NSNoSelectionPlaceholder" value="1"/>
+                                                                    <string key="NSValueTransformerName">NSNegateBoolean</string>
+                                                                </dictionary>
+                                                            </binding>
+                                                        </connections>
+                                                    </textField>
+                                                    <textField verticalHuggingPriority="750" id="100146">
+                                                        <rect key="frame" x="99" y="281" width="328" height="14"/>
+                                                        <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
+                                                        <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Label" id="100147">
+                                                            <font key="font" metaFont="system" size="11"/>
+                                                            <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                        </textFieldCell>
+                                                        <connections>
+                                                            <binding destination="100248" name="value" keyPath="selection.version" id="100258"/>
+                                                        </connections>
+                                                    </textField>
+                                                    <textField verticalHuggingPriority="750" id="100402">
+                                                        <rect key="frame" x="99" y="259" width="328" height="14"/>
+                                                        <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
+                                                        <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Label" id="100403">
+                                                            <font key="font" metaFont="system" size="11"/>
+                                                            <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                        </textFieldCell>
+                                                        <connections>
+                                                            <binding destination="100248" name="value" keyPath="selection.uuid" id="100405"/>
+                                                        </connections>
+                                                    </textField>
+                                                    <textField verticalHuggingPriority="750" id="100409">
+                                                        <rect key="frame" x="99" y="237" width="328" height="14"/>
+                                                        <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
+                                                        <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Label" id="100410">
+                                                            <font key="font" metaFont="system" size="11"/>
+                                                            <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                        </textFieldCell>
+                                                        <connections>
+                                                            <binding destination="100248" name="value" keyPath="selection.rpath" id="100417"/>
+                                                        </connections>
+                                                    </textField>
+                                                    <textField verticalHuggingPriority="750" id="100144">
+                                                        <rect key="frame" x="16" y="281" width="56" height="14"/>
+                                                        <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
+                                                        <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Version" id="100145">
+                                                            <font key="font" metaFont="system" size="11"/>
+                                                            <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                        </textFieldCell>
+                                                    </textField>
+                                                    <textField verticalHuggingPriority="750" id="100400">
+                                                        <rect key="frame" x="16" y="259" width="56" height="14"/>
+                                                        <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
+                                                        <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="UUID" id="100401">
+                                                            <font key="font" metaFont="system" size="11"/>
+                                                            <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                        </textFieldCell>
+                                                    </textField>
+                                                    <textField verticalHuggingPriority="750" id="100407">
+                                                        <rect key="frame" x="16" y="237" width="56" height="14"/>
+                                                        <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
+                                                        <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="RPaths" id="100408">
+                                                            <font key="font" metaFont="system" size="11"/>
+                                                            <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                        </textFieldCell>
+                                                    </textField>
+                                                    <scrollView autohidesScrollers="YES" horizontalLineScroll="19" horizontalPageScroll="10" verticalLineScroll="19" verticalPageScroll="10" usesPredominantAxisScrolling="NO" id="100073">
+                                                        <rect key="frame" x="19" y="8" width="405" height="189"/>
+                                                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                                        <clipView key="contentView" id="E5s-9L-aZT">
+                                                            <rect key="frame" x="1" y="0.0" width="403" height="188"/>
+                                                            <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                                            <subviews>
+                                                                <tableView verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" alternatingRowBackgroundColors="YES" columnSelection="YES" multipleSelection="NO" autosaveColumns="NO" headerView="100077" id="100076">
+                                                                    <rect key="frame" x="0.0" y="0.0" width="403" height="165"/>
+                                                                    <autoresizingMask key="autoresizingMask"/>
+                                                                    <size key="intercellSpacing" width="3" height="2"/>
+                                                                    <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                                                    <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/>
+                                                                    <tableColumns>
+                                                                        <tableColumn editable="NO" width="101" minWidth="40" maxWidth="1000" id="100078">
+                                                                            <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Type">
+                                                                                <font key="font" metaFont="smallSystem" size="14"/>
+                                                                                <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
+                                                                                <color key="backgroundColor" white="0.33333299" alpha="1" colorSpace="calibratedWhite"/>
+                                                                            </tableHeaderCell>
+                                                                            <textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="100081">
+                                                                                <font key="font" metaFont="system"/>
+                                                                                <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                                                <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                                                                <connections>
+                                                                                    <outlet property="formatter" destination="100181" id="100224"/>
+                                                                                </connections>
+                                                                            </textFieldCell>
+                                                                            <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
+                                                                            <connections>
+                                                                                <binding destination="100197" name="value" keyPath="arrangedObjects.type" id="100223">
+                                                                                    <dictionary key="options">
+                                                                                        <bool key="NSConditionallySetsEditable" value="YES"/>
+                                                                                    </dictionary>
+                                                                                </binding>
+                                                                            </connections>
+                                                                        </tableColumn>
+                                                                        <tableColumn editable="NO" width="296" minWidth="40" maxWidth="1000" id="100079">
+                                                                            <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Name">
+                                                                                <font key="font" metaFont="smallSystem" size="14"/>
+                                                                                <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
+                                                                                <color key="backgroundColor" white="0.33333299" alpha="1" colorSpace="calibratedWhite"/>
+                                                                            </tableHeaderCell>
+                                                                            <textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="100080">
+                                                                                <font key="font" metaFont="system"/>
+                                                                                <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                                                <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                                                            </textFieldCell>
+                                                                            <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
+                                                                            <connections>
+                                                                                <binding destination="100197" name="value" keyPath="arrangedObjects.name" id="100208">
+                                                                                    <dictionary key="options">
+                                                                                        <bool key="NSConditionallySetsEditable" value="YES"/>
+                                                                                    </dictionary>
+                                                                                </binding>
+                                                                            </connections>
+                                                                        </tableColumn>
+                                                                    </tableColumns>
+                                                                </tableView>
+                                                            </subviews>
+                                                        </clipView>
+                                                        <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" controlSize="small" horizontal="YES" id="100075">
+                                                            <rect key="frame" x="1" y="207" width="390" height="11"/>
+                                                            <autoresizingMask key="autoresizingMask"/>
+                                                        </scroller>
+                                                        <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" doubleValue="1" controlSize="small" horizontal="NO" id="100074">
+                                                            <rect key="frame" x="391" y="17" width="11" height="190"/>
+                                                            <autoresizingMask key="autoresizingMask"/>
+                                                        </scroller>
+                                                        <tableHeaderView key="headerView" id="100077">
+                                                            <rect key="frame" x="0.0" y="0.0" width="403" height="23"/>
+                                                            <autoresizingMask key="autoresizingMask"/>
+                                                        </tableHeaderView>
+                                                    </scrollView>
+                                                    <segmentedControl verticalHuggingPriority="750" id="100069">
+                                                        <rect key="frame" x="142" y="203" width="129" height="20"/>
+                                                        <autoresizingMask key="autoresizingMask" flexibleMinY="YES"/>
+                                                        <segmentedCell key="cell" borderStyle="border" alignment="left" style="roundRect" trackingMode="selectAny" id="100070">
+                                                            <font key="font" metaFont="cellTitle"/>
+                                                            <segments>
+                                                                <segment label="Export" width="59" selected="YES"/>
+                                                                <segment label="Import" width="63" tag="1"/>
+                                                            </segments>
+                                                        </segmentedCell>
+                                                        <connections>
+                                                            <action selector="typeFilterChanged:" target="100197" id="100232"/>
+                                                        </connections>
+                                                    </segmentedControl>
+                                                    <textField verticalHuggingPriority="750" id="100057">
+                                                        <rect key="frame" x="17" y="369" width="82" height="14"/>
+                                                        <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
+                                                        <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Architecture" id="100058">
+                                                            <font key="font" metaFont="system" size="11"/>
+                                                            <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                        </textFieldCell>
+                                                    </textField>
+                                                    <textField verticalHuggingPriority="750" id="100055">
+                                                        <rect key="frame" x="99" y="303" width="328" height="14"/>
+                                                        <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
+                                                        <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Label" id="100056">
+                                                            <font key="font" metaFont="system" size="11"/>
+                                                            <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                        </textFieldCell>
+                                                        <connections>
+                                                            <binding destination="100248" name="value" keyPath="selection.size" id="100257"/>
+                                                        </connections>
+                                                    </textField>
+                                                    <textField verticalHuggingPriority="750" id="100053">
+                                                        <rect key="frame" x="16" y="303" width="56" height="14"/>
+                                                        <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
+                                                        <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Size" id="100054">
+                                                            <font key="font" metaFont="system" size="11"/>
+                                                            <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                        </textFieldCell>
+                                                    </textField>
+                                                    <textField verticalHuggingPriority="750" id="100051">
+                                                        <rect key="frame" x="99" y="325" width="328" height="14"/>
+                                                        <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
+                                                        <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Label" id="100052">
+                                                            <font key="font" metaFont="system" size="11"/>
+                                                            <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                        </textFieldCell>
+                                                        <connections>
+                                                            <binding destination="100248" name="value" keyPath="selection.fileType" id="100256"/>
+                                                        </connections>
+                                                    </textField>
+                                                    <textField verticalHuggingPriority="750" id="100049">
+                                                        <rect key="frame" x="17" y="325" width="61" height="14"/>
+                                                        <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
+                                                        <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="File Type" id="100050">
+                                                            <font key="font" metaFont="system" size="11"/>
+                                                            <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                        </textFieldCell>
+                                                    </textField>
+                                                    <textField verticalHuggingPriority="750" id="100047">
+                                                        <rect key="frame" x="99" y="413" width="221" height="14"/>
+                                                        <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
+                                                        <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Label" id="100048">
+                                                            <font key="font" metaFont="system" size="11"/>
+                                                            <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                        </textFieldCell>
+                                                        <connections>
+                                                            <binding destination="100084" name="value" keyPath="selection.filename" id="100109"/>
+                                                        </connections>
+                                                    </textField>
+                                                    <textField verticalHuggingPriority="750" id="100045">
+                                                        <rect key="frame" x="17" y="413" width="67" height="14"/>
+                                                        <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
+                                                        <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="File Name" id="100046">
+                                                            <font key="font" metaFont="system" size="11"/>
+                                                            <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                        </textFieldCell>
+                                                    </textField>
+                                                    <button verticalHuggingPriority="750" id="100379">
+                                                        <rect key="frame" x="325" y="411" width="99" height="19"/>
+                                                        <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMinY="YES"/>
+                                                        <buttonCell key="cell" type="roundRect" title="Reveal in Finder" bezelStyle="roundedRect" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="100380">
+                                                            <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                                            <font key="font" metaFont="cellTitle"/>
+                                                        </buttonCell>
+                                                        <connections>
+                                                            <action selector="clickRevealInFinder:" target="-2" id="100382"/>
+                                                        </connections>
+                                                    </button>
+                                                </subviews>
+                                            </customView>
+                                            <customView id="100044">
+                                                <rect key="frame" x="0.0" y="456" width="444" height="218"/>
+                                                <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                                <subviews>
+                                                    <box autoresizesSubviews="NO" borderType="line" title="Warnings &amp; Errors" id="100387">
+                                                        <rect key="frame" x="12" y="8" width="410" height="210"/>
+                                                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                                        <view key="contentView" id="WcT-KN-GjD">
+                                                            <rect key="frame" x="1" y="1" width="408" height="194"/>
+                                                            <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                                            <subviews>
+                                                                <view id="100388">
+                                                                    <rect key="frame" x="-3" y="2" width="406" height="193"/>
+                                                                    <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                                                    <subviews>
+                                                                        <scrollView autohidesScrollers="YES" horizontalLineScroll="10" horizontalPageScroll="10" verticalLineScroll="10" verticalPageScroll="10" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" id="100389">
+                                                                            <rect key="frame" x="17" y="10" width="381" height="177"/>
+                                                                            <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                                                            <clipView key="contentView" id="fNT-la-3fJ">
+                                                                                <rect key="frame" x="1" y="1" width="379" height="175"/>
+                                                                                <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                                                                <subviews>
+                                                                                    <textView editable="NO" importsGraphics="NO" id="100390">
+                                                                                        <rect key="frame" x="0.0" y="0.0" width="379" height="175"/>
+                                                                                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                                                                        <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
+                                                                                        <size key="minSize" width="379" height="175"/>
+                                                                                        <size key="maxSize" width="760" height="10000000"/>
+                                                                                        <attributedString key="textStorage">
+                                                                                            <fragment content="Lorem ipsum dolor sit er ">
+                                                                                                <attributes>
+                                                                                                    <font key="NSFont" metaFont="label"/>
+                                                                                                    <paragraphStyle key="NSParagraphStyle" alignment="justified" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO">
+                                                                                                        <tabStops>
+                                                                                                            <textTab alignment="left" location="0.0">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="56">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="112">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="168">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="224">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="280">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="336">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="392">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="448">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="504">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="560">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="616">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="672">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="728">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="784">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="840">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="896">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="952">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1008">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1064">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1120">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1176">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1232">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1288">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1344">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1400">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1456">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1512">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1568">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1624">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1680">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1736">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                        </tabStops>
+                                                                                                    </paragraphStyle>
+                                                                                                </attributes>
+                                                                                            </fragment>
+                                                                                            <fragment content="elit">
+                                                                                                <attributes>
+                                                                                                    <font key="NSFont" size="10" name="LucidaGrande-Bold"/>
+                                                                                                    <paragraphStyle key="NSParagraphStyle" alignment="justified" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO">
+                                                                                                        <tabStops>
+                                                                                                            <textTab alignment="left" location="0.0">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="56">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="112">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="168">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="224">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="280">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="336">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="392">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="448">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="504">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="560">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="616">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="672">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="728">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="784">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="840">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="896">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="952">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1008">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1064">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1120">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1176">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1232">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1288">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1344">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1400">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1456">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1512">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1568">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1624">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1680">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1736">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                        </tabStops>
+                                                                                                    </paragraphStyle>
+                                                                                                </attributes>
+                                                                                            </fragment>
+                                                                                            <fragment content=" lamet, ">
+                                                                                                <attributes>
+                                                                                                    <font key="NSFont" metaFont="label"/>
+                                                                                                    <paragraphStyle key="NSParagraphStyle" alignment="justified" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO">
+                                                                                                        <tabStops>
+                                                                                                            <textTab alignment="left" location="0.0">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="56">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="112">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="168">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="224">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="280">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="336">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="392">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="448">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="504">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="560">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="616">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="672">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="728">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="784">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="840">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="896">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="952">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1008">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1064">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1120">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1176">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1232">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1288">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1344">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1400">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1456">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1512">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1568">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1624">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1680">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1736">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                        </tabStops>
+                                                                                                    </paragraphStyle>
+                                                                                                </attributes>
+                                                                                            </fragment>
+                                                                                            <fragment content="consectetaur">
+                                                                                                <attributes>
+                                                                                                    <font key="NSFont" size="10" name="LucidaGrande-Bold"/>
+                                                                                                    <paragraphStyle key="NSParagraphStyle" alignment="justified" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO">
+                                                                                                        <tabStops>
+                                                                                                            <textTab alignment="left" location="0.0">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="56">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="112">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="168">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="224">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="280">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="336">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="392">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="448">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="504">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="560">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="616">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="672">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="728">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="784">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="840">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="896">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="952">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1008">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1064">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1120">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1176">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1232">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1288">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1344">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1400">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1456">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1512">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1568">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1624">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1680">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1736">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                        </tabStops>
+                                                                                                    </paragraphStyle>
+                                                                                                </attributes>
+                                                                                            </fragment>
+                                                                                            <fragment content=" cillium adipisicing pecu, sed do ">
+                                                                                                <attributes>
+                                                                                                    <font key="NSFont" metaFont="label"/>
+                                                                                                    <paragraphStyle key="NSParagraphStyle" alignment="justified" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO">
+                                                                                                        <tabStops>
+                                                                                                            <textTab alignment="left" location="0.0">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="56">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="112">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="168">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="224">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="280">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="336">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="392">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="448">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="504">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="560">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="616">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="672">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="728">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="784">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="840">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="896">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="952">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1008">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1064">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1120">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1176">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1232">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1288">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1344">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1400">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1456">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1512">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1568">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1624">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1680">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1736">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                        </tabStops>
+                                                                                                    </paragraphStyle>
+                                                                                                </attributes>
+                                                                                            </fragment>
+                                                                                            <fragment content="eiusmod">
+                                                                                                <attributes>
+                                                                                                    <font key="NSFont" size="10" name="LucidaGrande-Bold"/>
+                                                                                                    <paragraphStyle key="NSParagraphStyle" alignment="justified" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO">
+                                                                                                        <tabStops>
+                                                                                                            <textTab alignment="left" location="0.0">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="56">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="112">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="168">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="224">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="280">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="336">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="392">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="448">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="504">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="560">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="616">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="672">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="728">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="784">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="840">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="896">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="952">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1008">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1064">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1120">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1176">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1232">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1288">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1344">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1400">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1456">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1512">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1568">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1624">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1680">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1736">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                        </tabStops>
+                                                                                                    </paragraphStyle>
+                                                                                                </attributes>
+                                                                                            </fragment>
+                                                                                            <fragment>
+                                                                                                <mutableString key="content"> tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda</mutableString>
+                                                                                                <attributes>
+                                                                                                    <font key="NSFont" metaFont="label"/>
+                                                                                                    <paragraphStyle key="NSParagraphStyle" alignment="justified" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO">
+                                                                                                        <tabStops>
+                                                                                                            <textTab alignment="left" location="0.0">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="56">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="112">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="168">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="224">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="280">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="336">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="392">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="448">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="504">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="560">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="616">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="672">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="728">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="784">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="840">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="896">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="952">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1008">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1064">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1120">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1176">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1232">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1288">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1344">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1400">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1456">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1512">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1568">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1624">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1680">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                            <textTab alignment="left" location="1736">
+                                                                                                                <options/>
+                                                                                                            </textTab>
+                                                                                                        </tabStops>
+                                                                                                    </paragraphStyle>
+                                                                                                </attributes>
+                                                                                            </fragment>
+                                                                                        </attributedString>
+                                                                                        <color key="insertionPointColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                                                        <connections>
+                                                                                            <binding destination="-2" name="attributedString" keyPath="log" id="100393"/>
+                                                                                            <outlet property="delegate" destination="-2" id="100394"/>
+                                                                                        </connections>
+                                                                                    </textView>
+                                                                                </subviews>
+                                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
+                                                                            </clipView>
+                                                                            <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" doubleValue="1" horizontal="YES" id="100391">
+                                                                                <rect key="frame" x="-100" y="-100" width="345" height="15"/>
+                                                                                <autoresizingMask key="autoresizingMask"/>
+                                                                            </scroller>
+                                                                            <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="100392">
+                                                                                <rect key="frame" x="352" y="1" width="16" height="165"/>
+                                                                                <autoresizingMask key="autoresizingMask"/>
+                                                                            </scroller>
+                                                                        </scrollView>
+                                                                    </subviews>
+                                                                </view>
+                                                            </subviews>
+                                                        </view>
+                                                        <font key="titleFont" metaFont="system" size="11"/>
+                                                    </box>
+                                                </subviews>
+                                            </customView>
+                                        </subviews>
+                                        <holdingPriorities>
+                                            <real value="250"/>
+                                            <real value="250"/>
+                                        </holdingPriorities>
+                                    </splitView>
+                                </subviews>
+                            </customView>
+                        </subviews>
+                        <holdingPriorities>
+                            <real value="250"/>
+                            <real value="250"/>
+                        </holdingPriorities>
+                    </splitView>
+                    <textField verticalHuggingPriority="750" id="100384" userLabel="SmallStaticText - n Dependencies">
+                        <rect key="frame" x="-3" y="5" width="944" height="14"/>
+                        <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
+                        <textFieldCell key="cell" controlSize="small" sendsActionOnEndEditing="YES" alignment="center" title="n Dependencies" id="100385">
+                            <font key="font" metaFont="system" size="11"/>
+                            <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                        </textFieldCell>
+                        <connections>
+                            <binding destination="-2" name="value" keyPath="dependencyStatus" id="100396"/>
+                        </connections>
+                    </textField>
+                </subviews>
+            </view>
+            <toolbar key="toolbar" implicitIdentifier="5B15C9FB-E698-423F-8D71-06B45A425019" autosavesConfiguration="NO" allowsUserCustomization="NO" displayMode="iconAndLabel" sizeMode="regular" id="100119">
+                <allowedToolbarItems>
+                    <toolbarItem implicitItemIdentifier="NSToolbarFlexibleSpaceItem" id="100125"/>
+                    <toolbarItem implicitItemIdentifier="380958DD-5EE1-42A4-A006-F65FDAD532FF" label="Architecture" paletteLabel="Architecture" id="100321">
+                        <nil key="toolTip"/>
+                        <size key="minSize" width="152" height="27"/>
+                        <size key="maxSize" width="152" height="27"/>
+                        <popUpButton key="view" verticalHuggingPriority="750" misplaced="YES" id="100315">
+                            <rect key="frame" x="0.0" y="14" width="152" height="25"/>
+                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
+                            <popUpButtonCell key="cell" type="roundTextured" title="Item 1" bezelStyle="texturedRounded" alignment="left" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" selectedItem="100318" id="100316">
+                                <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                <font key="font" metaFont="message" size="16"/>
+                                <menu key="menu" title="OtherViews" id="100317">
+                                    <items>
+                                        <menuItem title="Item 1" state="on" id="100318"/>
+                                        <menuItem title="Item 2" id="100319"/>
+                                        <menuItem title="Item 3" id="100320"/>
+                                    </items>
+                                </menu>
+                            </popUpButtonCell>
+                            <connections>
+                                <binding destination="100303" name="content" keyPath="arrangedObjects" id="100342"/>
+                                <binding destination="100303" name="contentValues" keyPath="arrangedObjects.label" previousBinding="100342" id="100345"/>
+                                <binding destination="100303" name="selectedIndex" keyPath="selectionIndex" previousBinding="100345" id="100348"/>
+                            </connections>
+                        </popUpButton>
+                    </toolbarItem>
+                </allowedToolbarItems>
+                <defaultToolbarItems>
+                    <toolbarItem reference="100321"/>
+                    <toolbarItem reference="100125"/>
+                </defaultToolbarItems>
+            </toolbar>
+            <connections>
+                <outlet property="delegate" destination="-2" id="17"/>
+            </connections>
+        </window>
+        <customObject id="-3" userLabel="Application" customClass="NSObject"/>
+        <treeController objectClassName="MachOModel" editable="NO" childrenKeyPath="children" leafKeyPath="isLeaf" id="100084" userLabel="Dependency Tree Controller">
+            <declaredKeys>
+                <string>currentVersion</string>
+                <string>name</string>
+                <string>compatibleVersion</string>
+                <string>children</string>
+                <string>symbols</string>
+                <string>filename</string>
+                <string>type</string>
+                <string>version</string>
+                <string>size</string>
+                <string>installID</string>
+                <string>installName</string>
+                <string>lastModificationTime</string>
+                <string>architectures</string>
+                <string>idName</string>
+                <string>symbolFilter</string>
+                <string>fileType</string>
+                <string>dependencyType</string>
+                <string>textColor</string>
+            </declaredKeys>
+            <connections>
+                <binding destination="100303" name="contentArray" keyPath="selection.rootModel" id="100314"/>
+            </connections>
+        </treeController>
+        <customObject id="100163" customClass="VersionFormatter"/>
+        <customObject id="100181" customClass="SymbolTableEntryTypeFormatter"/>
+        <arrayController objectClassName="SymbolTableEntryModel" editable="NO" id="100197" customClass="SymbolTableController">
+            <declaredKeys>
+                <string>type</string>
+                <string>name</string>
+                <string>symb</string>
+                <string>symbolFilter</string>
+                <string>showIdentifier</string>
+            </declaredKeys>
+            <connections>
+                <binding destination="100248" name="contentArray" keyPath="selection.symbols" id="100254"/>
+                <outlet property="typeFilterControl" destination="100069" id="100233"/>
+            </connections>
+        </arrayController>
+        <arrayController objectClassName="ArchitectureModel" editable="NO" id="100248" userLabel="Architectures Controller">
+            <declaredKeys>
+                <string>label</string>
+                <string>uuid</string>
+                <string>identifier</string>
+                <string>r</string>
+                <string>rPath</string>
+                <string>showIdentifier</string>
+                <string>rpath</string>
+                <string>dynamicLinker</string>
+            </declaredKeys>
+            <connections>
+                <binding destination="100084" name="contentArray" keyPath="selection.architectures" id="100252"/>
+            </connections>
+        </arrayController>
+        <arrayController objectClassName="ArchitectureModel" editable="NO" id="100303" userLabel="Root Architectures Controller" customClass="ArchitecturesController">
+            <declaredKeys>
+                <string>label</string>
+                <string>rootModel</string>
+            </declaredKeys>
+            <connections>
+                <binding destination="-2" name="contentArray" keyPath="architectures" id="100309"/>
+                <outlet property="document" destination="-2" id="100376"/>
+            </connections>
+        </arrayController>
+    </objects>
+</document>
diff --git a/MacDependency/Images.xcassets/AppIcon.appiconset/Contents.json b/MacDependency/Images.xcassets/AppIcon.appiconset/Contents.json
new file mode 100644
index 0000000..7cd4f8e
--- /dev/null
+++ b/MacDependency/Images.xcassets/AppIcon.appiconset/Contents.json
@@ -0,0 +1,68 @@
+{
+  "images" : [
+    {
+      "size" : "16x16",
+      "idiom" : "mac",
+      "filename" : "icon_16x16.png",
+      "scale" : "1x"
+    },
+    {
+      "size" : "16x16",
+      "idiom" : "mac",
+      "filename" : "icon_16x16@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "size" : "32x32",
+      "idiom" : "mac",
+      "filename" : "icon_32x32.png",
+      "scale" : "1x"
+    },
+    {
+      "size" : "32x32",
+      "idiom" : "mac",
+      "filename" : "icon_32x32@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "size" : "128x128",
+      "idiom" : "mac",
+      "filename" : "icon_128x128.png",
+      "scale" : "1x"
+    },
+    {
+      "size" : "128x128",
+      "idiom" : "mac",
+      "filename" : "icon_128x128@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "size" : "256x256",
+      "idiom" : "mac",
+      "filename" : "icon_256x256.png",
+      "scale" : "1x"
+    },
+    {
+      "size" : "256x256",
+      "idiom" : "mac",
+      "filename" : "icon_256x256@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "size" : "512x512",
+      "idiom" : "mac",
+      "filename" : "icon_512x512.png",
+      "scale" : "1x"
+    },
+    {
+      "size" : "512x512",
+      "idiom" : "mac",
+      "filename" : "icon_512x512@2x.png",
+      "scale" : "2x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
\ No newline at end of file
diff --git a/MacDependency/Images.xcassets/AppIcon.appiconset/icon_128x128.png b/MacDependency/Images.xcassets/AppIcon.appiconset/icon_128x128.png
new file mode 100644
index 0000000..77f5931
Binary files /dev/null and b/MacDependency/Images.xcassets/AppIcon.appiconset/icon_128x128.png differ
diff --git a/MacDependency/Images.xcassets/AppIcon.appiconset/icon_128x128@2x.png b/MacDependency/Images.xcassets/AppIcon.appiconset/icon_128x128@2x.png
new file mode 100644
index 0000000..8b663ba
Binary files /dev/null and b/MacDependency/Images.xcassets/AppIcon.appiconset/icon_128x128@2x.png differ
diff --git a/MacDependency/Images.xcassets/AppIcon.appiconset/icon_16x16.png b/MacDependency/Images.xcassets/AppIcon.appiconset/icon_16x16.png
new file mode 100644
index 0000000..81373fb
Binary files /dev/null and b/MacDependency/Images.xcassets/AppIcon.appiconset/icon_16x16.png differ
diff --git a/MacDependency/Images.xcassets/AppIcon.appiconset/icon_16x16@2x.png b/MacDependency/Images.xcassets/AppIcon.appiconset/icon_16x16@2x.png
new file mode 100644
index 0000000..94191b7
Binary files /dev/null and b/MacDependency/Images.xcassets/AppIcon.appiconset/icon_16x16@2x.png differ
diff --git a/MacDependency/Images.xcassets/AppIcon.appiconset/icon_256x256.png b/MacDependency/Images.xcassets/AppIcon.appiconset/icon_256x256.png
new file mode 100644
index 0000000..8b663ba
Binary files /dev/null and b/MacDependency/Images.xcassets/AppIcon.appiconset/icon_256x256.png differ
diff --git a/MacDependency/Images.xcassets/AppIcon.appiconset/icon_256x256@2x.png b/MacDependency/Images.xcassets/AppIcon.appiconset/icon_256x256@2x.png
new file mode 100644
index 0000000..bb562aa
Binary files /dev/null and b/MacDependency/Images.xcassets/AppIcon.appiconset/icon_256x256@2x.png differ
diff --git a/MacDependency/Images.xcassets/AppIcon.appiconset/icon_32x32.png b/MacDependency/Images.xcassets/AppIcon.appiconset/icon_32x32.png
new file mode 100644
index 0000000..94191b7
Binary files /dev/null and b/MacDependency/Images.xcassets/AppIcon.appiconset/icon_32x32.png differ
diff --git a/MacDependency/Images.xcassets/AppIcon.appiconset/icon_32x32@2x.png b/MacDependency/Images.xcassets/AppIcon.appiconset/icon_32x32@2x.png
new file mode 100644
index 0000000..50f9db3
Binary files /dev/null and b/MacDependency/Images.xcassets/AppIcon.appiconset/icon_32x32@2x.png differ
diff --git a/MacDependency/Images.xcassets/AppIcon.appiconset/icon_512x512.png b/MacDependency/Images.xcassets/AppIcon.appiconset/icon_512x512.png
new file mode 100644
index 0000000..bb562aa
Binary files /dev/null and b/MacDependency/Images.xcassets/AppIcon.appiconset/icon_512x512.png differ
diff --git a/MacDependency/Images.xcassets/AppIcon.appiconset/icon_512x512@2x.png b/MacDependency/Images.xcassets/AppIcon.appiconset/icon_512x512@2x.png
new file mode 100644
index 0000000..07cc6e3
Binary files /dev/null and b/MacDependency/Images.xcassets/AppIcon.appiconset/icon_512x512@2x.png differ
diff --git a/MacDependency/Info.plist b/MacDependency/Info.plist
index ac06a6c..2a9a195 100644
--- a/MacDependency/Info.plist
+++ b/MacDependency/Info.plist
@@ -25,10 +25,8 @@
 	</array>
 	<key>CFBundleExecutable</key>
 	<string>${EXECUTABLE_NAME}</string>
-	<key>CFBundleIconFile</key>
-	<string></string>
 	<key>CFBundleIdentifier</key>
-	<string>com.googlecode.${PRODUCT_NAME:identifier}</string>
+	<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
 	<key>CFBundleInfoDictionaryVersion</key>
 	<string>6.0</string>
 	<key>CFBundleName</key>
diff --git a/MacDependency/MacDependency.xcodeproj/project.pbxproj b/MacDependency/MacDependency.xcodeproj/project.pbxproj
index ef7ceea..2603adc 100644
--- a/MacDependency/MacDependency.xcodeproj/project.pbxproj
+++ b/MacDependency/MacDependency.xcodeproj/project.pbxproj
@@ -3,10 +3,11 @@
 	archiveVersion = 1;
 	classes = {
 	};
-	objectVersion = 45;
+	objectVersion = 46;
 	objects = {
 
 /* Begin PBXBuildFile section */
+		27817EA41DE0C139000AA552 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 27817EA31DE0C139000AA552 /* Images.xcassets */; };
 		8D15AC340486D014006FF6A4 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A7FEA54F5311CA2CBB /* Cocoa.framework */; };
 		8E1314FA100F7BFC00367510 /* MyDocument.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8E1314F9100F7BFC00367510 /* MyDocument.mm */; };
 		8E1314FC100F7C0C00367510 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E1314FB100F7C0C00367510 /* main.m */; };
@@ -17,7 +18,7 @@
 		8E1315C5100F8F1400367510 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 8E1315C3100F8F1400367510 /* Localizable.strings */; };
 		8E212D84101212FF0078924A /* SymbolTableEntryTypeFormatter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8E212D83101212FF0078924A /* SymbolTableEntryTypeFormatter.mm */; };
 		8E49358B100A5714004B7E53 /* MachO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8E493565100A53DA004B7E53 /* MachO.framework */; };
-		8E493597100A5871004B7E53 /* MachO.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 8E493565100A53DA004B7E53 /* MachO.framework */; };
+		8E493597100A5871004B7E53 /* MachO.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 8E493565100A53DA004B7E53 /* MachO.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
 		8EAEBA2310126AB100E1D5D2 /* SymbolTableController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8EAEBA2210126AB100E1D5D2 /* SymbolTableController.mm */; };
 		8EB56272104EA241006A44CD /* TreeControllerExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EB56271104EA241006A44CD /* TreeControllerExtension.m */; };
 		8EB5640E104FE62F006A44CD /* AutoExpandOutlineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EB5640D104FE62F006A44CD /* AutoExpandOutlineView.m */; };
@@ -65,45 +66,46 @@
 /* Begin PBXFileReference section */
 		1058C7A7FEA54F5311CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = "<absolute>"; };
 		13E42FBA07B3F13500E4EEF1 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = /System/Library/Frameworks/CoreData.framework; sourceTree = "<absolute>"; };
+		27817EA31DE0C139000AA552 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
 		2A37F4C4FDCFA73011CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; };
 		2A37F4C5FDCFA73011CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = "<absolute>"; };
-		32DBCF750370BD2300C91783 /* MacDependency_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MacDependency_Prefix.pch; sourceTree = "<group>"; };
+		32DBCF750370BD2300C91783 /* MacDependency_Prefix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MacDependency_Prefix.h; sourceTree = "<group>"; };
 		8D15AC370486D014006FF6A4 /* MacDependency.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = MacDependency.app; sourceTree = BUILT_PRODUCTS_DIR; };
-		8E1314F8100F7BFC00367510 /* MyDocument.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyDocument.h; sourceTree = "<group>"; };
-		8E1314F9100F7BFC00367510 /* MyDocument.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MyDocument.mm; sourceTree = "<group>"; };
-		8E1314FB100F7C0C00367510 /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
+		8E1314F8100F7BFC00367510 /* MyDocument.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyDocument.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8E1314F9100F7BFC00367510 /* MyDocument.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MyDocument.mm; sourceTree = "<group>"; wrapsLines = 0; };
+		8E1314FB100F7C0C00367510 /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; wrapsLines = 0; };
 		8E1314FD100F7C1D00367510 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
 		8E131500100F7C3C00367510 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = English; path = English.lproj/Credits.rtf; sourceTree = "<group>"; };
-		8E131502100F7C3C00367510 /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
+		8E131502100F7C3C00367510 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
 		8E131504100F7C3C00367510 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/MainMenu.xib; sourceTree = "<group>"; };
 		8E131506100F7C3C00367510 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/MyDocument.xib; sourceTree = "<group>"; };
 		8E1315C4100F8F1400367510 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; };
-		8E212D82101212FF0078924A /* SymbolTableEntryTypeFormatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SymbolTableEntryTypeFormatter.h; sourceTree = "<group>"; };
-		8E212D83101212FF0078924A /* SymbolTableEntryTypeFormatter.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = SymbolTableEntryTypeFormatter.mm; sourceTree = "<group>"; };
+		8E212D82101212FF0078924A /* SymbolTableEntryTypeFormatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SymbolTableEntryTypeFormatter.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8E212D83101212FF0078924A /* SymbolTableEntryTypeFormatter.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = SymbolTableEntryTypeFormatter.mm; sourceTree = "<group>"; wrapsLines = 0; };
 		8E493560100A53DA004B7E53 /* MachO.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = MachO.xcodeproj; path = ../MachO/MachO.xcodeproj; sourceTree = SOURCE_ROOT; };
-		8EAEBA2110126AB100E1D5D2 /* SymbolTableController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SymbolTableController.h; sourceTree = "<group>"; };
-		8EAEBA2210126AB100E1D5D2 /* SymbolTableController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = SymbolTableController.mm; sourceTree = "<group>"; };
-		8EB56270104EA241006A44CD /* TreeControllerExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TreeControllerExtension.h; sourceTree = "<group>"; };
-		8EB56271104EA241006A44CD /* TreeControllerExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TreeControllerExtension.m; sourceTree = "<group>"; };
-		8EB56382104EF61E006A44CD /* ExtTreeModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ExtTreeModel.h; sourceTree = "<group>"; };
-		8EB5640C104FE62F006A44CD /* AutoExpandOutlineView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AutoExpandOutlineView.h; sourceTree = "<group>"; };
-		8EB5640D104FE62F006A44CD /* AutoExpandOutlineView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AutoExpandOutlineView.m; sourceTree = "<group>"; };
-		8EC4F15E10400F02001F9FB8 /* ArchitecturesController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ArchitecturesController.h; sourceTree = "<group>"; };
-		8EC4F15F10400F02001F9FB8 /* ArchitecturesController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ArchitecturesController.mm; sourceTree = "<group>"; };
-		8EC4F1681040126A001F9FB8 /* ArchitectureModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ArchitectureModel.h; sourceTree = "<group>"; };
-		8EC4F1691040126A001F9FB8 /* ArchitectureModel.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ArchitectureModel.mm; sourceTree = "<group>"; };
-		8ECFE3441061192D00685EDF /* PrioritySplitViewDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PrioritySplitViewDelegate.h; sourceTree = "<group>"; };
-		8ECFE3451061192D00685EDF /* PrioritySplitViewDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PrioritySplitViewDelegate.m; sourceTree = "<group>"; };
-		8ED32F46100B68FF00EBF623 /* MachOModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MachOModel.h; sourceTree = "<group>"; };
-		8ED32F47100B68FF00EBF623 /* MachOModel.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MachOModel.mm; sourceTree = "<group>"; };
-		8ED330CC100BD19800EBF623 /* SymbolTableEntryModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SymbolTableEntryModel.h; sourceTree = "<group>"; };
-		8ED330CD100BD19800EBF623 /* SymbolTableEntryModel.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = SymbolTableEntryModel.mm; sourceTree = "<group>"; };
-		8ED4567910516D6200FAC99F /* MyDocumentWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyDocumentWindow.h; sourceTree = "<group>"; };
-		8ED4567A10516D6200FAC99F /* MyDocumentWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyDocumentWindow.m; sourceTree = "<group>"; };
-		8EFDEF78101007B300E4D54D /* ConversionStdString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ConversionStdString.h; sourceTree = "<group>"; };
-		8EFDEF79101007B300E4D54D /* ConversionStdString.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ConversionStdString.mm; sourceTree = "<group>"; };
-		8EFDEF9110100F1700E4D54D /* VersionFormatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VersionFormatter.h; sourceTree = "<group>"; };
-		8EFDEF9210100F1700E4D54D /* VersionFormatter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VersionFormatter.m; sourceTree = "<group>"; };
+		8EAEBA2110126AB100E1D5D2 /* SymbolTableController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SymbolTableController.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8EAEBA2210126AB100E1D5D2 /* SymbolTableController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = SymbolTableController.mm; sourceTree = "<group>"; wrapsLines = 0; };
+		8EB56270104EA241006A44CD /* TreeControllerExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TreeControllerExtension.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8EB56271104EA241006A44CD /* TreeControllerExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TreeControllerExtension.m; sourceTree = "<group>"; wrapsLines = 0; };
+		8EB56382104EF61E006A44CD /* ExtTreeModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ExtTreeModel.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8EB5640C104FE62F006A44CD /* AutoExpandOutlineView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AutoExpandOutlineView.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8EB5640D104FE62F006A44CD /* AutoExpandOutlineView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AutoExpandOutlineView.m; sourceTree = "<group>"; wrapsLines = 0; };
+		8EC4F15E10400F02001F9FB8 /* ArchitecturesController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ArchitecturesController.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8EC4F15F10400F02001F9FB8 /* ArchitecturesController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ArchitecturesController.mm; sourceTree = "<group>"; wrapsLines = 0; };
+		8EC4F1681040126A001F9FB8 /* ArchitectureModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ArchitectureModel.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8EC4F1691040126A001F9FB8 /* ArchitectureModel.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ArchitectureModel.mm; sourceTree = "<group>"; wrapsLines = 0; };
+		8ECFE3441061192D00685EDF /* PrioritySplitViewDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PrioritySplitViewDelegate.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8ECFE3451061192D00685EDF /* PrioritySplitViewDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PrioritySplitViewDelegate.m; sourceTree = "<group>"; wrapsLines = 0; };
+		8ED32F46100B68FF00EBF623 /* MachOModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MachOModel.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8ED32F47100B68FF00EBF623 /* MachOModel.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MachOModel.mm; sourceTree = "<group>"; wrapsLines = 0; };
+		8ED330CC100BD19800EBF623 /* SymbolTableEntryModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SymbolTableEntryModel.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8ED330CD100BD19800EBF623 /* SymbolTableEntryModel.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = SymbolTableEntryModel.mm; sourceTree = "<group>"; wrapsLines = 0; };
+		8ED4567910516D6200FAC99F /* MyDocumentWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyDocumentWindow.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8ED4567A10516D6200FAC99F /* MyDocumentWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyDocumentWindow.m; sourceTree = "<group>"; wrapsLines = 0; };
+		8EFDEF78101007B300E4D54D /* ConversionStdString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ConversionStdString.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8EFDEF79101007B300E4D54D /* ConversionStdString.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ConversionStdString.mm; sourceTree = "<group>"; wrapsLines = 0; };
+		8EFDEF9110100F1700E4D54D /* VersionFormatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VersionFormatter.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8EFDEF9210100F1700E4D54D /* VersionFormatter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VersionFormatter.m; sourceTree = "<group>"; wrapsLines = 0; };
 /* End PBXFileReference section */
 
 /* Begin PBXFrameworksBuildPhase section */
@@ -122,7 +124,6 @@
 		1058C7A6FEA54F5311CA2CBB /* Linked Frameworks */ = {
 			isa = PBXGroup;
 			children = (
-				8E493560100A53DA004B7E53 /* MachO.xcodeproj */,
 				1058C7A7FEA54F5311CA2CBB /* Cocoa.framework */,
 			);
 			name = "Linked Frameworks";
@@ -149,6 +150,7 @@
 		2A37F4AAFDCFA73011CA2CEA /* MacDependency */ = {
 			isa = PBXGroup;
 			children = (
+				8E493560100A53DA004B7E53 /* MachO.xcodeproj */,
 				2A37F4ABFDCFA73011CA2CEA /* Classes */,
 				2A37F4AFFDCFA73011CA2CEA /* Other Sources */,
 				2A37F4B8FDCFA73011CA2CEA /* Resources */,
@@ -196,7 +198,7 @@
 			isa = PBXGroup;
 			children = (
 				8E1314FB100F7C0C00367510 /* main.m */,
-				32DBCF750370BD2300C91783 /* MacDependency_Prefix.pch */,
+				32DBCF750370BD2300C91783 /* MacDependency_Prefix.h */,
 			);
 			name = "Other Sources";
 			sourceTree = "<group>";
@@ -204,6 +206,7 @@
 		2A37F4B8FDCFA73011CA2CEA /* Resources */ = {
 			isa = PBXGroup;
 			children = (
+				27817EA31DE0C139000AA552 /* Images.xcassets */,
 				8E1314FF100F7C3C00367510 /* Credits.rtf */,
 				8E131501100F7C3C00367510 /* InfoPlist.strings */,
 				8E131503100F7C3C00367510 /* MainMenu.xib */,
@@ -260,10 +263,11 @@
 		2A37F4A9FDCFA73011CA2CEA /* Project object */ = {
 			isa = PBXProject;
 			attributes = {
+				LastUpgradeCheck = 0810;
 				ORGANIZATIONNAME = "Konrad Windszus";
 			};
 			buildConfigurationList = C05733CB08A9546B00998B17 /* Build configuration list for PBXProject "MacDependency" */;
-			compatibilityVersion = "Xcode 3.1";
+			compatibilityVersion = "Xcode 3.2";
 			developmentRegion = English;
 			hasScannedForEncodings = 1;
 			knownRegions = (
@@ -302,6 +306,7 @@
 				8E131507100F7C3C00367510 /* Credits.rtf in Resources */,
 				8E131508100F7C3C00367510 /* InfoPlist.strings in Resources */,
 				8E131509100F7C3C00367510 /* MainMenu.xib in Resources */,
+				27817EA41DE0C139000AA552 /* Images.xcassets in Resources */,
 				8E13150A100F7C3C00367510 /* MyDocument.xib in Resources */,
 				8E1315C5100F8F1400367510 /* Localizable.strings in Resources */,
 			);
@@ -388,54 +393,56 @@
 		C05733C808A9546B00998B17 /* Debug */ = {
 			isa = XCBuildConfiguration;
 			buildSettings = {
-				ALWAYS_SEARCH_USER_PATHS = NO;
-				ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
+				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+				CLANG_ENABLE_OBJC_ARC = YES;
 				COPY_PHASE_STRIP = NO;
-				FRAMEWORK_SEARCH_PATHS = (
-					"$(inherited)",
-					"\"$(SRCROOT)/../MachO/build/Debug\"",
-				);
 				GCC_DYNAMIC_NO_PIC = NO;
 				GCC_ENABLE_FIX_AND_CONTINUE = YES;
 				GCC_MODEL_TUNING = G5;
 				GCC_OPTIMIZATION_LEVEL = 0;
-				GCC_PRECOMPILE_PREFIX_HEADER = YES;
-				GCC_PREFIX_HEADER = MacDependency_Prefix.pch;
 				INFOPLIST_FILE = Info.plist;
-				INSTALL_PATH = "$(HOME)/Applications";
+				PRODUCT_BUNDLE_IDENTIFIER = "com.googlecode.${PRODUCT_NAME:identifier}";
 				PRODUCT_NAME = MacDependency;
-				SDKROOT = macosx10.6;
+				SDKROOT = macosx;
 			};
 			name = Debug;
 		};
 		C05733C908A9546B00998B17 /* Release */ = {
 			isa = XCBuildConfiguration;
 			buildSettings = {
-				ALWAYS_SEARCH_USER_PATHS = NO;
-				ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
+				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+				CLANG_ENABLE_OBJC_ARC = YES;
 				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
-				FRAMEWORK_SEARCH_PATHS = (
-					"$(inherited)",
-					"\"$(SRCROOT)/../MachO/build/Release\"",
-				);
 				GCC_MODEL_TUNING = G5;
-				GCC_PRECOMPILE_PREFIX_HEADER = YES;
-				GCC_PREFIX_HEADER = MacDependency_Prefix.pch;
 				INFOPLIST_FILE = Info.plist;
-				INSTALL_PATH = "$(HOME)/Applications";
+				PRODUCT_BUNDLE_IDENTIFIER = "com.googlecode.${PRODUCT_NAME:identifier}";
 				PRODUCT_NAME = MacDependency;
-				SDKROOT = macosx10.6;
+				SDKROOT = macosx;
 			};
 			name = Release;
 		};
 		C05733CC08A9546B00998B17 /* Debug */ = {
 			isa = XCBuildConfiguration;
 			buildSettings = {
-				ARCHS = "$(ARCHS_STANDARD_32_BIT)";
+				CLANG_CXX_LANGUAGE_STANDARD = "c++0x";
+				CLANG_CXX_LIBRARY = "libc++";
+				CLANG_WARN_BOOL_CONVERSION = YES;
+				CLANG_WARN_CONSTANT_CONVERSION = YES;
+				CLANG_WARN_EMPTY_BODY = YES;
+				CLANG_WARN_ENUM_CONVERSION = YES;
+				CLANG_WARN_INFINITE_RECURSION = YES;
+				CLANG_WARN_INT_CONVERSION = YES;
+				CLANG_WARN_SUSPICIOUS_MOVE = YES;
+				CLANG_WARN_UNREACHABLE_CODE = YES;
+				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+				ENABLE_STRICT_OBJC_MSGSEND = YES;
+				ENABLE_TESTABILITY = YES;
 				GCC_C_LANGUAGE_STANDARD = c99;
+				GCC_NO_COMMON_BLOCKS = YES;
 				GCC_OPTIMIZATION_LEVEL = 0;
+				GCC_PRECOMPILE_PREFIX_HEADER = YES;
+				GCC_PREFIX_HEADER = MacDependency_Prefix.h;
 				GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS = YES;
-				GCC_VERSION = "";
 				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
 				GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES;
 				GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
@@ -447,28 +454,45 @@
 				GCC_WARN_SHADOW = YES;
 				GCC_WARN_STRICT_SELECTOR_MATCH = YES;
 				GCC_WARN_UNDECLARED_SELECTOR = YES;
+				GCC_WARN_UNINITIALIZED_AUTOS = YES;
 				GCC_WARN_UNUSED_FUNCTION = YES;
 				GCC_WARN_UNUSED_LABEL = YES;
 				GCC_WARN_UNUSED_VALUE = YES;
 				GCC_WARN_UNUSED_VARIABLE = YES;
-				MACOSX_DEPLOYMENT_TARGET = 10.5;
+				HEADER_SEARCH_PATHS = /opt/local/include;
+				MACOSX_DEPLOYMENT_TARGET = 10.7;
 				ONLY_ACTIVE_ARCH = YES;
 				PREBINDING = NO;
-				SDKROOT = macosx10.5;
+				SDKROOT = macosx;
 			};
 			name = Debug;
 		};
 		C05733CD08A9546B00998B17 /* Release */ = {
 			isa = XCBuildConfiguration;
 			buildSettings = {
-				ARCHS = "$(ARCHS_STANDARD_32_BIT)";
+				CLANG_CXX_LANGUAGE_STANDARD = "c++0x";
+				CLANG_CXX_LIBRARY = "libc++";
+				CLANG_WARN_BOOL_CONVERSION = YES;
+				CLANG_WARN_CONSTANT_CONVERSION = YES;
+				CLANG_WARN_EMPTY_BODY = YES;
+				CLANG_WARN_ENUM_CONVERSION = YES;
+				CLANG_WARN_INFINITE_RECURSION = YES;
+				CLANG_WARN_INT_CONVERSION = YES;
+				CLANG_WARN_SUSPICIOUS_MOVE = YES;
+				CLANG_WARN_UNREACHABLE_CODE = YES;
+				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+				ENABLE_STRICT_OBJC_MSGSEND = YES;
 				GCC_C_LANGUAGE_STANDARD = c99;
-				GCC_VERSION = "";
+				GCC_NO_COMMON_BLOCKS = YES;
+				GCC_PRECOMPILE_PREFIX_HEADER = YES;
+				GCC_PREFIX_HEADER = MacDependency_Prefix.h;
 				GCC_WARN_ABOUT_RETURN_TYPE = YES;
+				GCC_WARN_UNINITIALIZED_AUTOS = YES;
 				GCC_WARN_UNUSED_VARIABLE = YES;
-				MACOSX_DEPLOYMENT_TARGET = 10.5;
+				HEADER_SEARCH_PATHS = /opt/local/include;
+				MACOSX_DEPLOYMENT_TARGET = 10.7;
 				PREBINDING = NO;
-				SDKROOT = macosx10.5;
+				SDKROOT = macosx;
 			};
 			name = Release;
 		};
diff --git a/MacDependency/MacDependency.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/MacDependency/MacDependency.xcodeproj/project.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 0000000..919434a
--- /dev/null
+++ b/MacDependency/MacDependency.xcodeproj/project.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<Workspace
+   version = "1.0">
+   <FileRef
+      location = "self:">
+   </FileRef>
+</Workspace>
diff --git a/MacDependency/MacDependency.xcodeproj/xcshareddata/xcschemes/MacDependency.xcscheme b/MacDependency/MacDependency.xcodeproj/xcshareddata/xcschemes/MacDependency.xcscheme
new file mode 100644
index 0000000..f3ddab0
--- /dev/null
+++ b/MacDependency/MacDependency.xcodeproj/xcshareddata/xcschemes/MacDependency.xcscheme
@@ -0,0 +1,91 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<Scheme
+   LastUpgradeVersion = "0810"
+   version = "1.3">
+   <BuildAction
+      parallelizeBuildables = "YES"
+      buildImplicitDependencies = "YES">
+      <BuildActionEntries>
+         <BuildActionEntry
+            buildForTesting = "YES"
+            buildForRunning = "YES"
+            buildForProfiling = "YES"
+            buildForArchiving = "YES"
+            buildForAnalyzing = "YES">
+            <BuildableReference
+               BuildableIdentifier = "primary"
+               BlueprintIdentifier = "8D15AC270486D014006FF6A4"
+               BuildableName = "MacDependency.app"
+               BlueprintName = "MacDependency"
+               ReferencedContainer = "container:MacDependency.xcodeproj">
+            </BuildableReference>
+         </BuildActionEntry>
+      </BuildActionEntries>
+   </BuildAction>
+   <TestAction
+      buildConfiguration = "Debug"
+      selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
+      selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
+      shouldUseLaunchSchemeArgsEnv = "YES">
+      <Testables>
+      </Testables>
+      <MacroExpansion>
+         <BuildableReference
+            BuildableIdentifier = "primary"
+            BlueprintIdentifier = "8D15AC270486D014006FF6A4"
+            BuildableName = "MacDependency.app"
+            BlueprintName = "MacDependency"
+            ReferencedContainer = "container:MacDependency.xcodeproj">
+         </BuildableReference>
+      </MacroExpansion>
+      <AdditionalOptions>
+      </AdditionalOptions>
+   </TestAction>
+   <LaunchAction
+      buildConfiguration = "Debug"
+      selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
+      selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
+      launchStyle = "0"
+      useCustomWorkingDirectory = "NO"
+      ignoresPersistentStateOnLaunch = "NO"
+      debugDocumentVersioning = "YES"
+      debugServiceExtension = "internal"
+      allowLocationSimulation = "YES">
+      <BuildableProductRunnable
+         runnableDebuggingMode = "0">
+         <BuildableReference
+            BuildableIdentifier = "primary"
+            BlueprintIdentifier = "8D15AC270486D014006FF6A4"
+            BuildableName = "MacDependency.app"
+            BlueprintName = "MacDependency"
+            ReferencedContainer = "container:MacDependency.xcodeproj">
+         </BuildableReference>
+      </BuildableProductRunnable>
+      <AdditionalOptions>
+      </AdditionalOptions>
+   </LaunchAction>
+   <ProfileAction
+      buildConfiguration = "Release"
+      shouldUseLaunchSchemeArgsEnv = "YES"
+      savedToolIdentifier = ""
+      useCustomWorkingDirectory = "NO"
+      debugDocumentVersioning = "YES">
+      <BuildableProductRunnable
+         runnableDebuggingMode = "0">
+         <BuildableReference
+            BuildableIdentifier = "primary"
+            BlueprintIdentifier = "8D15AC270486D014006FF6A4"
+            BuildableName = "MacDependency.app"
+            BlueprintName = "MacDependency"
+            ReferencedContainer = "container:MacDependency.xcodeproj">
+         </BuildableReference>
+      </BuildableProductRunnable>
+   </ProfileAction>
+   <AnalyzeAction
+      buildConfiguration = "Debug">
+   </AnalyzeAction>
+   <ArchiveAction
+      buildConfiguration = "Release"
+      revealArchiveInOrganizer = "YES">
+   </ArchiveAction>
+</Scheme>
diff --git a/MacDependency/MacDependency_Prefix.h b/MacDependency/MacDependency_Prefix.h
new file mode 100644
index 0000000..cf3e7d1
--- /dev/null
+++ b/MacDependency/MacDependency_Prefix.h
@@ -0,0 +1,22 @@
+//
+// Prefix header for all source files of the 'MacDependency' target in the 'MacDependency' project
+//
+
+#ifdef __OBJC__
+    #import <Cocoa/Cocoa.h>
+#endif
+
+#ifdef __cplusplus
+
+#include <string>
+#include <vector>
+#include <sstream>
+#include <fstream>
+#include <list>
+#include <assert.h>
+#include <map>
+
+#include <mach-o/loader.h>
+#include <mach-o/nlist.h>
+
+#endif
diff --git a/MacDependency/MacDependency_Prefix.pch b/MacDependency/MacDependency_Prefix.pch
deleted file mode 100644
index 838f633..0000000
--- a/MacDependency/MacDependency_Prefix.pch
+++ /dev/null
@@ -1,7 +0,0 @@
-//
-// Prefix header for all source files of the 'MacDependency' target in the 'MacDependency' project
-//
-
-#ifdef __OBJC__
-    #import <Cocoa/Cocoa.h>
-#endif
diff --git a/MacDependency/MachOModel.h b/MacDependency/MachOModel.h
index 1c4a9cf..2c8ace4 100644
--- a/MacDependency/MachOModel.h
+++ b/MacDependency/MachOModel.h
@@ -15,7 +15,7 @@
 
 @class MyDocument;
 
-typedef enum State{
+enum State {
 	StateNormal,
 	StateWarning,
 	StateError
diff --git a/MacDependency/MachOModel.mm b/MacDependency/MachOModel.mm
index a6faf5f..5bb3178 100644
--- a/MacDependency/MachOModel.mm
+++ b/MacDependency/MachOModel.mm
@@ -30,7 +30,7 @@
 
 - (id) initWithFile:(MachO*)aFile document:(MyDocument*)aDocument architecture:(MachOArchitecture*)anArchitecture loadChildren:(BOOL)loadChildren {
 	state = StateNormal;
-	[self initWithFile:aFile command:nil document:aDocument parent:nil architecture:anArchitecture];
+	if (!(self = [self initWithFile:aFile command:nil document:aDocument parent:nil architecture:anArchitecture])) return nil;
 	if (loadChildren) {
 		[self initChildren];
 	}
@@ -40,8 +40,8 @@
 // called by initChildren (calls initWithFile internally)
 - (id) initWithFilename:(std::string&)filename command:(DylibCommand*)aCommand document:(MyDocument*)aDocument parent:(MachOModel*)aParent {
 	BOOL isWeakReference = (command && !command->isNecessary());
-    MachO* aFile;
-    MachOArchitecture* anArchitecture;
+    MachO* aFile = nullptr;
+    MachOArchitecture* anArchitecture = nullptr;
     state = StateNormal;
 	try {
 		aFile = [aDocument cache]->getFile(filename, aParent->file); // throws exception in case file is not found
@@ -59,7 +59,7 @@
 		// distinguish between weak and strong. In both cases append to tree with a status color				
 	}
 	[aDocument incrementNumDependencies];
-	[self initWithFile:aFile command:aCommand document:aDocument parent:aParent architecture:anArchitecture];
+	if (!(self = [self initWithFile:aFile command:aCommand document:aDocument parent:aParent architecture:anArchitecture])) return nil;
 	return self;
 }				 
 
@@ -82,10 +82,6 @@
 	} return self;
 }
 
-- (void)dealloc {
-	[children release];
-	[super dealloc];
-}
 
 - (void) setStateWithWarning:(BOOL)isWarning {
 	State newState = StateError;
@@ -139,7 +135,6 @@
 	}
 	
 	// TODO: check for relative paths, since they can lead to problems
-	[versionFormatter release];
 } 
 
 - (NSArray*)children {
@@ -152,7 +147,6 @@
 - (void) initChildren {
 	// TODO: tweak capacity
 	children = [NSMutableArray arrayWithCapacity:20];
-	[children retain];
 	if (architecture) {
 		std::string workingDirectory = [[document workingDirectory] stdString];
 		for (MachOArchitecture::LoadCommandsConstIterator it = architecture->getLoadCommandsBegin();
@@ -164,11 +158,8 @@
 			DylibCommand* dylibCommand = dynamic_cast<DylibCommand*> (childLoadCommand);
 			if (dylibCommand != NULL && !dylibCommand->isId()) {
 				std::string filename = architecture->getResolvedName(dylibCommand->getName(), workingDirectory);
-				
-				MachOModel* child = [MachOModel alloc];
-				[children addObject:child]; // must add children before initializing them, because in init we rely on parent children being correct					 
-				[child initWithFilename:filename command:dylibCommand document:document parent:self];
-				[child release];
+
+        [children addObject: [[MachOModel alloc] initWithFilename: filename command: dylibCommand document: document parent: self]];
 			}
 		}
 	}
@@ -211,12 +202,9 @@
 }
 
 - (NSNumber*) size {
-	NSNumber* size = [NSNumber alloc];
-	if (file)
-		[size initWithUnsignedLongLong:file->getSize()];
-	else 
-		[size initWithInt:0];
-	return size;
+  if (file != nullptr)
+    return @(file->getSize());
+  return @(0);
 }
 
 - (NSString*) name {
@@ -285,7 +273,6 @@
 				[architectures addObject:currentArchitecture]; // insert at end
 			}
 			
-			[currentArchitecture release];
 		}
 	}
 	return  architectures;
diff --git a/MacDependency/MyDocument.mm b/MacDependency/MyDocument.mm
index 4e0356c..a9f4c52 100644
--- a/MacDependency/MyDocument.mm
+++ b/MacDependency/MyDocument.mm
@@ -43,10 +43,6 @@
 - (void) dealloc
 {
 	delete cache;
-	[splitViewDelegate release];
-	[contents release];
-	[log release];
-	[super dealloc];
 }
 
 
@@ -123,15 +119,12 @@
 }
 
 - (void)setLog:(NSAttributedString *)newLog {
-	[newLog retain];
-	[log release];
 	log = newLog;
 }
 
 - (void)clearLog {
 	NSAttributedString* newLog = [[NSAttributedString alloc] initWithString:@""];
 	[self setLog:newLog];
-	[newLog release];
 }
 
 - (void)appendLogLine:(NSString *)line withModel:(MachOModel*)model state:(State)state {
@@ -160,9 +153,7 @@
 	NSAttributedString* newLogLine = [[NSAttributedString alloc]initWithString:newLine attributes:attributes];
 	
 	[newLog appendAttributedString:newLogLine];
-	[newLogLine release];
 	[self setLog:newLog];
-	[newLog release];
 }
 
 - (NSString*) workingDirectory {
@@ -175,13 +166,13 @@
 - (NSString*) serializeIndexPath:(NSIndexPath*)indexPath {
 	NSMutableString* link = [NSMutableString stringWithCapacity:20];
 	for (int depth = 0; depth < [indexPath length]; depth++) {
-		[link appendFormat:@"%d;", [indexPath indexAtPosition:depth]];
+		[link appendFormat: @"%ld;", [indexPath indexAtPosition: depth]];
 	}
 	return link;
 }
 
 - (NSIndexPath*) deserializeIndexPath:(NSString*)link {
-	NSIndexPath* indexPath;
+	NSIndexPath* indexPath = nil;
 	
 	// tokenize string
 	NSArray* indices = [link componentsSeparatedByString:@";"];
@@ -190,7 +181,7 @@
 	NSEnumerator *enumerator = [indices objectEnumerator];
 	NSString* token = [enumerator nextObject];
 	if (token) {
-		indexPath = [NSIndexPath indexPathWithIndex:[token intValue]];
+		indexPath = [NSIndexPath indexPathWithIndex: [token intValue]];
 		while ((token = [enumerator nextObject])) {
 			if ([token length] > 0)
 				indexPath = [indexPath indexPathByAddingIndex:[token intValue]];
@@ -202,7 +193,7 @@
 
 // delegate method 
 - (BOOL)textView:(NSTextView *)aTextView clickedOnLink:(id)link atIndex:(NSUInteger)charIndex {
-	[dependenciesController setSelectedObject:link];
+	[dependenciesController setSelectedObject: link];
 	
 	// we need no further processing of the link
 	return YES;
@@ -232,7 +223,6 @@
 				[architectures addObject:currentArchitecture]; // insert at end
 			}
 			
-			[currentArchitecture release];
 		}
 	}
 	return  architectures;
@@ -241,8 +231,7 @@
 - (IBAction)clickRevealInFinder:(id)sender {
 	NSString* filename = [textFieldFilename stringValue];
 	
-	[[NSWorkspace sharedWorkspace] selectFile:filename 
-					 inFileViewerRootedAtPath:nil];
+	[[NSWorkspace sharedWorkspace] selectFile: filename inFileViewerRootedAtPath: @""];
 
 }
 
diff --git a/MacDependency/PrioritySplitViewDelegate.h b/MacDependency/PrioritySplitViewDelegate.h
index e1a4e2d..b2670a1 100644
--- a/MacDependency/PrioritySplitViewDelegate.h
+++ b/MacDependency/PrioritySplitViewDelegate.h
@@ -8,7 +8,7 @@
 
 #import <Cocoa/Cocoa.h>
 
-@interface PrioritySplitViewDelegate : NSObject
+@interface PrioritySplitViewDelegate : NSObject <NSSplitViewDelegate>
 {
 	NSMutableDictionary *lengthsByViewIndex;
 	NSMutableDictionary *viewIndicesByPriority;
diff --git a/MacDependency/SymbolTableController.h b/MacDependency/SymbolTableController.h
index ae99116..f271124 100644
--- a/MacDependency/SymbolTableController.h
+++ b/MacDependency/SymbolTableController.h
@@ -6,7 +6,6 @@
 //  Copyright 2009 Konrad Windszus. All rights reserved.
 //
 
-#import <Cocoa/Cocoa.h>
 @class MyDocument;
 
 @interface SymbolTableController : NSArrayController {
@@ -24,6 +23,6 @@
 
 - (BOOL)demangleNames;
 - (BOOL*)demangleNamesPtr;
-- (void)setDemangleNames:(BOOL)demangleNames;
+- (void)setDemangleNames:(BOOL)demangle;
 
 @end
diff --git a/MacDependency/SymbolTableController.mm b/MacDependency/SymbolTableController.mm
index 2b6f819..e023faf 100644
--- a/MacDependency/SymbolTableController.mm
+++ b/MacDependency/SymbolTableController.mm
@@ -63,8 +63,6 @@ const int TYPE[] = {SymbolTableEntry::TypeExported, SymbolTableEntry::TypeImport
 
 
 - (void)setNameFilter:(NSPredicate*) newNameFilter {
-	[newNameFilter retain];
-	[nameFilter release];
 	nameFilter = newNameFilter;
 	[self setFilter];
 }
@@ -93,8 +91,8 @@ const int TYPE[] = {SymbolTableEntry::TypeExported, SymbolTableEntry::TypeImport
 	return &demangleNames;
 }
 
-- (void)setDemangleNames:(BOOL)demangleNames {
-	self->demangleNames = demangleNames;
+- (void)setDemangleNames:(BOOL)demangle {
+	self->demangleNames = demangle;
 	
 	// refresh
 	[self rearrangeObjects];
diff --git a/MacDependency/SymbolTableEntryModel.mm b/MacDependency/SymbolTableEntryModel.mm
index 3e8aa98..ecf9a7e 100644
--- a/MacDependency/SymbolTableEntryModel.mm
+++ b/MacDependency/SymbolTableEntryModel.mm
@@ -14,11 +14,11 @@
 
 @implementation SymbolTableEntryModel
 
-- (id) initWithEntry:(const SymbolTableEntry*)anEntry demangleNamesPtr:(BOOL*)demangleNames document:(MyDocument*)aDocument {
+- (id) initWithEntry:(const SymbolTableEntry*)anEntry demangleNamesPtr:(BOOL*)demangle document:(MyDocument*)aDocument {
 	self = [super init];
     if (self) {
 		entry = anEntry;
-		self->demangleNames = demangleNames;
+		self->demangleNames = demangle;
 		document = aDocument;
 	}
 	return self;
@@ -26,7 +26,7 @@
 
 - (NSString*) name {
 	try {
-		return [NSString stringWithStdString:entry->getName(*demangleNames)];
+		return [NSString stringWithStdString: entry->getName(*demangleNames)];
 	} catch (MachODemangleException& e) {
         // in case of demangling problems (probably c++filt not installed)
 		NSString* error = NSLocalizedString(@"ERR_NO_DEMANGLER", nil);
diff --git a/MachO/Info.plist b/MachO/Info.plist
index 453407b..5c18bd9 100644
--- a/MachO/Info.plist
+++ b/MachO/Info.plist
@@ -6,14 +6,14 @@
 	<string>English</string>
 	<key>CFBundleExecutable</key>
 	<string>${EXECUTABLE_NAME}</string>
-	<key>CFBundleName</key>
-	<string>${PRODUCT_NAME}</string>
 	<key>CFBundleIconFile</key>
 	<string></string>
 	<key>CFBundleIdentifier</key>
-	<string>com.googlecode.${PRODUCT_NAME:identifier}</string>
+	<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
 	<key>CFBundleInfoDictionaryVersion</key>
 	<string>6.0</string>
+	<key>CFBundleName</key>
+	<string>${PRODUCT_NAME}</string>
 	<key>CFBundlePackageType</key>
 	<string>FMWK</string>
 	<key>CFBundleSignature</key>
diff --git a/MachO/MachO.xcodeproj/project.pbxproj b/MachO/MachO.xcodeproj/project.pbxproj
index 2ca3747..94a44fa 100644
--- a/MachO/MachO.xcodeproj/project.pbxproj
+++ b/MachO/MachO.xcodeproj/project.pbxproj
@@ -3,116 +3,110 @@
 	archiveVersion = 1;
 	classes = {
 	};
-	objectVersion = 45;
+	objectVersion = 46;
 	objects = {
 
 /* Begin PBXBuildFile section */
 		8DC2EF530486A6940098B216 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C1666FE841158C02AAC07 /* InfoPlist.strings */; };
-		8E131535100F7C6B00367510 /* demangler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E131512100F7C6B00367510 /* demangler.cpp */; };
-		8E131536100F7C6B00367510 /* demangler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E131513100F7C6B00367510 /* demangler.h */; settings = {ATTRIBUTES = (); }; };
-		8E131537100F7C6B00367510 /* dylibcommand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E131514100F7C6B00367510 /* dylibcommand.cpp */; };
+		8E131537100F7C6B00367510 /* dylibcommand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E131514100F7C6B00367510 /* dylibcommand.cpp */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
 		8E131538100F7C6B00367510 /* dylibcommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E131515100F7C6B00367510 /* dylibcommand.h */; settings = {ATTRIBUTES = (Public, ); }; };
-		8E131539100F7C6B00367510 /* dynamicloader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E131516100F7C6B00367510 /* dynamicloader.cpp */; };
+		8E131539100F7C6B00367510 /* dynamicloader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E131516100F7C6B00367510 /* dynamicloader.cpp */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
 		8E13153A100F7C6B00367510 /* dynamicloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E131517100F7C6B00367510 /* dynamicloader.h */; };
-		8E13153B100F7C6B00367510 /* genericcommand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E131518100F7C6B00367510 /* genericcommand.cpp */; };
+		8E13153B100F7C6B00367510 /* genericcommand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E131518100F7C6B00367510 /* genericcommand.cpp */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
 		8E13153C100F7C6B00367510 /* genericcommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E131519100F7C6B00367510 /* genericcommand.h */; settings = {ATTRIBUTES = (Public, ); }; };
-		8E13153D100F7C6B00367510 /* internalfile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E13151A100F7C6B00367510 /* internalfile.cpp */; };
+		8E13153D100F7C6B00367510 /* internalfile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E13151A100F7C6B00367510 /* internalfile.cpp */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
 		8E13153E100F7C6B00367510 /* internalfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E13151B100F7C6B00367510 /* internalfile.h */; };
-		8E13153F100F7C6B00367510 /* loadcommand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E13151C100F7C6B00367510 /* loadcommand.cpp */; };
+		8E13153F100F7C6B00367510 /* loadcommand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E13151C100F7C6B00367510 /* loadcommand.cpp */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
 		8E131540100F7C6B00367510 /* loadcommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E13151D100F7C6B00367510 /* loadcommand.h */; settings = {ATTRIBUTES = (Public, ); }; };
-		8E131541100F7C6B00367510 /* macho.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E13151E100F7C6B00367510 /* macho.cpp */; };
+		8E131541100F7C6B00367510 /* macho.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E13151E100F7C6B00367510 /* macho.cpp */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
 		8E131542100F7C6B00367510 /* macho.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E13151F100F7C6B00367510 /* macho.h */; settings = {ATTRIBUTES = (Public, ); }; };
-		8E131543100F7C6B00367510 /* macho32header.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E131520100F7C6B00367510 /* macho32header.cpp */; };
+		8E131543100F7C6B00367510 /* macho32header.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E131520100F7C6B00367510 /* macho32header.cpp */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
 		8E131544100F7C6B00367510 /* macho32header.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E131521100F7C6B00367510 /* macho32header.h */; };
-		8E131545100F7C6B00367510 /* macho64header.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E131522100F7C6B00367510 /* macho64header.cpp */; };
+		8E131545100F7C6B00367510 /* macho64header.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E131522100F7C6B00367510 /* macho64header.cpp */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
 		8E131546100F7C6B00367510 /* macho64header.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E131523100F7C6B00367510 /* macho64header.h */; };
 		8E131547100F7C6B00367510 /* macho_global.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E131524100F7C6B00367510 /* macho_global.h */; settings = {ATTRIBUTES = (Public, ); }; };
-		8E131548100F7C6B00367510 /* machoarchitecture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E131525100F7C6B00367510 /* machoarchitecture.cpp */; };
+		8E131548100F7C6B00367510 /* machoarchitecture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E131525100F7C6B00367510 /* machoarchitecture.cpp */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
 		8E131549100F7C6B00367510 /* machoarchitecture.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E131526100F7C6B00367510 /* machoarchitecture.h */; settings = {ATTRIBUTES = (Public, ); }; };
-		8E13154A100F7C6B00367510 /* machoexception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E131527100F7C6B00367510 /* machoexception.cpp */; };
+		8E13154A100F7C6B00367510 /* machoexception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E131527100F7C6B00367510 /* machoexception.cpp */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
 		8E13154B100F7C6B00367510 /* machoexception.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E131528100F7C6B00367510 /* machoexception.h */; settings = {ATTRIBUTES = (Public, ); }; };
-		8E13154C100F7C6B00367510 /* machofile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E131529100F7C6B00367510 /* machofile.cpp */; };
+		8E13154C100F7C6B00367510 /* machofile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E131529100F7C6B00367510 /* machofile.cpp */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
 		8E13154D100F7C6B00367510 /* machofile.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E13152A100F7C6B00367510 /* machofile.h */; settings = {ATTRIBUTES = (Public, ); }; };
-		8E13154E100F7C6B00367510 /* machoheader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E13152B100F7C6B00367510 /* machoheader.cpp */; };
+		8E13154E100F7C6B00367510 /* machoheader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E13152B100F7C6B00367510 /* machoheader.cpp */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
 		8E13154F100F7C6B00367510 /* machoheader.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E13152C100F7C6B00367510 /* machoheader.h */; settings = {ATTRIBUTES = (Public, ); }; };
-		8E131550100F7C6B00367510 /* rpathcommand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E13152D100F7C6B00367510 /* rpathcommand.cpp */; };
+		8E131550100F7C6B00367510 /* rpathcommand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E13152D100F7C6B00367510 /* rpathcommand.cpp */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
 		8E131551100F7C6B00367510 /* rpathcommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E13152E100F7C6B00367510 /* rpathcommand.h */; };
-		8E131552100F7C6B00367510 /* symboltablecommand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E13152F100F7C6B00367510 /* symboltablecommand.cpp */; };
+		8E131552100F7C6B00367510 /* symboltablecommand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E13152F100F7C6B00367510 /* symboltablecommand.cpp */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
 		8E131553100F7C6B00367510 /* symboltablecommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E131530100F7C6B00367510 /* symboltablecommand.h */; settings = {ATTRIBUTES = (Public, ); }; };
-		8E131554100F7C6B00367510 /* symboltableentry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E131531100F7C6B00367510 /* symboltableentry.cpp */; };
+		8E131554100F7C6B00367510 /* symboltableentry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E131531100F7C6B00367510 /* symboltableentry.cpp */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
 		8E131555100F7C6B00367510 /* symboltableentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E131532100F7C6B00367510 /* symboltableentry.h */; settings = {ATTRIBUTES = (Public, ); }; };
-		8E131556100F7C6B00367510 /* symboltableentry32.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E131533100F7C6B00367510 /* symboltableentry32.cpp */; };
+		8E131556100F7C6B00367510 /* symboltableentry32.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E131533100F7C6B00367510 /* symboltableentry32.cpp */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
 		8E131557100F7C6B00367510 /* symboltableentry32.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E131534100F7C6B00367510 /* symboltableentry32.h */; };
-		8E131571100F7DB600367510 /* symboltableentry64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E13156F100F7DB600367510 /* symboltableentry64.cpp */; };
+		8E131571100F7DB600367510 /* symboltableentry64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E13156F100F7DB600367510 /* symboltableentry64.cpp */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
 		8E131572100F7DB600367510 /* symboltableentry64.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E131570100F7DB600367510 /* symboltableentry64.h */; };
 		8E212E93101237A50078924A /* machodemangleexception.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E212E91101237A50078924A /* machodemangleexception.h */; settings = {ATTRIBUTES = (Public, ); }; };
-		8E212E94101237A50078924A /* machodemangleexception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E212E92101237A50078924A /* machodemangleexception.cpp */; };
+		8E212E94101237A50078924A /* machodemangleexception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E212E92101237A50078924A /* machodemangleexception.cpp */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
 		8E49393F100AA468004B7E53 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8E49393E100AA468004B7E53 /* CoreFoundation.framework */; };
-		8E8C73E1106AA95D0037CF19 /* libboost_filesystem.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8E8C73DF106AA95D0037CF19 /* libboost_filesystem.a */; };
-		8E8C73E2106AA95D0037CF19 /* libboost_system.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8E8C73E0106AA95D0037CF19 /* libboost_system.a */; };
-		8EA3DFF411AFD3790093CD87 /* uuidcommand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8EA3DFF211AFD3790093CD87 /* uuidcommand.cpp */; };
+		8EA3DFF411AFD3790093CD87 /* uuidcommand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8EA3DFF211AFD3790093CD87 /* uuidcommand.cpp */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
 		8EA3DFF511AFD3790093CD87 /* uuidcommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EA3DFF311AFD3790093CD87 /* uuidcommand.h */; };
-		8EA3E17A11B12B5A0093CD87 /* dylinkercommand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8EA3E17811B12B5A0093CD87 /* dylinkercommand.cpp */; };
+		8EA3E17A11B12B5A0093CD87 /* dylinkercommand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8EA3E17811B12B5A0093CD87 /* dylinkercommand.cpp */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
 		8EA3E17B11B12B5A0093CD87 /* dylinkercommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EA3E17911B12B5A0093CD87 /* dylinkercommand.h */; };
 		8ED32FDE100B99EC00EBF623 /* machocache.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ED32FDC100B99EC00EBF623 /* machocache.h */; settings = {ATTRIBUTES = (Public, ); }; };
-		8ED32FDF100B99EC00EBF623 /* machocache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8ED32FDD100B99EC00EBF623 /* machocache.cpp */; };
+		8ED32FDF100B99EC00EBF623 /* machocache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8ED32FDD100B99EC00EBF623 /* machocache.cpp */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
 /* End PBXBuildFile section */
 
 /* Begin PBXFileReference section */
 		0867D69BFE84028FC02AAC07 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = "<absolute>"; };
 		0867D6A5FE840307C02AAC07 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; };
 		089C1667FE841158C02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
-		32DBCF5E0370ADEE00C91783 /* MachO_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MachO_Prefix.pch; sourceTree = "<group>"; };
+		32DBCF5E0370ADEE00C91783 /* MachO_Prefix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MachO_Prefix.h; sourceTree = "<group>"; wrapsLines = 0; };
 		8DC2EF5B0486A6940098B216 /* MachO.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = MachO.framework; sourceTree = BUILT_PRODUCTS_DIR; };
-		8E131512100F7C6B00367510 /* demangler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = demangler.cpp; sourceTree = "<group>"; };
-		8E131513100F7C6B00367510 /* demangler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = demangler.h; sourceTree = "<group>"; };
-		8E131514100F7C6B00367510 /* dylibcommand.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dylibcommand.cpp; sourceTree = "<group>"; };
-		8E131515100F7C6B00367510 /* dylibcommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dylibcommand.h; sourceTree = "<group>"; };
-		8E131516100F7C6B00367510 /* dynamicloader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dynamicloader.cpp; sourceTree = "<group>"; };
-		8E131517100F7C6B00367510 /* dynamicloader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dynamicloader.h; sourceTree = "<group>"; };
-		8E131518100F7C6B00367510 /* genericcommand.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = genericcommand.cpp; sourceTree = "<group>"; };
-		8E131519100F7C6B00367510 /* genericcommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = genericcommand.h; sourceTree = "<group>"; };
-		8E13151A100F7C6B00367510 /* internalfile.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = internalfile.cpp; sourceTree = "<group>"; };
-		8E13151B100F7C6B00367510 /* internalfile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = internalfile.h; sourceTree = "<group>"; };
-		8E13151C100F7C6B00367510 /* loadcommand.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = loadcommand.cpp; sourceTree = "<group>"; };
-		8E13151D100F7C6B00367510 /* loadcommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = loadcommand.h; sourceTree = "<group>"; };
-		8E13151E100F7C6B00367510 /* macho.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = macho.cpp; sourceTree = "<group>"; };
-		8E13151F100F7C6B00367510 /* macho.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = macho.h; sourceTree = "<group>"; };
-		8E131520100F7C6B00367510 /* macho32header.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = macho32header.cpp; sourceTree = "<group>"; };
-		8E131521100F7C6B00367510 /* macho32header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = macho32header.h; sourceTree = "<group>"; };
-		8E131522100F7C6B00367510 /* macho64header.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = macho64header.cpp; sourceTree = "<group>"; };
-		8E131523100F7C6B00367510 /* macho64header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = macho64header.h; sourceTree = "<group>"; };
-		8E131524100F7C6B00367510 /* macho_global.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = macho_global.h; sourceTree = "<group>"; };
-		8E131525100F7C6B00367510 /* machoarchitecture.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = machoarchitecture.cpp; sourceTree = "<group>"; };
-		8E131526100F7C6B00367510 /* machoarchitecture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = machoarchitecture.h; sourceTree = "<group>"; };
-		8E131527100F7C6B00367510 /* machoexception.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = machoexception.cpp; sourceTree = "<group>"; };
-		8E131528100F7C6B00367510 /* machoexception.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = machoexception.h; sourceTree = "<group>"; };
-		8E131529100F7C6B00367510 /* machofile.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = machofile.cpp; sourceTree = "<group>"; };
-		8E13152A100F7C6B00367510 /* machofile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = machofile.h; sourceTree = "<group>"; };
-		8E13152B100F7C6B00367510 /* machoheader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = machoheader.cpp; sourceTree = "<group>"; };
-		8E13152C100F7C6B00367510 /* machoheader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = machoheader.h; sourceTree = "<group>"; };
-		8E13152D100F7C6B00367510 /* rpathcommand.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rpathcommand.cpp; sourceTree = "<group>"; };
-		8E13152E100F7C6B00367510 /* rpathcommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rpathcommand.h; sourceTree = "<group>"; };
-		8E13152F100F7C6B00367510 /* symboltablecommand.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = symboltablecommand.cpp; sourceTree = "<group>"; };
-		8E131530100F7C6B00367510 /* symboltablecommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = symboltablecommand.h; sourceTree = "<group>"; };
-		8E131531100F7C6B00367510 /* symboltableentry.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = symboltableentry.cpp; sourceTree = "<group>"; };
-		8E131532100F7C6B00367510 /* symboltableentry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = symboltableentry.h; sourceTree = "<group>"; };
-		8E131533100F7C6B00367510 /* symboltableentry32.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = symboltableentry32.cpp; sourceTree = "<group>"; };
-		8E131534100F7C6B00367510 /* symboltableentry32.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = symboltableentry32.h; sourceTree = "<group>"; };
+		8E131514100F7C6B00367510 /* dylibcommand.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dylibcommand.cpp; sourceTree = "<group>"; wrapsLines = 0; };
+		8E131515100F7C6B00367510 /* dylibcommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dylibcommand.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8E131516100F7C6B00367510 /* dynamicloader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dynamicloader.cpp; sourceTree = "<group>"; wrapsLines = 0; };
+		8E131517100F7C6B00367510 /* dynamicloader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dynamicloader.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8E131518100F7C6B00367510 /* genericcommand.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = genericcommand.cpp; sourceTree = "<group>"; wrapsLines = 0; };
+		8E131519100F7C6B00367510 /* genericcommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = genericcommand.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8E13151A100F7C6B00367510 /* internalfile.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = internalfile.cpp; sourceTree = "<group>"; wrapsLines = 0; };
+		8E13151B100F7C6B00367510 /* internalfile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = internalfile.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8E13151C100F7C6B00367510 /* loadcommand.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = loadcommand.cpp; sourceTree = "<group>"; wrapsLines = 0; };
+		8E13151D100F7C6B00367510 /* loadcommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = loadcommand.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8E13151E100F7C6B00367510 /* macho.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = macho.cpp; sourceTree = "<group>"; wrapsLines = 0; };
+		8E13151F100F7C6B00367510 /* macho.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = macho.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8E131520100F7C6B00367510 /* macho32header.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = macho32header.cpp; sourceTree = "<group>"; wrapsLines = 0; };
+		8E131521100F7C6B00367510 /* macho32header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = macho32header.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8E131522100F7C6B00367510 /* macho64header.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = macho64header.cpp; sourceTree = "<group>"; wrapsLines = 0; };
+		8E131523100F7C6B00367510 /* macho64header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = macho64header.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8E131524100F7C6B00367510 /* macho_global.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = macho_global.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8E131525100F7C6B00367510 /* machoarchitecture.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = machoarchitecture.cpp; sourceTree = "<group>"; wrapsLines = 0; };
+		8E131526100F7C6B00367510 /* machoarchitecture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = machoarchitecture.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8E131527100F7C6B00367510 /* machoexception.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = machoexception.cpp; sourceTree = "<group>"; wrapsLines = 0; };
+		8E131528100F7C6B00367510 /* machoexception.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = machoexception.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8E131529100F7C6B00367510 /* machofile.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = machofile.cpp; sourceTree = "<group>"; wrapsLines = 0; };
+		8E13152A100F7C6B00367510 /* machofile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = machofile.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8E13152B100F7C6B00367510 /* machoheader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = machoheader.cpp; sourceTree = "<group>"; wrapsLines = 0; };
+		8E13152C100F7C6B00367510 /* machoheader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = machoheader.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8E13152D100F7C6B00367510 /* rpathcommand.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rpathcommand.cpp; sourceTree = "<group>"; wrapsLines = 0; };
+		8E13152E100F7C6B00367510 /* rpathcommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rpathcommand.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8E13152F100F7C6B00367510 /* symboltablecommand.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = symboltablecommand.cpp; sourceTree = "<group>"; wrapsLines = 0; };
+		8E131530100F7C6B00367510 /* symboltablecommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = symboltablecommand.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8E131531100F7C6B00367510 /* symboltableentry.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = symboltableentry.cpp; sourceTree = "<group>"; wrapsLines = 0; };
+		8E131532100F7C6B00367510 /* symboltableentry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = symboltableentry.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8E131533100F7C6B00367510 /* symboltableentry32.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = symboltableentry32.cpp; sourceTree = "<group>"; wrapsLines = 0; };
+		8E131534100F7C6B00367510 /* symboltableentry32.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = symboltableentry32.h; sourceTree = "<group>"; wrapsLines = 0; };
 		8E131558100F7C9200367510 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
-		8E13156F100F7DB600367510 /* symboltableentry64.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = symboltableentry64.cpp; sourceTree = "<group>"; };
-		8E131570100F7DB600367510 /* symboltableentry64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = symboltableentry64.h; sourceTree = "<group>"; };
-		8E212E91101237A50078924A /* machodemangleexception.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = machodemangleexception.h; sourceTree = "<group>"; };
-		8E212E92101237A50078924A /* machodemangleexception.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = machodemangleexception.cpp; sourceTree = "<group>"; };
+		8E13156F100F7DB600367510 /* symboltableentry64.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = symboltableentry64.cpp; sourceTree = "<group>"; wrapsLines = 0; };
+		8E131570100F7DB600367510 /* symboltableentry64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = symboltableentry64.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8E212E91101237A50078924A /* machodemangleexception.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = machodemangleexception.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8E212E92101237A50078924A /* machodemangleexception.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = machodemangleexception.cpp; sourceTree = "<group>"; wrapsLines = 0; };
 		8E49393E100AA468004B7E53 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = /System/Library/Frameworks/CoreFoundation.framework; sourceTree = "<absolute>"; };
 		8E8C73DF106AA95D0037CF19 /* libboost_filesystem.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libboost_filesystem.a; path = /usr/local/lib/static/libboost_filesystem.a; sourceTree = "<absolute>"; };
 		8E8C73E0106AA95D0037CF19 /* libboost_system.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libboost_system.a; path = /usr/local/lib/static/libboost_system.a; sourceTree = "<absolute>"; };
-		8EA3DFF211AFD3790093CD87 /* uuidcommand.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uuidcommand.cpp; sourceTree = "<group>"; };
-		8EA3DFF311AFD3790093CD87 /* uuidcommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uuidcommand.h; sourceTree = "<group>"; };
-		8EA3E17811B12B5A0093CD87 /* dylinkercommand.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dylinkercommand.cpp; sourceTree = "<group>"; };
-		8EA3E17911B12B5A0093CD87 /* dylinkercommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dylinkercommand.h; sourceTree = "<group>"; };
-		8ED32FDC100B99EC00EBF623 /* machocache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = machocache.h; sourceTree = "<group>"; };
-		8ED32FDD100B99EC00EBF623 /* machocache.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = machocache.cpp; sourceTree = "<group>"; };
+		8EA3DFF211AFD3790093CD87 /* uuidcommand.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uuidcommand.cpp; sourceTree = "<group>"; wrapsLines = 0; };
+		8EA3DFF311AFD3790093CD87 /* uuidcommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uuidcommand.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8EA3E17811B12B5A0093CD87 /* dylinkercommand.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dylinkercommand.cpp; sourceTree = "<group>"; wrapsLines = 0; };
+		8EA3E17911B12B5A0093CD87 /* dylinkercommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dylinkercommand.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8ED32FDC100B99EC00EBF623 /* machocache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = machocache.h; sourceTree = "<group>"; wrapsLines = 0; };
+		8ED32FDD100B99EC00EBF623 /* machocache.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = machocache.cpp; sourceTree = "<group>"; wrapsLines = 0; };
 		D2F7E79907B2D74100F64583 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = /System/Library/Frameworks/CoreData.framework; sourceTree = "<absolute>"; };
 /* End PBXFileReference section */
 
@@ -122,8 +116,6 @@
 			buildActionMask = 2147483647;
 			files = (
 				8E49393F100AA468004B7E53 /* CoreFoundation.framework in Frameworks */,
-				8E8C73E1106AA95D0037CF19 /* libboost_filesystem.a in Frameworks */,
-				8E8C73E2106AA95D0037CF19 /* libboost_system.a in Frameworks */,
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 		};
@@ -175,8 +167,6 @@
 				8EA3E17911B12B5A0093CD87 /* dylinkercommand.h */,
 				8EA3DFF211AFD3790093CD87 /* uuidcommand.cpp */,
 				8EA3DFF311AFD3790093CD87 /* uuidcommand.h */,
-				8E131512100F7C6B00367510 /* demangler.cpp */,
-				8E131513100F7C6B00367510 /* demangler.h */,
 				8E131514100F7C6B00367510 /* dylibcommand.cpp */,
 				8E131515100F7C6B00367510 /* dylibcommand.h */,
 				8E131516100F7C6B00367510 /* dynamicloader.cpp */,
@@ -243,7 +233,7 @@
 		32C88DFF0371C24200C91783 /* Other Sources */ = {
 			isa = PBXGroup;
 			children = (
-				32DBCF5E0370ADEE00C91783 /* MachO_Prefix.pch */,
+				32DBCF5E0370ADEE00C91783 /* MachO_Prefix.h */,
 			);
 			name = "Other Sources";
 			sourceTree = "<group>";
@@ -256,7 +246,6 @@
 			buildActionMask = 2147483647;
 			files = (
 				8ED32FDE100B99EC00EBF623 /* machocache.h in Headers */,
-				8E131536100F7C6B00367510 /* demangler.h in Headers */,
 				8E131538100F7C6B00367510 /* dylibcommand.h in Headers */,
 				8E13153A100F7C6B00367510 /* dynamicloader.h in Headers */,
 				8E13153C100F7C6B00367510 /* genericcommand.h in Headers */,
@@ -308,8 +297,11 @@
 /* Begin PBXProject section */
 		0867D690FE84028FC02AAC07 /* Project object */ = {
 			isa = PBXProject;
+			attributes = {
+				LastUpgradeCheck = 0810;
+			};
 			buildConfigurationList = 1DEB91B108733DA50010E9CD /* Build configuration list for PBXProject "MachO" */;
-			compatibilityVersion = "Xcode 3.1";
+			compatibilityVersion = "Xcode 3.2";
 			developmentRegion = English;
 			hasScannedForEncodings = 1;
 			knownRegions = (
@@ -342,7 +334,6 @@
 			buildActionMask = 2147483647;
 			files = (
 				8ED32FDF100B99EC00EBF623 /* machocache.cpp in Sources */,
-				8E131535100F7C6B00367510 /* demangler.cpp in Sources */,
 				8E131537100F7C6B00367510 /* dylibcommand.cpp in Sources */,
 				8E131539100F7C6B00367510 /* dynamicloader.cpp in Sources */,
 				8E13153B100F7C6B00367510 /* genericcommand.cpp in Sources */,
@@ -384,7 +375,7 @@
 			isa = XCBuildConfiguration;
 			buildSettings = {
 				ALWAYS_SEARCH_USER_PATHS = YES;
-				ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
+				CLANG_ENABLE_OBJC_ARC = YES;
 				COPY_PHASE_STRIP = NO;
 				DYLIB_COMPATIBILITY_VERSION = 1;
 				DYLIB_CURRENT_VERSION = 1;
@@ -394,20 +385,19 @@
 				GCC_MODEL_TUNING = G5;
 				GCC_OPTIMIZATION_LEVEL = 0;
 				GCC_PRECOMPILE_PREFIX_HEADER = YES;
-				GCC_PREFIX_HEADER = MachO_Prefix.pch;
+				GCC_PREFIX_HEADER = MachO_Prefix.h;
 				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
 				GCC_WARN_CHECK_SWITCH_STATEMENTS = YES;
 				GCC_WARN_EFFECTIVE_CPLUSPLUS_VIOLATIONS = YES;
 				GCC_WARN_INHIBIT_ALL_WARNINGS = YES;
 				GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES;
 				GCC_WARN_NON_VIRTUAL_DESTRUCTOR = YES;
-				HEADER_SEARCH_PATHS = /usr/local/include;
 				INFOPLIST_FILE = Info.plist;
 				INSTALL_PATH = "@executable_path/../Frameworks";
-				LIBRARY_SEARCH_PATHS = /usr/local/lib/static;
 				OTHER_LDFLAGS = "-Wl,-search_paths_first";
+				PRODUCT_BUNDLE_IDENTIFIER = "com.googlecode.${PRODUCT_NAME:identifier}";
 				PRODUCT_NAME = MachO;
-				SDKROOT = macosx10.6;
+				SDKROOT = macosx;
 				WRAPPER_EXTENSION = framework;
 			};
 			name = Debug;
@@ -415,7 +405,7 @@
 		1DEB91AF08733DA50010E9CD /* Release */ = {
 			isa = XCBuildConfiguration;
 			buildSettings = {
-				ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
+				CLANG_ENABLE_OBJC_ARC = YES;
 				DEAD_CODE_STRIPPING = NO;
 				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
 				DYLIB_COMPATIBILITY_VERSION = 1;
@@ -423,14 +413,13 @@
 				FRAMEWORK_VERSION = A;
 				GCC_MODEL_TUNING = G5;
 				GCC_PRECOMPILE_PREFIX_HEADER = YES;
-				GCC_PREFIX_HEADER = MachO_Prefix.pch;
-				HEADER_SEARCH_PATHS = /usr/local/include;
+				GCC_PREFIX_HEADER = MachO_Prefix.h;
 				INFOPLIST_FILE = Info.plist;
 				INSTALL_PATH = "@executable_path/../Frameworks";
-				LIBRARY_SEARCH_PATHS = /usr/local/lib/static;
 				OTHER_LDFLAGS = "-Wl,-search_paths_first";
+				PRODUCT_BUNDLE_IDENTIFIER = "com.googlecode.${PRODUCT_NAME:identifier}";
 				PRODUCT_NAME = MachO;
-				SDKROOT = macosx10.6;
+				SDKROOT = macosx;
 				WRAPPER_EXTENSION = framework;
 			};
 			name = Release;
@@ -438,28 +427,61 @@
 		1DEB91B208733DA50010E9CD /* Debug */ = {
 			isa = XCBuildConfiguration;
 			buildSettings = {
-				ARCHS = "$(ARCHS_STANDARD_32_BIT)";
+				CLANG_CXX_LANGUAGE_STANDARD = "c++0x";
+				CLANG_CXX_LIBRARY = "libc++";
+				CLANG_WARN_BOOL_CONVERSION = YES;
+				CLANG_WARN_CONSTANT_CONVERSION = YES;
+				CLANG_WARN_EMPTY_BODY = YES;
+				CLANG_WARN_ENUM_CONVERSION = YES;
+				CLANG_WARN_INFINITE_RECURSION = YES;
+				CLANG_WARN_INT_CONVERSION = YES;
+				CLANG_WARN_SUSPICIOUS_MOVE = YES;
+				CLANG_WARN_UNREACHABLE_CODE = YES;
+				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
 				DEPLOYMENT_LOCATION = NO;
-				GCC_C_LANGUAGE_STANDARD = c99;
+				ENABLE_STRICT_OBJC_MSGSEND = YES;
+				ENABLE_TESTABILITY = YES;
 				GCC_INLINES_ARE_PRIVATE_EXTERN = NO;
+				GCC_NO_COMMON_BLOCKS = YES;
 				GCC_OPTIMIZATION_LEVEL = 0;
+				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
 				GCC_WARN_ABOUT_RETURN_TYPE = YES;
+				GCC_WARN_UNDECLARED_SELECTOR = YES;
+				GCC_WARN_UNINITIALIZED_AUTOS = YES;
+				GCC_WARN_UNUSED_FUNCTION = YES;
 				GCC_WARN_UNUSED_VARIABLE = YES;
+				MACOSX_DEPLOYMENT_TARGET = 10.7;
 				ONLY_ACTIVE_ARCH = YES;
 				PREBINDING = NO;
-				SDKROOT = macosx10.5;
+				SDKROOT = macosx;
 			};
 			name = Debug;
 		};
 		1DEB91B308733DA50010E9CD /* Release */ = {
 			isa = XCBuildConfiguration;
 			buildSettings = {
-				ARCHS = "$(ARCHS_STANDARD_32_BIT)";
-				GCC_C_LANGUAGE_STANDARD = c99;
+				CLANG_CXX_LANGUAGE_STANDARD = "c++0x";
+				CLANG_CXX_LIBRARY = "libc++";
+				CLANG_WARN_BOOL_CONVERSION = YES;
+				CLANG_WARN_CONSTANT_CONVERSION = YES;
+				CLANG_WARN_EMPTY_BODY = YES;
+				CLANG_WARN_ENUM_CONVERSION = YES;
+				CLANG_WARN_INFINITE_RECURSION = YES;
+				CLANG_WARN_INT_CONVERSION = YES;
+				CLANG_WARN_SUSPICIOUS_MOVE = YES;
+				CLANG_WARN_UNREACHABLE_CODE = YES;
+				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+				ENABLE_STRICT_OBJC_MSGSEND = YES;
+				GCC_NO_COMMON_BLOCKS = YES;
+				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
 				GCC_WARN_ABOUT_RETURN_TYPE = YES;
+				GCC_WARN_UNDECLARED_SELECTOR = YES;
+				GCC_WARN_UNINITIALIZED_AUTOS = YES;
+				GCC_WARN_UNUSED_FUNCTION = YES;
 				GCC_WARN_UNUSED_VARIABLE = YES;
+				MACOSX_DEPLOYMENT_TARGET = 10.7;
 				PREBINDING = NO;
-				SDKROOT = macosx10.5;
+				SDKROOT = macosx;
 			};
 			name = Release;
 		};
diff --git a/MachO/MachO.xcodeproj/xcshareddata/xcschemes/MachO.xcscheme b/MachO/MachO.xcodeproj/xcshareddata/xcschemes/MachO.xcscheme
new file mode 100644
index 0000000..068d65f
--- /dev/null
+++ b/MachO/MachO.xcodeproj/xcshareddata/xcschemes/MachO.xcscheme
@@ -0,0 +1,80 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<Scheme
+   LastUpgradeVersion = "0810"
+   version = "1.3">
+   <BuildAction
+      parallelizeBuildables = "YES"
+      buildImplicitDependencies = "YES">
+      <BuildActionEntries>
+         <BuildActionEntry
+            buildForTesting = "YES"
+            buildForRunning = "YES"
+            buildForProfiling = "YES"
+            buildForArchiving = "YES"
+            buildForAnalyzing = "YES">
+            <BuildableReference
+               BuildableIdentifier = "primary"
+               BlueprintIdentifier = "8DC2EF4F0486A6940098B216"
+               BuildableName = "MachO.framework"
+               BlueprintName = "MachO"
+               ReferencedContainer = "container:MachO.xcodeproj">
+            </BuildableReference>
+         </BuildActionEntry>
+      </BuildActionEntries>
+   </BuildAction>
+   <TestAction
+      buildConfiguration = "Debug"
+      selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
+      selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
+      shouldUseLaunchSchemeArgsEnv = "YES">
+      <Testables>
+      </Testables>
+      <AdditionalOptions>
+      </AdditionalOptions>
+   </TestAction>
+   <LaunchAction
+      buildConfiguration = "Debug"
+      selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
+      selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
+      launchStyle = "0"
+      useCustomWorkingDirectory = "NO"
+      ignoresPersistentStateOnLaunch = "NO"
+      debugDocumentVersioning = "YES"
+      debugServiceExtension = "internal"
+      allowLocationSimulation = "YES">
+      <MacroExpansion>
+         <BuildableReference
+            BuildableIdentifier = "primary"
+            BlueprintIdentifier = "8DC2EF4F0486A6940098B216"
+            BuildableName = "MachO.framework"
+            BlueprintName = "MachO"
+            ReferencedContainer = "container:MachO.xcodeproj">
+         </BuildableReference>
+      </MacroExpansion>
+      <AdditionalOptions>
+      </AdditionalOptions>
+   </LaunchAction>
+   <ProfileAction
+      buildConfiguration = "Release"
+      shouldUseLaunchSchemeArgsEnv = "YES"
+      savedToolIdentifier = ""
+      useCustomWorkingDirectory = "NO"
+      debugDocumentVersioning = "YES">
+      <MacroExpansion>
+         <BuildableReference
+            BuildableIdentifier = "primary"
+            BlueprintIdentifier = "8DC2EF4F0486A6940098B216"
+            BuildableName = "MachO.framework"
+            BlueprintName = "MachO"
+            ReferencedContainer = "container:MachO.xcodeproj">
+         </BuildableReference>
+      </MacroExpansion>
+   </ProfileAction>
+   <AnalyzeAction
+      buildConfiguration = "Debug">
+   </AnalyzeAction>
+   <ArchiveAction
+      buildConfiguration = "Release"
+      revealArchiveInOrganizer = "YES">
+   </ArchiveAction>
+</Scheme>
diff --git a/MachO/MachO_Prefix.h b/MachO/MachO_Prefix.h
new file mode 100644
index 0000000..b5375d3
--- /dev/null
+++ b/MachO/MachO_Prefix.h
@@ -0,0 +1,26 @@
+//
+// Prefix header for all source files of the 'MachO' target in the 'MachO' project.
+//
+
+#ifdef __OBJC__
+    #import <Cocoa/Cocoa.h>
+#endif
+
+#include <string>
+#include <vector>
+#include <sstream>
+#include <fstream>
+#include <list>
+#include <assert.h>
+#include <map>
+
+#include <mach-o/loader.h>
+#include <mach-o/nlist.h>
+
+#include <cxxabi.h>
+#include <stdlib.h>
+#include <pwd.h>
+#include <unistd.h>
+
+#include <sys/param.h>
+#include <sys/stat.h>
diff --git a/MachO/MachO_Prefix.pch b/MachO/MachO_Prefix.pch
deleted file mode 100644
index 6e06618..0000000
--- a/MachO/MachO_Prefix.pch
+++ /dev/null
@@ -1,7 +0,0 @@
-//
-// Prefix header for all source files of the 'MachO' target in the 'MachO' project.
-//
-
-#ifdef __OBJC__
-    #import <Cocoa/Cocoa.h>
-#endif
diff --git a/MachO/demangler.cpp b/MachO/demangler.cpp
deleted file mode 100644
index e7a36c2..0000000
--- a/MachO/demangler.cpp
+++ /dev/null
@@ -1,50 +0,0 @@
-#include "demangler.h"
-#include "machodemangleexception.h"
-
-using namespace boost::process;
-/**
- class for using c++flt to demangle names. Uses Boost.Process from http://www.highscore.de/cpp/process/index.html
- */
-Demangler::Demangler() : child(NULL), isRunning(false)
-{
-	init();
-}
-
-Demangler::~Demangler()
-{
-	if (child)
-		child->terminate();
-	delete child;
-}
-
-string Demangler::demangleName(const string& name) {
-	if (isRunning){
-		(*stdin) << name << endl;
-		string line;
-		getline(*stdout, line);
-		return line;
-	} else {
-		throw MachODemangleException("Could not find/start process c++flt.");
-	}
-}
-
-void Demangler::init() {
-	try {
-	std::string exec = find_executable_in_path("c++filt"); 
-	std::vector<std::string> args;
-	args.push_back("--strip-underscore"); 
-	context ctx; 
-	ctx.environment = self::get_environment(); 
-	ctx.stdout_behavior = capture_stream(); 
-	ctx.stdin_behavior = capture_stream(); 
-	child = new boost::process::child(launch(exec, args, ctx)); 
-	stdout = &child->get_stdout(); 
-	stdin = &child->get_stdin();
-	isRunning = true;
-	// TODO: check exceptions
-	} catch (boost::filesystem::filesystem_error& e) {
-		// errors during finding executable
-	} catch (boost::system::system_error& e2) {
-		// errors during starting of process
-	}
-}
\ No newline at end of file
diff --git a/MachO/demangler.h b/MachO/demangler.h
deleted file mode 100644
index d1f620c..0000000
--- a/MachO/demangler.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef DEMANGLER_H
-#define DEMANGLER_H
-
-#include "macho_global.h"
-#include <boost/process.hpp>
-
-class Demangler
-{
-public:
-    Demangler();
-    virtual ~Demangler();
-
-    string demangleName(const string& name);
-private:
-	boost::process::child* child;
-	boost::process::pistream* stdout; 
-	boost::process::postream* stdin;
-	bool isRunning;
-	
-	void init();
-private:
-};
-
-#endif // DEMANGLER_H
diff --git a/MachO/dylibcommand.cpp b/MachO/dylibcommand.cpp
index a87d2c0..a87aa10 100644
--- a/MachO/dylibcommand.cpp
+++ b/MachO/dylibcommand.cpp
@@ -1,7 +1,6 @@
 #include "dylibcommand.h"
 #include "machofile.h"
 #include "machoheader.h"
-#include <sstream>
 
 #define HIBYTE(x)	( (unsigned char) ((x) >> 8) )
 #define LOBYTE(x)	( (unsigned char) (x) )
@@ -11,38 +10,38 @@
 #define MAKEVERSION(x,y,z) 0x00000000 | (x << 16) | (y << 8) | z
 
 DylibCommand::DylibCommand(MachOHeader* header, DependencyType type) :
-        LoadCommand(header), type(type)
+LoadCommand(header), type(type)
 {
-    file.readBytes((char*)&command, sizeof(command));
+  file.readBytes((char*)&command, sizeof(command));
 }
 
 DylibCommand::~DylibCommand() {
 }
 
 unsigned int DylibCommand::getSize() const {
-    return file.getUint32(command.cmdsize);
+  return file.getUint32(command.cmdsize);
 }
 
-string DylibCommand::getName() const {
-    return string(getLcDataString(command.dylib.name.offset));
+std::string DylibCommand::getName() const {
+  return getLcDataString(command.dylib.name.offset);
 }
 
 unsigned int DylibCommand::getCurrentVersion() const {
-    return file.getUint32(command.dylib.current_version);
+  return file.getUint32(command.dylib.current_version);
 }
 
 unsigned int DylibCommand::getCompatibleVersion() const {
-    return file.getUint32(command.dylib.compatibility_version);
+  return file.getUint32(command.dylib.compatibility_version);
 }
 
 time_t DylibCommand::getTimeStamp() const {
-    return file.getUint32(command.dylib.timestamp);
+  return file.getUint32(command.dylib.timestamp);
 }
 
-string DylibCommand::getVersionString(unsigned int version) {
-    stringstream versionString;
-    versionString << HIWORD(version) << "." << (unsigned short)HIBYTE(LOWORD(version)) << "." << (unsigned short)LOBYTE(LOWORD(version));
-	return versionString.str();
+std::string DylibCommand::getVersionString(unsigned int version) {
+  std::stringstream versionString;
+  versionString << HIWORD(version) << "." << (unsigned short)HIBYTE(LOWORD(version)) << "." << (unsigned short)LOBYTE(LOWORD(version));
+  return versionString.str();
 }
 
 
diff --git a/MachO/dylibcommand.h b/MachO/dylibcommand.h
index 7d429cc..b188bc3 100644
--- a/MachO/dylibcommand.h
+++ b/MachO/dylibcommand.h
@@ -20,11 +20,11 @@ public:
     bool isId() const { return type==DependencyId; }
     bool isNecessary() const { return type!=DependencyWeak; }
     DependencyType getType() const { return type; }
-    string getName() const;
+    std::string getName() const;
     unsigned int getCurrentVersion() const;
     unsigned int getCompatibleVersion() const;
     time_t getTimeStamp() const;
-    static string getVersionString(unsigned int version);
+    static std::string getVersionString(unsigned int version);
 
 private:
     dylib_command command;
diff --git a/MachO/dylinkercommand.cpp b/MachO/dylinkercommand.cpp
index 4c0a640..bb3633b 100644
--- a/MachO/dylinkercommand.cpp
+++ b/MachO/dylinkercommand.cpp
@@ -15,7 +15,7 @@ unsigned int DylinkerCommand::getSize() const {
     return file.getUint32(command.cmdsize);
 }
 
-string DylinkerCommand::getName() const {
-    return string(getLcDataString(command.name.offset));
+std::string DylinkerCommand::getName() const {
+    return getLcDataString(command.name.offset);
 }
 
diff --git a/MachO/dylinkercommand.h b/MachO/dylinkercommand.h
index ea0e0df..4cc58c1 100644
--- a/MachO/dylinkercommand.h
+++ b/MachO/dylinkercommand.h
@@ -10,7 +10,7 @@ public:
     virtual ~DylinkerCommand();
     virtual unsigned int getSize() const;
     virtual unsigned int getStructureSize() const { return sizeof(command); }
-    string getName() const;
+    std::string getName() const;
 private:
     dylinker_command command;
 
diff --git a/MachO/dynamicloader.cpp b/MachO/dynamicloader.cpp
index c99ad59..bc671ba 100644
--- a/MachO/dynamicloader.cpp
+++ b/MachO/dynamicloader.cpp
@@ -2,7 +2,6 @@
 #include "machofile.h"
 #include "machoarchitecture.h"
 
-#include <boost/filesystem.hpp>
 #include <pwd.h>
 #include <stdlib.h>
 #include <sstream>
@@ -17,323 +16,321 @@
 const char DynamicLoader::EnvironmentPathVariable::PATHS_SEPARATOR = ':';
 
 DynamicLoader::EnvironmentPathVariable::EnvironmentPathVariable() {
-    // never call that explicitly
+  // never call that explicitly
 }
 
-DynamicLoader::EnvironmentPathVariable::EnvironmentPathVariable(const char* homePath, const string& name, const StringList& defaultValues)
+DynamicLoader::EnvironmentPathVariable::EnvironmentPathVariable(const char* homePath, const std::string& name, const StringList& defaultValues)
 {
-    this->homePath = homePath;
-	const char* envValue = getenv(name.c_str());
-	string values;
-	if (envValue) {
-		values = envValue;
-	}
-	
-	if (!values.empty()) {
-		std::stringstream v(values);
-        std::string item;
-        while (std::getline(v, item, PATHS_SEPARATOR)) {
-            addPath(item);
- 		}	
-    } else {
-        setPaths(defaultValues);
+  this->homePath = homePath;
+  const char* envValue = getenv(name.c_str());
+  std::string values;
+  if (envValue) {
+    values = envValue;
+  }
+
+  if (!values.empty()) {
+    std::stringstream v(values);
+    std::string item;
+    while (std::getline(v, item, PATHS_SEPARATOR)) {
+      addPath(item);
     }
+  } else {
+    setPaths(defaultValues);
+  }
 }
 
 void DynamicLoader::EnvironmentPathVariable::setPaths(const StringList& paths) {
-    this->paths = paths;
-	
-    for (StringList::iterator it = this->paths.begin(); it!=this->paths.end(); ++it) {
-    	replaceHomeDirectory(*it);
-    }
+  this->paths = paths;
+
+  for (StringList::iterator it = this->paths.begin(); it!=this->paths.end(); ++it) {
+    replaceHomeDirectory(*it);
+  }
 }
 
-void DynamicLoader::EnvironmentPathVariable::addPath(const string& path) {
-	paths.push_back(path);
-	replaceHomeDirectory(paths.back());
+void DynamicLoader::EnvironmentPathVariable::addPath(const std::string& path) {
+  paths.push_back(path);
+  replaceHomeDirectory(paths.back());
 }
 
-bool DynamicLoader::EnvironmentPathVariable::replaceHomeDirectory(string& path) {
-	size_t homePos = path.find("~/");
-	if (homePos != string::npos) {
-		path.replace(homePos, 1, homePath);
-		return true;
-	}
-	return false;
+bool DynamicLoader::EnvironmentPathVariable::replaceHomeDirectory(std::string& path) {
+  size_t homePos = path.find("~/");
+  if (homePos != std::string::npos) {
+    path.replace(homePos, 1, homePath);
+    return true;
+  }
+  return false;
 }
 
 bool DynamicLoader::EnvironmentPathVariable::isEmpty() const {
-    if (!paths.empty()) {
-        return paths.front().empty();
-    }
-    return true;
+  if (!paths.empty()) {
+    return paths.front().empty();
+  }
+  return true;
 }
 
 // the order must be the order of the enum!
 const char* DynamicLoader::ENVIRONMENT_VARIABLE_NAMES[DynamicLoader::NumEnvironmentVariables] = {
-    "LD_LIBRARY_PATH",
-    "DYLD_FRAMEWORK_PATH",
-    "DYLD_LIBRARY_PATH",
-    "DYLD_FALLBACK_FRAMEWORK_PATH",
-    "DYLD_FALLBACK_LIBRARY_PATH",
-    "DYLD_IMAGE_SUFFIX"
+  "LD_LIBRARY_PATH",
+  "DYLD_FRAMEWORK_PATH",
+  "DYLD_LIBRARY_PATH",
+  "DYLD_FALLBACK_FRAMEWORK_PATH",
+  "DYLD_FALLBACK_LIBRARY_PATH",
+  "DYLD_IMAGE_SUFFIX"
 };
 
 const char* DynamicLoader::PLACEHOLDERS[DynamicLoader::NumPlaceholders] = {
-    "@executable_path",
-    "@loader_path",
-    "@rpath"
+  "@executable_path",
+  "@loader_path",
+  "@rpath"
 };
 
 const char* DynamicLoader::PATH_SEPARATOR = "/";
 
 const char* DynamicLoader::DEFAULT_FRAMEWORK_PATH[] = {
-	"~/Library/Frameworks",
-	"/Library/Frameworks",
-	"/Network/Library/Frameworks",
-	"/System/Library/Frameworks"
+  "~/Library/Frameworks",
+  "/Library/Frameworks",
+  "/Network/Library/Frameworks",
+  "/System/Library/Frameworks"
 };
 
 const char* DynamicLoader::DEFAULT_LIBRARY_PATH[] = {
-	"~/lib",
-	"/usr/local/lib",
-	"/lib",
-	"/usr/lib"
+  "~/lib",
+  "/usr/local/lib",
+  "/lib",
+  "/usr/lib"
 };
 
 // unfortunately cannot make stringList const here, but treat it as const
 const StringList DynamicLoader::ENVIRONMENT_VARIABLE_DEFAULT_VALUES[DynamicLoader::NumEnvironmentVariables] = {
-    StringList(),
-    StringList(),
-    StringList(),
-    StringList(DEFAULT_FRAMEWORK_PATH, DEFAULT_FRAMEWORK_PATH + sizeof(DEFAULT_FRAMEWORK_PATH) / sizeof(*DEFAULT_FRAMEWORK_PATH)),
-    StringList(DEFAULT_LIBRARY_PATH, DEFAULT_LIBRARY_PATH + sizeof(DEFAULT_LIBRARY_PATH) / sizeof(*DEFAULT_LIBRARY_PATH)),
-    StringList()
+  StringList(),
+  StringList(),
+  StringList(),
+  StringList(DEFAULT_FRAMEWORK_PATH, DEFAULT_FRAMEWORK_PATH + sizeof(DEFAULT_FRAMEWORK_PATH) / sizeof(*DEFAULT_FRAMEWORK_PATH)),
+  StringList(DEFAULT_LIBRARY_PATH, DEFAULT_LIBRARY_PATH + sizeof(DEFAULT_LIBRARY_PATH) / sizeof(*DEFAULT_LIBRARY_PATH)),
+  StringList()
 };
 
 DynamicLoader::DynamicLoader()
 {
-    homePath = strdup(getUserHomeDirectory());
-    // init/read out some variables
-    for (unsigned int i=0; i < NumEnvironmentVariables; i++) {
-        environmentVariables[i] = EnvironmentPathVariable(homePath, ENVIRONMENT_VARIABLE_NAMES[i], ENVIRONMENT_VARIABLE_DEFAULT_VALUES[i]);
-    }
-    
+  homePath = strdup(getUserHomeDirectory());
+  // init/read out some variables
+  for (unsigned int i=0; i < NumEnvironmentVariables; i++) {
+    environmentVariables[i] = EnvironmentPathVariable(homePath, ENVIRONMENT_VARIABLE_NAMES[i], ENVIRONMENT_VARIABLE_DEFAULT_VALUES[i]);
+  }
+
 }
 
 DynamicLoader::~DynamicLoader() {
-    free((void*)homePath);
+  free((void*)homePath);
 }
 
 const char* DynamicLoader::getUserHomeDirectory() const {
-    struct passwd* pwd = getpwuid(getuid());
-    if (pwd)
-    {
-        return pwd->pw_dir;
-    }
-    else
-    {
-        // try the $HOME environment variable
-        return getenv("HOME");
-    } 
+  struct passwd* pwd = getpwuid(getuid());
+  if (pwd)
+  {
+    return pwd->pw_dir;
+  }
+  else
+  {
+    // try the $HOME environment variable
+    return getenv("HOME");
+  }
 }
 
-string DynamicLoader::replacePlaceholder(const string& name, const MachOArchitecture* architecture) const {
-    string resolvedName = name;
-    if (name.find(PLACEHOLDERS[ExecutablePath]) == 0) {
-		resolvedName.replace(0, strlen(PLACEHOLDERS[ExecutablePath]), architecture->getFile()->getExecutablePath());
-    } else if (name.find(PLACEHOLDERS[LoaderPath]) == 0) {
-        resolvedName.replace(0, strlen(PLACEHOLDERS[LoaderPath]), architecture->getFile()->getPath());
-    }
-    return resolvedName;
+std::string DynamicLoader::replacePlaceholder(const std::string& name, const MachOArchitecture* architecture) const {
+  std::string resolvedName = name;
+  if (name.find(PLACEHOLDERS[ExecutablePath]) == 0) {
+    resolvedName.replace(0, strlen(PLACEHOLDERS[ExecutablePath]), architecture->getFile()->getExecutablePath());
+  } else if (name.find(PLACEHOLDERS[LoaderPath]) == 0) {
+    resolvedName.replace(0, strlen(PLACEHOLDERS[LoaderPath]), architecture->getFile()->getPath());
+  }
+  return resolvedName;
 }
 
-string DynamicLoader::getPathname(const string& name, const MachOArchitecture* architecture, const string& workingPath) const {
-    // simple name (only the last part of the name, after the last PATH_SEPARATOR)
-    size_t lastSlashPosition = name.rfind(PATH_SEPARATOR);
-    string simpleName;
-    if (lastSlashPosition != string::npos && lastSlashPosition < name.length() - 1) {
-        simpleName = name.substr(lastSlashPosition+1);
-    } else {
-    	simpleName = name;
-    }
-	
-    // try LD_LIBRARY_PATH
-    string pathName;
-    pathName = getExistingPathname(simpleName, environmentVariables[LdLibraryPath], workingPath);
+std::string DynamicLoader::getPathname(const std::string& name, const MachOArchitecture* architecture, const std::string& workingPath) const {
+  // simple name (only the last part of the name, after the last PATH_SEPARATOR)
+  size_t lastSlashPosition = name.rfind(PATH_SEPARATOR);
+  std::string simpleName;
+  if (lastSlashPosition != std::string::npos && lastSlashPosition < name.length() - 1) {
+    simpleName = name.substr(lastSlashPosition+1);
+  } else {
+    simpleName = name;
+  }
+
+  // try LD_LIBRARY_PATH
+  std::string pathName;
+  pathName = getExistingPathname(simpleName, environmentVariables[LdLibraryPath], workingPath);
+  if (!pathName.empty())
+    return pathName;
+
+  std::string frameworkName = getFrameworkName(name);
+  if (!frameworkName.empty()) {
+    // strip the already contained suffix
+    pathName = getExistingPathname(frameworkName, environmentVariables[DyldFrameworkPath], workingPath);
     if (!pathName.empty())
-        return pathName;
-	
-    string frameworkName = getFrameworkName(name);
-    if (!frameworkName.empty()) {
-        // strip the already contained suffix
-        pathName = getExistingPathname(frameworkName, environmentVariables[DyldFrameworkPath], workingPath);
-        if (!pathName.empty())
-            return pathName;
-    }
-	
-    pathName = getExistingPathname(simpleName, environmentVariables[DyldLibraryPath], workingPath);
+      return pathName;
+  }
+
+  pathName = getExistingPathname(simpleName, environmentVariables[DyldLibraryPath], workingPath);
+  if (!pathName.empty())
+    return pathName;
+
+  // resolve placeholder
+  std::string resolvedName = replacePlaceholder(name, architecture);
+  if (!resolvedName.empty()) {
+    pathName = getExistingPathname(resolvedName, workingPath);
     if (!pathName.empty())
+      return pathName;
+  }
+
+  if (name.find(PLACEHOLDERS[Rpath]) == 0) {
+    // substitute @rpath with all -rpath paths up the load chain
+    std::vector<std::string*> rpaths = architecture->getRpaths();
+
+    for (std::vector<std::string*>::iterator it = rpaths.begin(); it != rpaths.end(); ++it) {
+      // rpath may contain @loader_path or @executable_path
+      std::string rpath = replacePlaceholder((**it), architecture);
+      resolvedName = name;
+      resolvedName.replace(0, strlen(PLACEHOLDERS[Rpath]), rpath);
+      pathName = getExistingPathname(resolvedName, workingPath);
+      if (!pathName.empty())
         return pathName;
-	
-    // resolve placeholder
-    string resolvedName = replacePlaceholder(name, architecture);
-    if (!resolvedName.empty()) {
+    }
+
+    // after checking against all stored rpaths substitute @rpath with LD_LIBRARY_PATH (if it is set)
+    EnvironmentPathVariable ldLibraryPaths = environmentVariables[LdLibraryPath];
+    if (!ldLibraryPaths.isEmpty()) {
+      for (StringList::const_iterator it = ldLibraryPaths.getPaths().begin(); it != ldLibraryPaths.getPaths().end(); ++it) {
+        resolvedName = name;
+        resolvedName.replace(0, strlen(PLACEHOLDERS[Rpath]), (*it));
         pathName = getExistingPathname(resolvedName, workingPath);
         if (!pathName.empty())
-            return pathName;
+          return pathName;
+      }
     }
-	
-    if (name.find(PLACEHOLDERS[Rpath]) == 0) {
-        // substitute @rpath with all -rpath paths up the load chain
-        std::vector<string*> rpaths = architecture->getRpaths();
-		
-        for (std::vector<string*>::iterator it = rpaths.begin(); it != rpaths.end(); ++it) {
-			// rpath may contain @loader_path or @executable_path
-			string rpath = replacePlaceholder((**it), architecture);
-            resolvedName = name;
-            resolvedName.replace(0, strlen(PLACEHOLDERS[Rpath]), rpath);
-            pathName = getExistingPathname(resolvedName, workingPath);
-            if (!pathName.empty())
-                return pathName;
-        }
-		
-        // after checking against all stored rpaths substitute @rpath with LD_LIBRARY_PATH (if it is set)
-        EnvironmentPathVariable ldLibraryPaths = environmentVariables[LdLibraryPath];
-        if (!ldLibraryPaths.isEmpty()) {
-            for (StringList::const_iterator it = ldLibraryPaths.getPaths().begin(); it != ldLibraryPaths.getPaths().end(); ++it) {
-                resolvedName = name;
-                resolvedName.replace(0, strlen(PLACEHOLDERS[Rpath]), (*it));
-                pathName = getExistingPathname(resolvedName, workingPath);
-                if (!pathName.empty())
-                    return pathName;
-            }
-        }
-    }
-	
-    // check pure path (either absolute or relative to working directory)
-    pathName = getExistingPathname(name, workingPath);
+  }
+
+  // check pure path (either absolute or relative to working directory)
+  pathName = getExistingPathname(name, workingPath);
+  if (!pathName.empty())
+    return pathName;
+
+  // try fallbacks (or its defaults)
+  if (!frameworkName.empty()) {
+    pathName = getExistingPathname(frameworkName, environmentVariables[DyldFallbackFrameworkPath], workingPath);
     if (!pathName.empty())
-        return pathName;
-	
-    // try fallbacks (or its defaults)
-    if (!frameworkName.empty()) {
-        pathName = getExistingPathname(frameworkName, environmentVariables[DyldFallbackFrameworkPath], workingPath);
-        if (!pathName.empty())
-            return pathName;
-    }
-	
-    return getExistingPathname(name, environmentVariables[DyldFallbackLibraryPath], workingPath);
+      return pathName;
+  }
+
+  return getExistingPathname(name, environmentVariables[DyldFallbackLibraryPath], workingPath);
 }
 
 // returns the name is of a framework without any preceeding path information if name specifies a framework, otherwise an invalid string
-string DynamicLoader::getFrameworkName(const string& name, const bool strippedSuffix) const {
-    // fail fast in case of dylibs
-    if (name.find(".framework/") == string::npos) {
-        return string();
+std::string DynamicLoader::getFrameworkName(const std::string& name, const bool strippedSuffix) const {
+  // fail fast in case of dylibs
+  if (name.find(".framework/") == std::string::npos) {
+    return "";
+  }
+
+  /*  first look for the form Foo.framework/Foo
+   next look for the form Foo.framework/Versions/A/Foo
+   A and Foo are arbitrary strings without a slash */
+
+  // get Foo (part after last slash)
+  size_t lastSlashPosition = name.rfind(PATH_SEPARATOR);
+  if (lastSlashPosition == std::string::npos || lastSlashPosition == name.length() -1) {
+    return "";
+  }
+
+  const std::string foo = name.substr(lastSlashPosition+1);
+  const std::string frameworkPart = foo+".framework/";
+  const std::string framework = frameworkPart + foo;
+
+  if (endsWith(name, framework)) {
+    // strip first part
+    return framework;
+  }
+  int startPosition = name.find(frameworkPart+"Versions/");
+  bool hasCorrectEnd = endsWith(name, foo);
+
+  // TODO: check between Versions/ and foo there must be no additional slash
+  if (startPosition != std::string::npos) {
+    if (hasCorrectEnd) {
+      return name.substr(startPosition);
+    } else if (strippedSuffix == false) {
+      // maybe we have a case, where name contains a suffix in foo (which then of course occurs only in the last foo)
+      // does foo already contain a suffix?
+      size_t suffixStart = foo.rfind("_");
+      if (suffixStart != std::string::npos) {
+        std::string newName = name;
+        newName.erase(lastSlashPosition+1+suffixStart);
+        return getFrameworkName(newName, true);
+      }
     }
-	
-    /*  first look for the form Foo.framework/Foo
-	 next look for the form Foo.framework/Versions/A/Foo
-	 A and Foo are arbitrary strings without a slash */
-	
-    // get Foo (part after last slash)
-    size_t lastSlashPosition = name.rfind(PATH_SEPARATOR);
-    if (lastSlashPosition == string::npos || lastSlashPosition == name.length() -1) {
-        return false;
-    }
-	
-    const string foo = name.substr(lastSlashPosition+1);
-    const string frameworkPart = foo+".framework/";
-    const string framework = frameworkPart + foo;
-	
-    if (endsWith(name, framework)) {
-        // strip first part
-        return framework;
-    }
-    int startPosition = name.find(frameworkPart+"Versions/");
-	bool hasCorrectEnd = endsWith(name, foo);
-	
-	// TODO: check between Versions/ and foo there must be no additional slash
-	if (startPosition != string::npos) {
-		if (hasCorrectEnd) {
-			return name.substr(startPosition);
-		} else if (strippedSuffix == false) {
-			// maybe we have a case, where name contains a suffix in foo (which then of course occurs only in the last foo)
-			// does foo already contain a suffix?
-			size_t suffixStart = foo.rfind("_");
-			if (suffixStart != string::npos) {
-				string newName = name;
-				newName.erase(lastSlashPosition+1+suffixStart);
-				return getFrameworkName(newName, true);
-			}
-		}
-	}
-	
-    // if we are at this part the given name was no framework
-    return string();
+  }
+
+  // if we are at this part the given name was no framework
+  return "";
 }
 
-string DynamicLoader::getExistingPathname(const string& name, const EnvironmentPathVariable& environmentPathVariable, const string& workingPath) const {
-    string result;
-    const StringList directories = environmentPathVariable.getPaths();
-    for (StringList::const_iterator it = directories.begin(); it != directories.end(); ++it) {
-    	result = getExistingPathname(name, *it, workingPath);
-        if (!result.empty())
-            return result;
+std::string DynamicLoader::getExistingPathname(const std::string& name, const EnvironmentPathVariable& environmentPathVariable, const std::string& workingPath) const {
+  std::string result;
+  const StringList directories = environmentPathVariable.getPaths();
+  for (StringList::const_iterator it = directories.begin(); it != directories.end(); ++it) {
+    result = getExistingPathname(name, *it, workingPath);
+    if (!result.empty())
+      return result;
+  }
+  return result;
+}
+
+std::string DynamicLoader::getExistingPathname(const std::string& file, const std::string& directory, const std::string& workingPath) const {
+  std::string name = file;
+  if (!directory.empty()) {
+    if (!endsWith(directory, "/")) {
+      name = directory + "/" + file;
+    } else {
+      name = directory + file;
     }
-    return result;
+  }
+  return getExistingPathname(name, workingPath);
 }
 
-string DynamicLoader::getExistingPathname(const string& file, const string& directory, const string& workingPath) const {
-    string name = file;
-    if (!directory.empty()) {
-        if (!endsWith(directory, "/")) {
-            name = directory + "/" + file;
-        } else {
-            name = directory + file;
-        }
+std::string DynamicLoader::getExistingPathname(const std::string& name, const std::string& workingPath, bool withSuffix) const {
+
+  // complete path
+  std::string usedName = name;
+  bool tryAgainWithoutSuffix = false;
+
+  // first try with suffix
+  if (withSuffix && !environmentVariables[DyldImageSuffix].isEmpty()) {
+    // only one suffix is considered
+    const std::string suffix = environmentVariables[DyldImageSuffix].getPaths().front();
+    // where should we append suffix?
+    if (endsWith(name, ".dylib")) {
+      usedName.insert(name.rfind("."), suffix);
+    } else {
+      usedName += suffix;
     }
-    return getExistingPathname(name, workingPath);
+    tryAgainWithoutSuffix = true;
+  }
+
+  // complete path (with working directory)
+  usedName = workingPath + "/" + usedName;
+
+  struct stat buffer;
+  if (stat(usedName.c_str(), &buffer) == 0) {
+    return usedName;
+  } else {
+    // try without suffix
+    if (tryAgainWithoutSuffix) {
+      return getExistingPathname(name, workingPath, false);
+    }
+  }
+  return "";
 }
 
-string DynamicLoader::getExistingPathname(const string& name, const string& workingPath, bool withSuffix) const {
-	
-	boost::filesystem::path path;
-	
-	// complete path
-	string usedName = name;
-	bool tryAgainWithoutSuffix = false;
-	
-    // first try with suffix
-    if (withSuffix && !environmentVariables[DyldImageSuffix].isEmpty()) {
-		// only one suffix is considered
-        const string suffix = environmentVariables[DyldImageSuffix].getPaths().front();
-        // where should we append suffix?
-		if (endsWith(name, ".dylib")) {
-            usedName.insert(name.rfind("."), suffix);
-        } else {
-            usedName += suffix;
-        }
-		tryAgainWithoutSuffix = true;
-    } 
-	
-	path = usedName;
-	// complete path (with working directory)
-	path = boost::filesystem::complete(path, workingPath);
-	
-	if (boost::filesystem::exists(path)) {
-		return path.file_string();
-	} else {
-		// try without suffix
-		if (tryAgainWithoutSuffix) {
-			return getExistingPathname(name, workingPath, false);
-		}
-	}
-    return string();
-}
-
-bool DynamicLoader::endsWith(const string& str, const string& substr) {
-	size_t i = str.rfind(substr);
-	return (i != string::npos) && (i == (str.length() - substr.length()));
+bool DynamicLoader::endsWith(const std::string& str, const std::string& substr) {
+  size_t i = str.rfind(substr);
+  return (i != std::string::npos) && (i == (str.length() - substr.length()));
 }
diff --git a/MachO/dynamicloader.h b/MachO/dynamicloader.h
index aeb5b0a..707ccfc 100644
--- a/MachO/dynamicloader.h
+++ b/MachO/dynamicloader.h
@@ -3,76 +3,74 @@
 
 #include "macho_global.h"
 
-#include <list>
-
-typedef list<string> StringList;
+typedef std::list<std::string> StringList;
 
 class MachOArchitecture;
 class DynamicLoader
 {
 public:
-    DynamicLoader();
-    virtual ~DynamicLoader();
+  DynamicLoader();
+  virtual ~DynamicLoader();
 
-    string replacePlaceholder(const string& name, const MachOArchitecture* architecture) const;
-    string getPathname(const string& name, const MachOArchitecture* architecture, const string& workingDirectory) const;
+  std::string replacePlaceholder(const std::string& name, const MachOArchitecture* architecture) const;
+  std::string getPathname(const std::string& name, const MachOArchitecture* architecture, const std::string& workingDirectory) const;
 
 private:
-    class EnvironmentPathVariable
-    {
-    public:
-            EnvironmentPathVariable();
-            EnvironmentPathVariable(const char* homePath, const string& name, const StringList& defaultValues = StringList());
+  class EnvironmentPathVariable
+  {
+  public:
+    EnvironmentPathVariable();
+    EnvironmentPathVariable(const char* homePath, const std::string& name, const StringList& defaultValues = StringList());
 
-            bool isEmpty() const;
-            const StringList& getPaths() const { return paths; }
+    bool isEmpty() const;
+    const StringList& getPaths() const { return paths; }
 
-    private:
-            
-            void setPaths(const StringList& paths);
-            void addPath(const string& path);
-            bool replaceHomeDirectory(string& path);
-            StringList paths;
-            static const char PATHS_SEPARATOR;
-            const char* homePath;
-    };
+  private:
 
-    enum {
-        LdLibraryPath,
-        DyldFrameworkPath,
-        DyldLibraryPath,
-        DyldFallbackFrameworkPath,
-        DyldFallbackLibraryPath,
-        DyldImageSuffix,
-        NumEnvironmentVariables
-    };
-
-    enum Placeholder {
-        ExecutablePath,
-        LoaderPath,
-        Rpath,
-        NumPlaceholders
-    };
-
-    static const char* PLACEHOLDERS[NumPlaceholders];
-    static const char* ENVIRONMENT_VARIABLE_NAMES[NumEnvironmentVariables];
-    static const char* PATH_SEPARATOR;
-    static const StringList ENVIRONMENT_VARIABLE_DEFAULT_VALUES[NumEnvironmentVariables];
-
-    static const char* DEFAULT_FRAMEWORK_PATH[];
-    static const char* DEFAULT_LIBRARY_PATH[];
+    void setPaths(const StringList& paths);
+    void addPath(const std::string& path);
+    bool replaceHomeDirectory(std::string& path);
+    StringList paths;
+    static const char PATHS_SEPARATOR;
     const char* homePath;
+  };
 
-    EnvironmentPathVariable environmentVariables[NumEnvironmentVariables];
+  enum {
+    LdLibraryPath,
+    DyldFrameworkPath,
+    DyldLibraryPath,
+    DyldFallbackFrameworkPath,
+    DyldFallbackLibraryPath,
+    DyldImageSuffix,
+    NumEnvironmentVariables
+  };
 
-    string getFrameworkName(const string& name, const bool strippedSuffix = false) const;
-    const char* getUserHomeDirectory() const;
-	
-    string getExistingPathname(const string& name, const EnvironmentPathVariable& environmentPathVariable, const string& workingPath) const;
-    string getExistingPathname(const string& name, const string& directory, const string& workingPath) const;
-    string getExistingPathname(const string& name, const string& workingPath, bool withSuffix=true) const;
-	
-	static bool endsWith(const string& str, const string& substr);
+  enum Placeholder {
+    ExecutablePath,
+    LoaderPath,
+    Rpath,
+    NumPlaceholders
+  };
+
+  static const char* PLACEHOLDERS[NumPlaceholders];
+  static const char* ENVIRONMENT_VARIABLE_NAMES[NumEnvironmentVariables];
+  static const char* PATH_SEPARATOR;
+  static const StringList ENVIRONMENT_VARIABLE_DEFAULT_VALUES[NumEnvironmentVariables];
+
+  static const char* DEFAULT_FRAMEWORK_PATH[];
+  static const char* DEFAULT_LIBRARY_PATH[];
+  const char* homePath;
+
+  EnvironmentPathVariable environmentVariables[NumEnvironmentVariables];
+
+  std::string getFrameworkName(const std::string& name, const bool strippedSuffix = false) const;
+  const char* getUserHomeDirectory() const;
+
+  std::string getExistingPathname(const std::string& name, const EnvironmentPathVariable& environmentPathVariable, const std::string& workingPath) const;
+  std::string getExistingPathname(const std::string& name, const std::string& directory, const std::string& workingPath) const;
+  std::string getExistingPathname(const std::string& name, const std::string& workingPath, bool withSuffix=true) const;
+
+  static bool endsWith(const std::string& str, const std::string& substr);
 };
 
 #endif // DYNAMICLOADER_H
diff --git a/MachO/internalfile.cpp b/MachO/internalfile.cpp
index d4beb61..7e1cd70 100644
--- a/MachO/internalfile.cpp
+++ b/MachO/internalfile.cpp
@@ -1,8 +1,5 @@
 #include "internalfile.h"
 #include "machoexception.h"
-#include <sstream>
-
-using namespace boost::filesystem;
 
 // use reference counting to reuse files for all used architectures
 InternalFile* InternalFile::create(InternalFile* file) {
@@ -10,7 +7,7 @@ InternalFile* InternalFile::create(InternalFile* file) {
     return file;
 }
 
-InternalFile* InternalFile::create(const string& filename) {
+InternalFile* InternalFile::create(const std::string& filename) {
 	return new InternalFile(filename);
 }
 
@@ -21,16 +18,22 @@ void InternalFile::release() {
     }
 }
 
-InternalFile::InternalFile(const string& filename) :
+InternalFile::InternalFile(const std::string& filename) :
 	filename(filename), counter(1)
 {
 	// open file handle
-	file.open(this->filename, ios_base::in|ios_base::binary);
+	file.open(this->filename, std::ios_base::in | std::ios_base::binary);
 	if (file.fail()) {
-		ostringstream error;
+		std::ostringstream error;
 		error << "Couldn't open file '" << filename << "'.";
 		throw MachOException(error.str());
 	}
+
+  struct stat buffer;
+  if (stat(filename.c_str(), &buffer) >= 0) {
+    _fileSize = buffer.st_size;
+    _lastWriteTime = buffer.st_mtime;
+  }
 }
 
 // destructor is private since we use reference counting mechanism
@@ -38,39 +41,32 @@ InternalFile::~InternalFile()  {
     file.close();
 }
 
-string InternalFile::getPath() const {
-	return filename.parent_path().string();
+std::string InternalFile::getPath() const {
+	return filename;
 
 }
 
 /* returns whole filename (including path)*/
-string InternalFile::getName() const {
-	
-	/* unfortunately canonized is not available in newer versions of boost filesystem.
-	 For the reasons see the filsystem proposal at http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2005/n1889.html.
-	 As an alternative I use realpath but I don't know if it handles unicode strings also.
-	 */
-	
-	// try to canonicalize path
-	char* resolvedName = realpath(filename.file_string().c_str(), NULL);
-	if (!resolvedName)
-		return filename.file_string();
-	string resolvedFileName(resolvedName);
-	free(resolvedName);
-	return resolvedFileName;
+std::string InternalFile::getName() const {
+	// Try to canonicalize path.
+  char buffer[PATH_MAX];
+	if (realpath(filename.c_str(), buffer) == nullptr)
+    return filename;
+
+	return buffer;
 }
 
 /* returns filename without path */
-string InternalFile::getTitle() const {
-	return filename.filename();
+std::string InternalFile::getTitle() const {
+	return filename;
 }
 
 unsigned long long InternalFile::getSize() const {
-	return file_size(filename);
+  return _fileSize;
 }
 
 bool InternalFile::seek(long long int position) {
-	file.seekg(position, ios_base::beg);
+	file.seekg(position, std::ios_base::beg);
 	if (file.fail()) {
 		file.clear();
 		return false;
@@ -78,7 +74,7 @@ bool InternalFile::seek(long long int position) {
 	return true;
 }
 
-streamsize InternalFile::read(char* buffer, streamsize size) {
+std::streamsize InternalFile::read(char* buffer, std::streamsize size) {
 	file.read(buffer, size);
 	if (file.fail()) {
 		file.clear();
@@ -93,5 +89,5 @@ long long int InternalFile::getPosition() {
  }
 
 time_t InternalFile::getLastModificationTime() const {
-	return last_write_time(filename);
+  return _lastWriteTime;
 }
diff --git a/MachO/internalfile.h b/MachO/internalfile.h
index 9836adb..7095c4c 100644
--- a/MachO/internalfile.h
+++ b/MachO/internalfile.h
@@ -2,32 +2,34 @@
 #define INTERNALFILE_H
 
 #include "macho_global.h"
-#include <boost/filesystem.hpp>
-#include <boost/filesystem/fstream.hpp>
 
 class InternalFile
 {
 
 public:
-    static InternalFile* create(InternalFile* file);
-    static InternalFile* create(const string& filename);
-    void release();
+  virtual ~InternalFile();
 
-    string getPath() const;
-    string getName() const;
-	string getTitle() const;
-	unsigned long long getSize() const;
-    bool seek(long long int position);
-    streamsize read(char* buffer, streamsize size);
-    long long int getPosition();
-	time_t getLastModificationTime() const;
+  static InternalFile* create(InternalFile* file);
+  static InternalFile* create(const std::string& filename);
+  void release();
+
+  std::string getPath() const;
+  std::string getName() const;
+  std::string getTitle() const;
+  unsigned long long getSize() const;
+  bool seek(long long int position);
+  std::streamsize read(char* buffer, std::streamsize size);
+  long long int getPosition();
+  time_t getLastModificationTime() const;
 
 private:
-    unsigned int counter;
-    virtual ~InternalFile();
-    InternalFile(const string& filename);
-	boost::filesystem::ifstream file;
-	boost::filesystem::path filename;
+  unsigned int counter;
+
+  InternalFile(const std::string& filename);
+  std::ifstream file;
+  std::string filename;
+  size_t _fileSize;
+  time_t _lastWriteTime;
 };
 
 #endif // INTERNALFILE_H
diff --git a/MachO/loadcommand.cpp b/MachO/loadcommand.cpp
index 15b56d3..c35f017 100644
--- a/MachO/loadcommand.cpp
+++ b/MachO/loadcommand.cpp
@@ -7,7 +7,7 @@
 #include "dylinkercommand.h"
 #include "machoexception.h"
 #include "machoheader.h"
-#include "/usr/include/mach-o/loader.h"
+
 
 LoadCommand* LoadCommand::getLoadCommand(unsigned int cmd, MachOHeader* header) {
 
diff --git a/MachO/loadcommand.h b/MachO/loadcommand.h
index 9a82ac5..16247c3 100644
--- a/MachO/loadcommand.h
+++ b/MachO/loadcommand.h
@@ -1,7 +1,6 @@
 #ifndef LOADCOMMAND_H
 #define LOADCOMMAND_H
 #include "macho_global.h"
-#include "/usr/include/mach-o/loader.h"
 
 class MachOHeader;
 class MachOFile;
diff --git a/MachO/macho.cpp b/MachO/macho.cpp
index 21a74c3..6042a7e 100644
--- a/MachO/macho.cpp
+++ b/MachO/macho.cpp
@@ -2,7 +2,6 @@
 #include "machoexception.h"
 #include "machofile.h"
 #include "machoarchitecture.h"
-#include "demangler.h"
 #include "dynamicloader.h"
 #include "machoheader.h"
 
@@ -12,26 +11,24 @@
 // for MachO specification
 
 // static variables
-Demangler* MachO::demangler = 0;
 DynamicLoader* MachO::dynamicLoader = 0;
 int MachO::referenceCounter = 0;
 
-MachO::MachO(const string& filename, const MachO* parent) : parent(parent), bundle(NULL)
+MachO::MachO(const std::string& filename, const MachO* parent) : parent(parent), bundle(NULL)
 {
 	// check if filename is bundle
-    string appFilename = getApplicationInBundle(filename);
+    std::string appFilename = getApplicationInBundle(filename);
     init(appFilename, parent);
 
     if (referenceCounter == 0) {
-        demangler = new Demangler();
         dynamicLoader = new DynamicLoader();
     }
     referenceCounter++;
 }
 
-string MachO::getApplicationInBundle(const string& filename) {
+std::string MachO::getApplicationInBundle(const std::string& filename) {
     CFURLRef bundleUrl = 0;
-	string appFilename = filename;
+	std::string appFilename = filename;
     bundleUrl = CFURLCreateFromFileSystemRepresentation(NULL, (const UInt8 *)filename.c_str() , filename.length(), true);
     if (bundleUrl != NULL) {
         bundle = CFBundleCreate(NULL, bundleUrl);
@@ -50,7 +47,7 @@ string MachO::getApplicationInBundle(const string& filename) {
     return appFilename;
 }
 
-void MachO::init(const string& fileName, const MachO* parent)
+void MachO::init(const std::string& fileName, const MachO* parent)
 {
     MachOFile* parentFile = 0;
     if (parent) {
@@ -97,8 +94,6 @@ void MachO::init(const string& fileName, const MachO* parent)
 MachO::~MachO() {
     referenceCounter--;
     if (referenceCounter == 0) {
-        delete demangler;
-        demangler = 0;
         delete dynamicLoader;
         dynamicLoader = 0;
     }
@@ -155,8 +150,8 @@ time_t MachO::getLastModificationTime() const {
 }
 
 // return bundle version if available, otherwise NULL string
-string MachO::getVersion() const {
-    string version;
+std::string MachO::getVersion() const {
+    std::string version;
     if (bundle != 0) {
         CFStringRef cfVersion = (CFStringRef)CFBundleGetValueForInfoDictionaryKey(bundle, kCFBundleVersionKey);
         // is version available at all?
@@ -167,8 +162,8 @@ string MachO::getVersion() const {
     return version;
 }
 
-string MachO::getName() const {
-    string name;
+std::string MachO::getName() const {
+    std::string name;
     if (bundle != 0) {
         CFStringRef cfBundleName = (CFStringRef)CFBundleGetValueForInfoDictionaryKey(bundle, kCFBundleNameKey);
         // is version available at all?
@@ -189,8 +184,8 @@ string MachO::getName() const {
     return name;
 }
 
-string MachO::extractStringFromCFStringRef(CFStringRef cfStringRef) {
-    string string;
+std::string MachO::extractStringFromCFStringRef(CFStringRef cfStringRef) {
+    std::string string;
     const char* szString = CFStringGetCStringPtr(cfStringRef, kCFStringEncodingASCII);
     if (szString == NULL) {
         CFIndex stringLength = CFStringGetMaximumSizeForEncoding(CFStringGetLength(cfStringRef), kCFStringEncodingASCII);
@@ -209,12 +204,12 @@ string MachO::extractStringFromCFStringRef(CFStringRef cfStringRef) {
     return string;
 }
 
-string MachO::getPath() const {
+std::string MachO::getPath() const {
     return file->getPath();
 }
 
-string MachO::getFileName() const { 
-	string filename = file->getName();
+std::string MachO::getFileName() const { 
+	std::string filename = file->getName();
 	return filename;
 }
     
diff --git a/MachO/macho.h b/MachO/macho.h
index 8b1a44c..e50014a 100644
--- a/MachO/macho.h
+++ b/MachO/macho.h
@@ -2,49 +2,46 @@
 #define MACHO_H
 
 #include "macho_global.h"
-#include <list>
 #include <CoreFoundation/CoreFoundation.h>
 
 class MachOFile;
 class MachOArchitecture;
-class Demangler;
 class DynamicLoader;
 
 class EXPORT MachO {
 private:
-	typedef std::list<MachOArchitecture*> MachOArchitectures;
+  typedef std::list<MachOArchitecture*> MachOArchitectures;
 public:
-    MachO(const string& fileName, const MachO* parent = 0);
-    ~MachO();
+  MachO(const std::string& fileName, const MachO* parent = 0);
+  ~MachO();
 
-    string getFileName() const;
-	
-	typedef MachOArchitectures::iterator MachOArchitecturesIterator;
-	typedef MachOArchitectures::const_iterator MachOArchitecturesConstIterator;
-    MachOArchitecturesIterator getArchitecturesBegin();
-    MachOArchitecturesIterator getArchitecturesEnd();
-    MachOArchitecture* getCompatibleArchitecture(MachOArchitecture* destArchitecture) const;
-	MachOArchitecture* getHostCompatibleArchitecture() const;
-    unsigned long long getSize() const;
-    time_t getLastModificationTime() const;
-    string getVersion() const;
-    string getName() const;
-    //sQIcon getIcon() const;*/
-	const MachO* getParent() { return parent;}
-    string getPath() const;
-    static Demangler* demangler;
-    static DynamicLoader* dynamicLoader;
-    static int referenceCounter;
+  std::string getFileName() const;
+
+  typedef MachOArchitectures::iterator MachOArchitecturesIterator;
+  typedef MachOArchitectures::const_iterator MachOArchitecturesConstIterator;
+  MachOArchitecturesIterator getArchitecturesBegin();
+  MachOArchitecturesIterator getArchitecturesEnd();
+  MachOArchitecture* getCompatibleArchitecture(MachOArchitecture* destArchitecture) const;
+  MachOArchitecture* getHostCompatibleArchitecture() const;
+  unsigned long long getSize() const;
+  time_t getLastModificationTime() const;
+  std::string getVersion() const;
+  std::string getName() const;
+  //sQIcon getIcon() const;*/
+  const MachO* getParent() { return parent;}
+  std::string getPath() const;
+  static DynamicLoader* dynamicLoader;
+  static int referenceCounter;
 private:
-	const MachO* parent;
-    MachOFile* file;
-	MachOArchitectures architectures;
-    CFBundleRef bundle;
+  const MachO* parent;
+  MachOFile* file;
+  MachOArchitectures architectures;
+  CFBundleRef bundle;
+
+  std::string getApplicationInBundle(const std::string& bundlePath);
+  static std::string extractStringFromCFStringRef(CFStringRef cfStringRef);
+  void init(const std::string& fileName, const MachO* parent);
 
-    string getApplicationInBundle(const string& bundlePath);
-    static string extractStringFromCFStringRef(CFStringRef cfStringRef);
-    void init(const string& fileName, const MachO* parent);
-	
 };
 
 #endif // MACHO_H
diff --git a/MachO/macho_global.h b/MachO/macho_global.h
index e73790b..3b90292 100644
--- a/MachO/macho_global.h
+++ b/MachO/macho_global.h
@@ -1,12 +1,6 @@
 #ifndef MACHO_GLOBAL_H
 #define MACHO_GLOBAL_H
 
-#include <string>
-
-using namespace std;    
-
-
-
 // TODO: use visibility options http://developer.apple.com/mac/library/documentation/DeveloperTools/Conceptual/CppRuntimeEnv/Articles/SymbolVisibility.html
 
 #if defined(MACHO_LIBRARY)
diff --git a/MachO/machoarchitecture.cpp b/MachO/machoarchitecture.cpp
index 14883f2..6a02c03 100644
--- a/MachO/machoarchitecture.cpp
+++ b/MachO/machoarchitecture.cpp
@@ -20,21 +20,21 @@ void MachOArchitecture::initParentArchitecture(const MachOArchitecture* parent)
     this->parent = parent;
 }
 
-string MachOArchitecture::getResolvedName(const string& name, const string& workingPath) const {
-    string absoluteFileName = MachO::dynamicLoader->getPathname(name, this, workingPath);
+std::string MachOArchitecture::getResolvedName(const std::string& name, const std::string& workingPath) const {
+    std::string absoluteFileName = MachO::dynamicLoader->getPathname(name, this, workingPath);
     if (!absoluteFileName.empty())
         return absoluteFileName;
     // return unresolved name if it cannot be resolved to a valid absolute name
     return name;
 }
 
-std::vector<string*> MachOArchitecture::getRpaths(bool recursively) const {
+std::vector<std::string*> MachOArchitecture::getRpaths(bool recursively) const {
     // try to get it from the parent (recursively)
-	std::vector<string*> prevRpaths;
+	std::vector<std::string*> prevRpaths;
 	if (recursively && parent) {
 		prevRpaths = parent->getRpaths(recursively);
 	} else {
-		prevRpaths = std::vector<string*>();
+		prevRpaths = std::vector<std::string*>();
 	}
     // add own rpaths to the end
     prevRpaths.insert(prevRpaths.end(), rpaths.begin(), rpaths.end());
@@ -62,11 +62,11 @@ void MachOArchitecture::readLoadCommands() const {
         RpathCommand* rpathCommand = dynamic_cast<RpathCommand*>(loadCommand);
         if (rpathCommand != 0) {
             // try to replace placeholder
-            string resolvedRpath = MachO::dynamicLoader->replacePlaceholder(rpathCommand->getPath(), this);
+            std::string resolvedRpath = MachO::dynamicLoader->replacePlaceholder(rpathCommand->getPath(), this);
             if (resolvedRpath.empty()) {
                 resolvedRpath = rpathCommand->getPath();
             }
-            rpaths.push_back(new string(resolvedRpath));
+            rpaths.push_back(new std::string(resolvedRpath));
         }
 		
 		// for uuid command...
@@ -97,7 +97,7 @@ MachOArchitecture::~MachOArchitecture() {
         delete *it;
     }
 
-    for (std::vector<string*>::iterator it2 = rpaths.begin();
+    for (std::vector<std::string*>::iterator it2 = rpaths.begin();
     it2 != rpaths.end();
     ++it2)
     {
diff --git a/MachO/machoarchitecture.h b/MachO/machoarchitecture.h
index 222a919..5944a93 100644
--- a/MachO/machoarchitecture.h
+++ b/MachO/machoarchitecture.h
@@ -2,8 +2,6 @@
 #define MACHOARCHITECTURE_H
 
 #include "macho_global.h"
-#include <list>
-#include <vector>
 
 class MachOFile;
 class MachOHeader;
@@ -13,40 +11,40 @@ class DylibCommand;
 class EXPORT MachOArchitecture
 {
 private:
-	typedef std::list<LoadCommand*> LoadCommands;
-	typedef LoadCommands::iterator LoadCommandsIterator;
+  typedef std::list<LoadCommand*> LoadCommands;
+  typedef LoadCommands::iterator LoadCommandsIterator;
 public:
-	typedef LoadCommands::const_iterator LoadCommandsConstIterator;
-	
-    MachOArchitecture(MachOFile& file, uint32_t magic, unsigned int size);
-    ~MachOArchitecture();
+  typedef LoadCommands::const_iterator LoadCommandsConstIterator;
+
+  MachOArchitecture(MachOFile& file, uint32_t magic, unsigned int size);
+  ~MachOArchitecture();
+
+  const MachOHeader* getHeader() { return header; }
+  LoadCommandsConstIterator getLoadCommandsBegin() const { if(!hasReadLoadCommands) { readLoadCommands(); } return loadCommands.begin(); }
+  LoadCommandsConstIterator getLoadCommandsEnd() const { if(!hasReadLoadCommands) { readLoadCommands(); } return loadCommands.end(); }
+  DylibCommand* getDynamicLibIdCommand() const { if(!hasReadLoadCommands) { readLoadCommands(); } return dynamicLibIdCommand; }
+  unsigned int getSize() const;
+  void initParentArchitecture(const MachOArchitecture* parent);
+  const MachOFile* getFile() const { return &file; }
+  std::string getDynamicLinker() const { return dylinker; }
+  std::vector<std::string*> getRpaths(bool recursively = true) const;
+  std::string getResolvedName(const std::string& name, const std::string& workingPath) const;
+  const uint8_t* getUuid() const;
 
-    const MachOHeader* getHeader() { return header; }
-    LoadCommandsConstIterator getLoadCommandsBegin() const { if(!hasReadLoadCommands) { readLoadCommands(); } return loadCommands.begin(); }
-    LoadCommandsConstIterator getLoadCommandsEnd() const { if(!hasReadLoadCommands) { readLoadCommands(); } return loadCommands.end(); }
-    DylibCommand* getDynamicLibIdCommand() const { if(!hasReadLoadCommands) { readLoadCommands(); } return dynamicLibIdCommand; }
-    unsigned int getSize() const;
-    void initParentArchitecture(const MachOArchitecture* parent);
-    const MachOFile* getFile() const { return &file; }
-	std::string getDynamicLinker() const { return dylinker; }
-    std::vector<string*> getRpaths(bool recursively = true) const;
-    string getResolvedName(const string& name, const string& workingPath) const;
-	const uint8_t* getUuid() const;
-	
 private:
-    MachOHeader* header;
-    MachOFile& file;
-    const unsigned int size;
-    mutable bool hasReadLoadCommands;
-    void readLoadCommands() const;
-    const MachOArchitecture* parent;	// architecture from which this architecture was loaded
+  MachOHeader* header;
+  MachOFile& file;
+  const unsigned int size;
+  mutable bool hasReadLoadCommands;
+  void readLoadCommands() const;
+  const MachOArchitecture* parent;	// architecture from which this architecture was loaded
 
-	// all those are mutable, because they are initialized not in the constructor, but in the readLoadCommands method
-    mutable LoadCommands loadCommands;
-    mutable DylibCommand* dynamicLibIdCommand;
-    mutable std::vector<string*> rpaths;
-	mutable const uint8_t* uuid;
-	mutable std::string dylinker;
+  // all those are mutable, because they are initialized not in the constructor, but in the readLoadCommands method
+  mutable LoadCommands loadCommands;
+  mutable DylibCommand* dynamicLibIdCommand;
+  mutable std::vector<std::string*> rpaths;
+  mutable const uint8_t* uuid;
+  mutable std::string dylinker;
 };
 
 #endif // MACHOARCHITECTURE_H
diff --git a/MachO/machocache.cpp b/MachO/machocache.cpp
index a387efe..edea46a 100644
--- a/MachO/machocache.cpp
+++ b/MachO/machocache.cpp
@@ -21,7 +21,7 @@ MachOCache::~MachOCache() {
 	}
 }
 
-MachO* MachOCache::getFile(const string& filename, const MachO* parent) {
+MachO* MachOCache::getFile(const std::string& filename, const MachO* parent) {
 	CacheMapIterator it = cache.find(filename);
 
 	// check if already in cache?
diff --git a/MachO/machocache.h b/MachO/machocache.h
index 6472465..3d7a5b2 100644
--- a/MachO/machocache.h
+++ b/MachO/machocache.h
@@ -2,7 +2,6 @@
 #define MACHOCACHE_H
 
 #include "macho_global.h"
-#include <map>
 
 class MachO;
 class EXPORT MachOCache
@@ -10,12 +9,12 @@ class EXPORT MachOCache
 	public:
 		MachOCache();
 		~MachOCache();
-		MachO* getFile(const string& filename, const MachO* parent);
+		MachO* getFile(const std::string& filename, const MachO* parent);
 		unsigned int getNumEntries();
 	private:
-		typedef map<string, MachO*> CacheMap;
+		typedef std::map<std::string, MachO*> CacheMap;
 		typedef CacheMap::iterator CacheMapIterator;
 		CacheMap cache;
 	};
 
-#endif // MACHOCACHE_H
\ No newline at end of file
+#endif // MACHOCACHE_H
diff --git a/MachO/machodemangleexception.cpp b/MachO/machodemangleexception.cpp
index 711c77f..de8c178 100644
--- a/MachO/machodemangleexception.cpp
+++ b/MachO/machodemangleexception.cpp
@@ -1,6 +1,6 @@
 #include "machodemangleexception.h"
 
-MachODemangleException::MachODemangleException(const string& cause) :
+MachODemangleException::MachODemangleException(const std::string& cause) :
 MachOException(cause)
 {
-}
\ No newline at end of file
+}
diff --git a/MachO/machodemangleexception.h b/MachO/machodemangleexception.h
index 20f3dd3..63f8985 100644
--- a/MachO/machodemangleexception.h
+++ b/MachO/machodemangleexception.h
@@ -9,7 +9,7 @@ class EXPORT MachODemangleException : public MachOException
 {
 
 public:
-	MachODemangleException(const string&);
+  MachODemangleException(const std::string&);
 };
 
 #endif // MACHODEMANGLEEXCEPTION_H
diff --git a/MachO/machoexception.cpp b/MachO/machoexception.cpp
index 77d9ce9..66ba42c 100644
--- a/MachO/machoexception.cpp
+++ b/MachO/machoexception.cpp
@@ -1,6 +1,6 @@
 #include "machoexception.h"
-MachOException::MachOException(const string& cause) :
-        cause(cause)
+
+MachOException::MachOException(const std::string& cause) : cause(cause)
 {
 }
 
diff --git a/MachO/machoexception.h b/MachO/machoexception.h
index 8032b91..a6b3c08 100644
--- a/MachO/machoexception.h
+++ b/MachO/machoexception.h
@@ -6,10 +6,10 @@
 class EXPORT MachOException
 {
 public:
-    MachOException(const string&);
-    const string& getCause() { return cause; }
+  MachOException(const std::string&);
+  const std::string& getCause() { return cause; }
 private:
-    const string cause;
+  const std::string cause;
 };
 
 #endif // MACHOEXCEPTION_H
diff --git a/MachO/machofile.cpp b/MachO/machofile.cpp
index 0428236..d8489e3 100644
--- a/MachO/machofile.cpp
+++ b/MachO/machofile.cpp
@@ -2,7 +2,7 @@
 #include "machoexception.h"
 #include "internalfile.h"
 
-MachOFile::MachOFile(const string& filename,const MachOFile* parent,  bool reversedByteOrder) :
+MachOFile::MachOFile(const std::string& filename,const MachOFile* parent,  bool reversedByteOrder) :
         file(InternalFile::create(filename)), position(0), reversedByteOrder(reversedByteOrder), parent(parent)
 {
     if (parent) {
@@ -21,15 +21,15 @@ MachOFile::~MachOFile() {
     file->release();
 }
 
-string MachOFile::getPath() const { 
+std::string MachOFile::getPath() const { 
 	return file->getPath(); 
 }
 
-string MachOFile::getName() const { 
-	string filename = file->getName(); 
+std::string MachOFile::getName() const { 
+	std::string filename = file->getName(); 
 	return filename;
 }
-string MachOFile::getTitle() const { return file->getTitle(); }
+std::string MachOFile::getTitle() const { return file->getTitle(); }
 unsigned long long MachOFile::getSize() const { return file->getSize(); }
 time_t MachOFile::getLastModificationTime() const { return file->getLastModificationTime(); }
 
diff --git a/MachO/machofile.h b/MachO/machofile.h
index 42208c9..cdcdea9 100644
--- a/MachO/machofile.h
+++ b/MachO/machofile.h
@@ -7,37 +7,37 @@ class InternalFile;
 class MachOFile
 {
 public:
-    MachOFile(const string& filename, const MachOFile* parent, bool reversedByteOrder = false);
-    MachOFile(const MachOFile& file, bool reversedByteOrder);
-    ~MachOFile();
+  MachOFile(const std::string& filename, const MachOFile* parent, bool reversedByteOrder = false);
+  MachOFile(const MachOFile& file, bool reversedByteOrder);
+  ~MachOFile();
 
-    uint32_t readUint32();
-    uint32_t readUint32LE();
-    uint32_t readUint32BE();
+  uint32_t readUint32();
+  uint32_t readUint32LE();
+  uint32_t readUint32BE();
 
-    void readBytes(char* result, size_t size);
+  void readBytes(char* result, size_t size);
 
-    uint32_t getUint32(unsigned int data) const {return (reversedByteOrder?reverseByteOrder(data):data);}
-    static uint32_t getUint32LE(uint32_t data);
-    static uint32_t getUint32BE(uint32_t data);
-    string getPath() const;
-    string getName() const;
-	string getTitle() const;
-    unsigned long long getSize() const;
-    void seek(long long int offset) { position = offset; }
-    long long int getPosition() const {  return position; }
-    const string& getExecutablePath() const { return executablePath; }
-	time_t getLastModificationTime() const;
+  uint32_t getUint32(unsigned int data) const {return (reversedByteOrder?reverseByteOrder(data):data);}
+  static uint32_t getUint32LE(uint32_t data);
+  static uint32_t getUint32BE(uint32_t data);
+  std::string getPath() const;
+  std::string getName() const;
+  std::string getTitle() const;
+  unsigned long long getSize() const;
+  void seek(long long int offset) { position = offset; }
+  long long int getPosition() const {  return position; }
+  const std::string& getExecutablePath() const { return executablePath; }
+  time_t getLastModificationTime() const;
 
- private:
-    static unsigned int convertByteOrder(char* data, bool isBigEndian, unsigned int numberOfBytes);
-    static unsigned int reverseByteOrder(unsigned int data);
+private:
+  static unsigned int convertByteOrder(char* data, bool isBigEndian, unsigned int numberOfBytes);
+  static unsigned int reverseByteOrder(unsigned int data);
 
-    InternalFile* file;
-    long long int position;
-    const bool reversedByteOrder;
-    const MachOFile* parent;
-    string executablePath;
+  InternalFile* file;
+  long long int position;
+  const bool reversedByteOrder;
+  const MachOFile* parent;
+  std::string executablePath;
 
 };
 
diff --git a/MachO/machoheader.h b/MachO/machoheader.h
index ba0b1ba..7fb45e2 100644
--- a/MachO/machoheader.h
+++ b/MachO/machoheader.h
@@ -3,7 +3,6 @@
 
 #include "MachO_global.h"
 #include "machofile.h"
-#include "/usr/include/mach-o/loader.h"
 
 class EXPORT MachOHeader
 {
diff --git a/MachO/symboltablecommand.h b/MachO/symboltablecommand.h
index 4a568c1..0586a7c 100644
--- a/MachO/symboltablecommand.h
+++ b/MachO/symboltablecommand.h
@@ -2,14 +2,12 @@
 #define SYMBOLTABLECOMMAND_H
 
 #include "loadcommand.h"
-#include <mach-o/nlist.h>
-#include <list>
 
 class SymbolTableEntry;
 class EXPORT SymbolTableCommand : public LoadCommand
 {
 private:
-	typedef list<const SymbolTableEntry*> SymbolTableEntries;
+	typedef std::list<const SymbolTableEntry*> SymbolTableEntries;
 	typedef SymbolTableEntries::iterator SymbolTableEntriesIterator;
 public:
 	typedef SymbolTableEntries::const_iterator SymbolTableEntriesConstIterator;
diff --git a/MachO/symboltableentry.cpp b/MachO/symboltableentry.cpp
index f2d827b..ffbc361 100644
--- a/MachO/symboltableentry.cpp
+++ b/MachO/symboltableentry.cpp
@@ -1,10 +1,9 @@
 #include "symboltableentry.h"
 #include "macho.h"
 #include "machofile.h"
-#include "demangler.h"
 
-SymbolTableEntry::SymbolTableEntry(MachOFile& file, char* stringTable) :
-        file(file), stringTable(stringTable)
+SymbolTableEntry::SymbolTableEntry(MachOFile& file, char* stringTable)
+: file(file), stringTable(stringTable)
 {
 }
 
@@ -12,37 +11,36 @@ SymbolTableEntry::~SymbolTableEntry() {
 
 }
 
-string SymbolTableEntry::getName(bool shouldDemangle) const {
-    const char* internalName = getInternalName();
-    if (shouldDemangle) {
-        return MachO::demangler->demangleName(internalName);
-    }
-    return internalName;
+std::string SymbolTableEntry::getName(bool shouldDemangle) const {
+  const char *name = getInternalName();
+  std::string result = name;
+  if (shouldDemangle) {
+    int status = 0;
+
+    // Convert real name to readable string. +1 to skip the leading underscore.
+    char *realName = abi::__cxa_demangle(name + 1, nullptr, nullptr, &status);
+    if (realName != nullptr)
+      result = realName;
+    free(realName);
+  }
+  return result;
 }
 
 SymbolTableEntry::Type SymbolTableEntry::getType() const {
-    unsigned int type = getInternalType();
+  unsigned int type = getInternalType();
 
-    if (type & N_STAB) {
-        return TypeDebug;
-    }
-    if (type & N_PEXT) {
-        return TypePrivateExtern;
-    }
-    if (type & N_EXT) {
-        if ((type & N_TYPE) == N_UNDF)
-            return TypeImported;
-        else
-            return TypeExported;
-    }
+  if (type & N_STAB) {
+    return TypeDebug;
+  }
+  if (type & N_PEXT) {
+    return TypePrivateExtern;
+  }
+  if (type & N_EXT) {
+    if ((type & N_TYPE) == N_UNDF)
+      return TypeImported;
     else
-        return TypeLocal;
+      return TypeExported;
+  }
+  else
+    return TypeLocal;
 }
-
-/*
-QDebug& operator<<(QDebug& dbg, const SymbolTableEntry& symbolTable) {
-    unsigned int type = symbolTable.getInternalType();
-    dbg.nospace() <<  "Name:" << symbolTable.getInternalName() << "Type" << (type & N_TYPE) << "STAB" << (type & N_STAB) << "PEXT" << (type & N_PEXT) << "NTYPE" << (type & N_TYPE) << "NEXT" << (type & N_EXT);
-    return dbg.space();
-}
-*/
diff --git a/MachO/symboltableentry.h b/MachO/symboltableentry.h
index 295ecf5..c696fba 100644
--- a/MachO/symboltableentry.h
+++ b/MachO/symboltableentry.h
@@ -8,26 +8,26 @@ class MachOFile;
 class EXPORT SymbolTableEntry
 {
 public:
-    SymbolTableEntry(MachOFile& file, char* stringTable);
-    virtual ~SymbolTableEntry();
-    string getName(bool shouldDemangle) const;
+  SymbolTableEntry(MachOFile& file, char* stringTable);
+  virtual ~SymbolTableEntry();
+  std::string getName(bool shouldDemangle) const;
 
-    enum Type {
-        TypeExported = 0,
-        TypeImported,
-        TypeLocal,
-        TypeDebug,
-        TypePrivateExtern,
-        NumTypes
-    };
+  enum Type {
+    TypeExported = 0,
+    TypeImported,
+    TypeLocal,
+    TypeDebug,
+    TypePrivateExtern,
+    NumTypes
+  };
 
-    Type getType() const;
-    virtual unsigned int getInternalType() const = 0;
-    virtual const char* getInternalName() const = 0;
+  Type getType() const;
+  virtual unsigned int getInternalType() const = 0;
+  virtual const char* getInternalName() const = 0;
 
 protected:
-    MachOFile& file;
-    char* stringTable;
+  MachOFile& file;
+  char* stringTable;
 };
 
 #endif // SYMBOLTABLEENTRY_H
diff --git a/README.md b/README.md
index bc09888..be73af3 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,7 @@
+[![Build Status](https://travis-ci.org/mike-lischke/macdependency.svg?branch=master)](https://travis-ci.org/mike-lischke/macdependency)
+
 MacDependency shows all dependent libraries and frameworks of a given executable, dynamic library or framework on Mac OS X. It is a GUI replacement for the otool command, and provides almost the same functionality as the Dependency Walker (http://www.dependencywalker.com) on Windows. 
 
-More information available in the [Wiki](https://github.com/kwin/macdependency/wiki).
+More information available in the [Wiki](../../wiki).
 
-![Screenshot](/../images/images/screenshot.jpg?raw=true)
+![Screenshot](images/macdependency.png)
diff --git a/images/macdependency.png b/images/macdependency.png
new file mode 100644
index 0000000..ad491d5
Binary files /dev/null and b/images/macdependency.png differ