complete previews on the team settings
moved image functions in a category of UIImage
other code cleanup
--- a/cocoaTouch/FortsViewController.h Fri Apr 16 17:17:43 2010 +0000
+++ b/cocoaTouch/FortsViewController.h Sat Apr 17 04:59:10 2010 +0000
@@ -1,5 +1,5 @@
//
-// FlagsViewController.h
+// FortsViewController.h
// HedgewarsMobile
//
// Created by Vittorio on 08/04/10.
--- a/cocoaTouch/FortsViewController.m Fri Apr 16 17:17:43 2010 +0000
+++ b/cocoaTouch/FortsViewController.m Sat Apr 17 04:59:10 2010 +0000
@@ -1,5 +1,5 @@
//
-// FlagsViewController.m
+// FortsViewController.m
// HedgewarsMobile
//
// Created by Vittorio on 08/04/10.
@@ -8,7 +8,7 @@
#import "FortsViewController.h"
#import "CommodityFunctions.h"
-#import "UIImageScale.h"
+#import "UIImageExtra.h"
@implementation FortsViewController
@synthesize teamDictionary, fortArray, fortSprites, lastIndexPath;
--- a/cocoaTouch/GravesViewController.h Fri Apr 16 17:17:43 2010 +0000
+++ b/cocoaTouch/GravesViewController.h Sat Apr 17 04:59:10 2010 +0000
@@ -1,5 +1,5 @@
//
-// HogHatViewController.h
+// GravesViewController.h
// HedgewarsMobile
//
// Created by Vittorio on 02/04/10.
--- a/cocoaTouch/GravesViewController.m Fri Apr 16 17:17:43 2010 +0000
+++ b/cocoaTouch/GravesViewController.m Sat Apr 17 04:59:10 2010 +0000
@@ -1,5 +1,5 @@
//
-// HogHatViewController.m
+// GravesViewController.m
// HedgewarsMobile
//
// Created by Vittorio on 02/04/10.
@@ -8,7 +8,7 @@
#import "GravesViewController.h"
#import "CommodityFunctions.h"
-
+#import "UIImageExtra.h"
@implementation GravesViewController
@synthesize teamDictionary, graveArray, graveSprites, lastIndexPath;
@@ -31,19 +31,12 @@
NSMutableArray *sprites = [[NSMutableArray alloc] initWithCapacity:[graveArray count]];
for (NSString *graveName in graveArray) {
NSString *gravePath = [[NSString alloc] initWithFormat:@"%@/%@",GRAVES_DIRECTORY(),graveName];
- UIImage *image = [[UIImage alloc] initWithContentsOfFile:gravePath];
- [gravePath release];
-
// because we also have multi frame graves, let's take the first one only
- if (image.size.height > 32) {
- CGRect firstSpriteArea = CGRectMake(0, 0, 32, 32);
- CGImageRef cgImage = CGImageCreateWithImageInRect([image CGImage], firstSpriteArea);
- [image release];
- image = [[UIImage alloc] initWithCGImage:cgImage];
- CGImageRelease(cgImage);
- }
- [sprites addObject:image];
- [image release];
+ UIImage *graveSprite = [[UIImage alloc] initWithContentsOfFile:gravePath andCutAt:CGRectMake(0, 0, 32, 32)];
+ [gravePath release];
+
+ [sprites addObject:graveSprite];
+ [graveSprite release];
}
self.graveSprites = sprites;
[sprites release];
--- a/cocoaTouch/HogHatViewController.m Fri Apr 16 17:17:43 2010 +0000
+++ b/cocoaTouch/HogHatViewController.m Sat Apr 17 04:59:10 2010 +0000
@@ -8,7 +8,7 @@
#import "HogHatViewController.h"
#import "CommodityFunctions.h"
-
+#import "UIImageExtra.h"
@implementation HogHatViewController
@synthesize teamDictionary, hatArray, hatSprites, lastIndexPath, selectedHog;
@@ -33,16 +33,9 @@
NSMutableArray *spriteArray = [[NSMutableArray alloc] initWithCapacity:[hatArray count]];
for (NSString *hat in hatArray) {
NSString *hatFile = [[NSString alloc] initWithFormat:@"%@/%@", hatsDirectory,hat];
-
- UIImage *image = [[UIImage alloc] initWithContentsOfFile: hatFile];
+ UIImage *hatSprite = [[UIImage alloc] initWithContentsOfFile: hatFile andCutAt:CGRectMake(0, 0, 32, 32)];
[hatFile release];
- CGRect firstSpriteArea = CGRectMake(0, 0, 32, 32);
- CGImageRef cgImage = CGImageCreateWithImageInRect([image CGImage], firstSpriteArea);
- [image release];
-
- UIImage *hatSprite = [[UIImage alloc] initWithCGImage:cgImage];
[spriteArray addObject:hatSprite];
- CGImageRelease(cgImage);
[hatSprite release];
}
self.hatSprites = spriteArray;
--- a/cocoaTouch/LevelViewController.h Fri Apr 16 17:17:43 2010 +0000
+++ b/cocoaTouch/LevelViewController.h Sat Apr 17 04:59:10 2010 +0000
@@ -1,5 +1,5 @@
//
-// HogHatViewController.h
+// LevelViewController.h
// HedgewarsMobile
//
// Created by Vittorio on 02/04/10.
--- a/cocoaTouch/LevelViewController.m Fri Apr 16 17:17:43 2010 +0000
+++ b/cocoaTouch/LevelViewController.m Sat Apr 17 04:59:10 2010 +0000
@@ -1,5 +1,5 @@
//
-// HogHatViewController.m
+// LevelViewController.m
// HedgewarsMobile
//
// Created by Vittorio on 02/04/10.
@@ -26,24 +26,26 @@
NSArray *array = [[NSArray alloc] initWithObjects:
NSLocalizedString(@"Human",@""),
- NSLocalizedString(@"Weaky",@""),
+ NSLocalizedString(@"Brutal",@""),
+ NSLocalizedString(@"Aggressive",@""),
+ NSLocalizedString(@"Bully",@""),
NSLocalizedString(@"Average",@""),
- NSLocalizedString(@"Bully",@""),
- NSLocalizedString(@"Aggressive",@""),nil];
+ NSLocalizedString(@"Weaky",@""),
+ nil];
self.levelArray = array;
[array release];
-/*
- NSMutableArray *sprites = [[NSMutableArray alloc] initWithCapacity:[graveArray count];
- for (NSString *graveName in graveArray) {
- NSString *gravePath = [[NSString alloc] initWithFormat@"%@/%@",GRAVES_DIRECTORY(),graveName];
- UIImage *image = [[UIImage alloc] initWithContentsOfFile:gravePath];
- [gravePath release];
- [sprites addObject:image];
- [image release];
+
+ NSMutableArray *sprites = [[NSMutableArray alloc] initWithCapacity:[levelArray count]];
+ for (int i = 0; i < [levelArray count]; i++) {
+ NSString *botlevelPath = [[NSString alloc] initWithFormat:@"%@/%d.png",BOTLEVELS_DIRECTORY(),i];
+ UIImage *image = [[UIImage alloc] initWithContentsOfFile:botlevelPath];
+ [botlevelPath release];
+ [sprites addObject:image];
+ [image release];
}
- self.graveSprites = sprites;
+ self.levelSprites = sprites;
[sprites release];
-*/
+
}
- (void)viewWillAppear:(BOOL)animated {
--- a/cocoaTouch/MasterViewController.m Fri Apr 16 17:17:43 2010 +0000
+++ b/cocoaTouch/MasterViewController.m Sat Apr 17 04:59:10 2010 +0000
@@ -118,14 +118,14 @@
int oldRow = (lastIndexPath != nil) ? [lastIndexPath row] : 0;
if (newRow != oldRow) {
+ [self.tableView deselectRowAtIndexPath:lastIndexPath animated:YES];
[detailViewController.navigationController popToRootViewControllerAnimated:NO];
UITableViewController *nextController = [self.controllers objectAtIndex:[indexPath row]];
- [detailViewController.navigationController pushViewController:nextController animated:YES];
+ [detailViewController.navigationController pushViewController:nextController animated:NO];
self.lastIndexPath = indexPath;
[self.tableView selectRowAtIndexPath:indexPath animated:YES scrollPosition:UITableViewScrollPositionNone];
}
- [self.tableView deselectRowAtIndexPath:indexPath animated:YES];
}
--- a/cocoaTouch/SingleTeamViewController.m Fri Apr 16 17:17:43 2010 +0000
+++ b/cocoaTouch/SingleTeamViewController.m Sat Apr 17 04:59:10 2010 +0000
@@ -14,6 +14,7 @@
#import "FlagsViewController.h"
#import "LevelViewController.h"
#import "CommodityFunctions.h"
+#import "UIImageExtra.h"
#define TEAMNAME_TAG 1234
@@ -132,29 +133,18 @@
// load the images of the hat for aach hog
NSString *normalHogFile = [[NSString alloc] initWithFormat:@"%@/Hedgehog.png",GRAPHICS_DIRECTORY()];
- UIImage *normalHogImage = [[UIImage alloc] initWithContentsOfFile:normalHogFile];
+ UIImage *normalHogSprite = [[UIImage alloc] initWithContentsOfFile:normalHogFile andCutAt:CGRectMake(96, 0, 32, 32)];
[normalHogFile release];
- CGRect hogSpriteArea = CGRectMake(96, 0, 32, 32);
- CGImageRef cgImg = CGImageCreateWithImageInRect([normalHogImage CGImage], hogSpriteArea);
- [normalHogImage release];
- UIImage *normalHogSprite = [[UIImage alloc] initWithCGImage:cgImg];
- CGImageRelease(cgImg);
NSArray *hogArray = [self.teamDictionary objectForKey:@"hedgehogs"];
NSMutableArray *array = [[NSMutableArray alloc] initWithCapacity:[hogArray count]];
for (NSDictionary *hog in hogArray) {
NSString *hatFile = [[NSString alloc] initWithFormat:@"%@/%@.png",HATS_DIRECTORY(),[hog objectForKey:@"hat"]];
- UIImage *image = [[UIImage alloc] initWithContentsOfFile: hatFile];
- [hatFile release];
- CGRect firstSpriteArea = CGRectMake(0, 0, 32, 32);
- CGImageRef cgImgage = CGImageCreateWithImageInRect([image CGImage], firstSpriteArea);
- [image release];
+ UIImage *hatSprite = [[UIImage alloc] initWithContentsOfFile:hatFile andCutAt:CGRectMake(0, 0, 32, 32)];
+ [hatFile release];
- UIImage *hatSprite = [[UIImage alloc] initWithCGImage:cgImgage];
- CGImageRelease(cgImgage);
-
- [array addObject:mergeHogHatSprites(normalHogSprite, hatSprite)];
+ [array addObject:[normalHogSprite mergeWith:hatSprite atPoint:CGPointMake(0, -5)]];
[hatSprite release];
}
[normalHogSprite release];
@@ -234,6 +224,7 @@
NSArray *hogArray;
UITableViewCell *cell;
NSInteger row = [indexPath row];
+ UIImage *accessoryImage;
switch ([indexPath section]) {
case 0:
@@ -313,9 +304,33 @@
cell.textLabel.text = [self.secondaryItems objectAtIndex:row];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
switch (row) {
+ case 0: // grave
+ accessoryImage = [[UIImage alloc] initWithContentsOfFile:[NSString stringWithFormat:@"%@/%@.png",
+ GRAVES_DIRECTORY(),[teamDictionary objectForKey:@"grave"]]
+ andCutAt:CGRectMake(0,0,32,32)];
+ cell.imageView.image = accessoryImage;
+ [accessoryImage release];
+ break;
+ case 2: // fort
+ accessoryImage = [[UIImage alloc] initWithContentsOfFile:[NSString stringWithFormat:@"%@/%@L.png",
+ FORTS_DIRECTORY(),[teamDictionary objectForKey:@"fort"]]];
+ cell.imageView.image = [accessoryImage scaleToSize:CGSizeMake(42, 42)];
+ [accessoryImage release];
+ break;
+
case 3: // flags
- cell.imageView.image = [UIImage imageWithContentsOfFile:[NSString stringWithFormat:@"%@/%@.png",
- FLAGS_DIRECTORY(),[teamDictionary objectForKey:@"flag"]]];
+ accessoryImage = [[UIImage alloc] initWithContentsOfFile:[NSString stringWithFormat:@"%@/%@.png",
+ FLAGS_DIRECTORY(),[teamDictionary objectForKey:@"flag"]]];
+ cell.imageView.image = accessoryImage;
+ [accessoryImage release];
+ break;
+ case 4: // level
+ accessoryImage = [[UIImage alloc] initWithContentsOfFile:[NSString stringWithFormat:@"%@/%d.png",
+ BOTLEVELS_DIRECTORY(),[[[[teamDictionary objectForKey:@"hedgehogs"]
+ objectAtIndex:0] objectForKey:@"level"]
+ intValue]]];
+ cell.imageView.image = accessoryImage;
+ [accessoryImage release];
break;
default:
cell.imageView.image = nil;
@@ -336,55 +351,52 @@
UITableViewController *nextController;
UITableViewCell *cell;
- switch (section) {
- case 2: //secondary items
- switch (row) {
- case 0: // grave
- if (nil == gravesViewController)
- gravesViewController = [[GravesViewController alloc] initWithStyle:UITableViewStyleGrouped];
-
- nextController = gravesViewController;
- break;
- case 1: // voice
- if (nil == voicesViewController)
- voicesViewController = [[VoicesViewController alloc] initWithStyle:UITableViewStyleGrouped];
-
- nextController = voicesViewController;
- break;
- case 2: // fort
- if (nil == fortsViewController)
- fortsViewController = [[FortsViewController alloc] initWithStyle:UITableViewStyleGrouped];
-
- nextController = fortsViewController;
- break;
- case 3: // flag
- if (nil == flagsViewController)
- flagsViewController = [[FlagsViewController alloc] initWithStyle:UITableViewStyleGrouped];
-
- nextController = flagsViewController;
- break;
- case 4: // level
- if (nil == levelViewController)
- levelViewController = [[LevelViewController alloc] initWithStyle:UITableViewStyleGrouped];
-
- nextController = levelViewController;
- break;
+ if (2 == section) {
+ switch (row) {
+ case 0: // grave
+ if (nil == gravesViewController)
+ gravesViewController = [[GravesViewController alloc] initWithStyle:UITableViewStyleGrouped];
+
+ nextController = gravesViewController;
+ break;
+ case 1: // voice
+ if (nil == voicesViewController)
+ voicesViewController = [[VoicesViewController alloc] initWithStyle:UITableViewStyleGrouped];
+
+ nextController = voicesViewController;
+ break;
+ case 2: // fort
+ if (nil == fortsViewController)
+ fortsViewController = [[FortsViewController alloc] initWithStyle:UITableViewStyleGrouped];
+
+ nextController = fortsViewController;
+ break;
+ case 3: // flag
+ if (nil == flagsViewController)
+ flagsViewController = [[FlagsViewController alloc] initWithStyle:UITableViewStyleGrouped];
+
+ nextController = flagsViewController;
+ break;
+ case 4: // level
+ if (nil == levelViewController)
+ levelViewController = [[LevelViewController alloc] initWithStyle:UITableViewStyleGrouped];
+
+ nextController = levelViewController;
+ break;
+ }
+
+ nextController.title = [secondaryItems objectAtIndex:row];
+ [nextController setTeamDictionary:teamDictionary];
+ [self.navigationController pushViewController:nextController animated:YES];
+ } else {
+ cell = [aTableView cellForRowAtIndexPath:indexPath];
+ for (UIView *oneView in cell.contentView.subviews) {
+ if ([oneView isMemberOfClass:[UITextField class]]) {
+ textFieldBeingEdited = (UITextField *)oneView;
+ [textFieldBeingEdited becomeFirstResponder];
}
-
- nextController.title = [secondaryItems objectAtIndex:row];
- [nextController setTeamDictionary:teamDictionary];
- [self.navigationController pushViewController:nextController animated:YES];
- break;
- default:
- cell = [aTableView cellForRowAtIndexPath:indexPath];
- for (UIView *oneView in cell.contentView.subviews) {
- if ([oneView isMemberOfClass:[UITextField class]]) {
- textFieldBeingEdited = (UITextField *)oneView;
- [textFieldBeingEdited becomeFirstResponder];
- }
- }
- [aTableView deselectRowAtIndexPath:indexPath animated:NO];
- break;
+ }
+ [aTableView deselectRowAtIndexPath:indexPath animated:NO];
}
}
@@ -421,6 +433,7 @@
flagsViewController = nil;
fortsViewController = nil;
gravesViewController = nil;
+ levelViewController = nil;
[super viewDidUnload];
}
@@ -434,6 +447,7 @@
[fortsViewController release];
[gravesViewController release];
[flagsViewController release];
+ [levelViewController release];
[super dealloc];
}
--- a/cocoaTouch/SplitViewRootController.m Fri Apr 16 17:17:43 2010 +0000
+++ b/cocoaTouch/SplitViewRootController.m Sat Apr 17 04:59:10 2010 +0000
@@ -38,8 +38,9 @@
Class splitViewControllerClass = NSClassFromString(@"UISplitViewController");
if (splitViewControllerClass) {
splitViewRootController = [[splitViewControllerClass alloc] init];
- CGRect screensize = [[UIScreen mainScreen] bounds];
- [[splitViewRootController view] setFrame:CGRectMake(0, 0, screensize.size.height, screensize.size.width)];
+ //[[splitViewRootController view] setAutoresizingMask: UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth];
+
+ [[splitViewRootController view] setFrame:CGRectMake(0, 0, 1024, 1024)]; // yeah it's funny
MasterViewController *masterViewController = [[MasterViewController alloc] initWithStyle:UITableViewStylePlain];
UINavigationController *mainNavController = [[UINavigationController alloc] initWithRootViewController:masterViewController];
--- a/cocoaTouch/TeamSettingsViewController.m Fri Apr 16 17:17:43 2010 +0000
+++ b/cocoaTouch/TeamSettingsViewController.m Sat Apr 17 04:59:10 2010 +0000
@@ -76,6 +76,9 @@
[self.listOfTeams addObject:fileName];
[fileName release];
+ // order the array alphabetically, so teams will keep their position
+ [self.listOfTeams sortUsingSelector:@selector(compare:)];
+
[self.tableView reloadData];
}
--- a/cocoaTouch/VoicesViewController.h Fri Apr 16 17:17:43 2010 +0000
+++ b/cocoaTouch/VoicesViewController.h Sat Apr 17 04:59:10 2010 +0000
@@ -1,5 +1,5 @@
//
-// HogHatViewController.h
+// VoicesViewController.h
// HedgewarsMobile
//
// Created by Vittorio on 02/04/10.
--- a/cocoaTouch/VoicesViewController.m Fri Apr 16 17:17:43 2010 +0000
+++ b/cocoaTouch/VoicesViewController.m Sat Apr 17 04:59:10 2010 +0000
@@ -1,5 +1,5 @@
//
-// HogHatViewController.m
+// VoicesViewController.m
// HedgewarsMobile
//
// Created by Vittorio on 02/04/10.
--- a/cocoaTouch/otherSrc/CommodityFunctions.h Fri Apr 16 17:17:43 2010 +0000
+++ b/cocoaTouch/otherSrc/CommodityFunctions.h Sat Apr 17 04:59:10 2010 +0000
@@ -17,14 +17,14 @@
#define TEAMS_DIRECTORY() [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) \
objectAtIndex:0] stringByAppendingString:@"/Teams/"]
-#define VOICES_DIRECTORY() [[[NSBundle mainBundle] resourcePath] stringByAppendingString:@"/Data/Sounds/voices/"]
#define GRAPHICS_DIRECTORY() [[[NSBundle mainBundle] resourcePath] stringByAppendingString:@"/Data/Graphics/"]
#define HATS_DIRECTORY() [[[NSBundle mainBundle] resourcePath] stringByAppendingString:@"/Data/Graphics/Hats/"]
+#define GRAVES_DIRECTORY() [[[NSBundle mainBundle] resourcePath] stringByAppendingString:@"/Data/Graphics/Graves/"]
+#define BOTLEVELS_DIRECTORY() [[[NSBundle mainBundle] resourcePath] stringByAppendingString:@"/Data/Graphics/Hedgehog/botlevels"]
+#define FORTS_DIRECTORY() [[[NSBundle mainBundle] resourcePath] stringByAppendingString:@"/Data/Forts/"]
+#define VOICES_DIRECTORY() [[[NSBundle mainBundle] resourcePath] stringByAppendingString:@"/Data/Sounds/voices/"]
#define FLAGS_DIRECTORY() [[[NSBundle mainBundle] resourcePath] stringByAppendingString:@"/Data/Graphics/Flags/"]
-#define GRAVES_DIRECTORY() [[[NSBundle mainBundle] resourcePath] stringByAppendingString:@"/Data/Graphics/Graves/"]
-#define FORTS_DIRECTORY() [[[NSBundle mainBundle] resourcePath] stringByAppendingString:@"/Data/Forts/"]
void createTeamNamed (NSString *nameWithoutExt);
-UIImage *mergeHogHatSprites (UIImage *firstImage, UIImage *secondImage);
BOOL rotationManager (UIInterfaceOrientation interfaceOrientation);
--- a/cocoaTouch/otherSrc/CommodityFunctions.m Fri Apr 16 17:17:43 2010 +0000
+++ b/cocoaTouch/otherSrc/CommodityFunctions.m Sat Apr 17 04:59:10 2010 +0000
@@ -36,21 +36,12 @@
[hedgehogs release];
NSString *teamFile = [[NSString alloc] initWithFormat:@"%@/%@.plist", teamsDirectory, nameWithoutExt];
- NSLog(@"%@",teamFile);
+
[theTeam writeToFile:teamFile atomically:YES];
[teamFile release];
[theTeam release];
}
-UIImage *mergeHogHatSprites (UIImage *firstImage, UIImage *secondImage) {
- UIGraphicsBeginImageContext(firstImage.size);
- [firstImage drawAtPoint:CGPointMake(0,0)];
- [secondImage drawAtPoint:CGPointMake(0,-5)];
- UIImage *resultImage = UIGraphicsGetImageFromCurrentImageContext();
- UIGraphicsEndImageContext();
- return resultImage; // autoreleased
-}
-
BOOL rotationManager (UIInterfaceOrientation interfaceOrientation) {
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/cocoaTouch/otherSrc/UIImageExtra.h Sat Apr 17 04:59:10 2010 +0000
@@ -0,0 +1,18 @@
+//
+// UIImageExtra.h
+// HedgewarsMobile
+//
+// Created by Vittorio on 08/04/10.
+// Copyright 2010 __MyCompanyName__. All rights reserved.
+//
+
+#import <Foundation/Foundation.h>
+
+
+@interface UIImage (extra)
+
+-(UIImage *)scaleToSize:(CGSize) size;
+-(UIImage *)mergeWith:(UIImage *)secondImage atPoint:(CGPoint) secondImagePoint;
+-(id) initWithContentsOfFile:(NSString *)path andCutAt:(CGRect) rect;
+
+@end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/cocoaTouch/otherSrc/UIImageExtra.m Sat Apr 17 04:59:10 2010 +0000
@@ -0,0 +1,77 @@
+//
+// UIImageExtra.m
+// HedgewarsMobile
+//
+// Created by Vittorio on 08/04/10.
+// Copyright 2010 __MyCompanyName__. All rights reserved.
+//
+
+#import "UIImageExtra.h"
+
+
+@implementation UIImage (extra)
+
+-(UIImage *)scaleToSize:(CGSize) size {
+ // Create a bitmap graphics context
+ // This will also set it as the current context
+ UIGraphicsBeginImageContext(size);
+
+ // Draw the scaled image in the current context
+ [self drawInRect:CGRectMake(0, 0, size.width, size.height)];
+
+ // Create a new image from current context
+ UIImage* scaledImage = UIGraphicsGetImageFromCurrentImageContext();
+
+ // Pop the current context from the stack
+ UIGraphicsEndImageContext();
+
+ // Return our new scaled image (autoreleased)
+ return scaledImage;
+}
+
+-(UIImage *)mergeWith:(UIImage *)secondImage atPoint:(CGPoint) secondImagePoint {
+ // create a contex of size of the background image
+ UIGraphicsBeginImageContext(self.size);
+
+ // drav the background image
+ [self drawAtPoint:CGPointMake(0,0)];
+
+ // draw the image on top of the first image
+ [secondImage drawAtPoint:secondImagePoint];
+
+ // create an image from the current contex (not thread safe)
+ UIImage *resultImage = UIGraphicsGetImageFromCurrentImageContext();
+
+ // free drawing contex
+ UIGraphicsEndImageContext();
+
+ // return the resulting autoreleased image
+ return resultImage;
+}
+
+-(id) initWithContentsOfFile:(NSString *)path andCutAt:(CGRect) rect {
+ // load image from path
+ UIImage *image = [[UIImage alloc] initWithContentsOfFile: path];
+
+ if (nil != image) {
+ // get its CGImage representation with a give size
+ CGImageRef cgImgage = CGImageCreateWithImageInRect([image CGImage], rect);
+
+ // clean memory
+ [image release];
+
+ // create a UIImage from the CGImage (memory must be allocated already)
+ UIImage *sprite = [self initWithCGImage:cgImgage];
+
+ // clean memory
+ CGImageRelease(cgImgage);
+
+ // return resulting image
+ return sprite;
+ } else {
+ NSLog(@"initWithContentsOfFile: andCutAt: FAILED");
+ return nil;
+ }
+}
+
+@end
--- a/cocoaTouch/otherSrc/UIImageScale.h Fri Apr 16 17:17:43 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,16 +0,0 @@
-//
-// UIImageScale.h
-// HedgewarsMobile
-//
-// Created by Vittorio on 08/04/10.
-// Copyright 2010 __MyCompanyName__. All rights reserved.
-//
-
-#import <Foundation/Foundation.h>
-
-
-@interface UIImage (scale)
-
--(UIImage*)scaleToSize:(CGSize)size;
-
-@end
--- a/cocoaTouch/otherSrc/UIImageScale.m Fri Apr 16 17:17:43 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,33 +0,0 @@
-//
-// UIImageScale.m
-// HedgewarsMobile
-//
-// Created by Vittorio on 08/04/10.
-// Copyright 2010 __MyCompanyName__. All rights reserved.
-//
-
-#import "UIImageScale.h"
-
-
-@implementation UIImage (scale)
-
--(UIImage*)scaleToSize:(CGSize)size
-{
- // Create a bitmap graphics context
- // This will also set it as the current context
- UIGraphicsBeginImageContext(size);
-
- // Draw the scaled image in the current context
- [self drawInRect:CGRectMake(0, 0, size.width, size.height)];
-
- // Create a new image from current context
- UIImage* scaledImage = UIGraphicsGetImageFromCurrentImageContext();
-
- // Pop the current context from the stack
- UIGraphicsEndImageContext();
-
- // Return our new scaled image
- return scaledImage;
-}
-
-@end
--- a/project_files/HedgewarsMobile/HedgewarsMobile.xcodeproj/project.pbxproj Fri Apr 16 17:17:43 2010 +0000
+++ b/project_files/HedgewarsMobile/HedgewarsMobile.xcodeproj/project.pbxproj Sat Apr 17 04:59:10 2010 +0000
@@ -101,13 +101,13 @@
6179936D11501D3D00BA94A9 /* arrowRight.png in Resources */ = {isa = PBXBuildFile; fileRef = 6179936911501D3D00BA94A9 /* arrowRight.png */; };
6179936E11501D3D00BA94A9 /* arrowUp.png in Resources */ = {isa = PBXBuildFile; fileRef = 6179936A11501D3D00BA94A9 /* arrowUp.png */; };
617995321150403800BA94A9 /* joyPush.png in Resources */ = {isa = PBXBuildFile; fileRef = 617995311150403800BA94A9 /* joyPush.png */; };
+ 6184DEA311795DBD00AF6EFA /* UIImageExtra.m in Sources */ = {isa = PBXBuildFile; fileRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */; };
618BE5931175126900F22556 /* LevelViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 618BE5921175126900F22556 /* LevelViewController.m */; };
618BE60311751F4F00F22556 /* GravesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 618BE60211751F4F00F22556 /* GravesViewController.m */; };
618BE6A3117527CD00F22556 /* VoicesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 618BE6A2117527CD00F22556 /* VoicesViewController.m */; };
619C51BF116E40FC0049FD84 /* CommodityFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = 619C51BE116E40FC0049FD84 /* CommodityFunctions.m */; };
619C5232116E4E810049FD84 /* FlagsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 619C5231116E4E810049FD84 /* FlagsViewController.m */; };
619C533E116E70050049FD84 /* FortsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 619C533D116E70050049FD84 /* FortsViewController.m */; };
- 619C58AB116E752A0049FD84 /* UIImageScale.m in Sources */ = {isa = PBXBuildFile; fileRef = 619C58AA116E752A0049FD84 /* UIImageScale.m */; };
61A1188511683A8C00359010 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 61A117FE1168322700359010 /* CoreGraphics.framework */; };
61A118CA11683C7600359010 /* MainMenuViewController-iPad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 61A118C911683C7600359010 /* MainMenuViewController-iPad.xib */; };
61A118CC11683C7A00359010 /* MainMenuViewController-iPhone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 61A118CB11683C7A00359010 /* MainMenuViewController-iPhone.xib */; };
@@ -278,6 +278,8 @@
6179936911501D3D00BA94A9 /* arrowRight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = arrowRight.png; path = ../../cocoaTouch/resources/arrowRight.png; sourceTree = SOURCE_ROOT; };
6179936A11501D3D00BA94A9 /* arrowUp.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = arrowUp.png; path = ../../cocoaTouch/resources/arrowUp.png; sourceTree = SOURCE_ROOT; };
617995311150403800BA94A9 /* joyPush.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = joyPush.png; path = ../../cocoaTouch/resources/joyPush.png; sourceTree = SOURCE_ROOT; };
+ 6184DEA111795DBD00AF6EFA /* UIImageExtra.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = UIImageExtra.h; path = ../../cocoaTouch/otherSrc/UIImageExtra.h; sourceTree = SOURCE_ROOT; };
+ 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = UIImageExtra.m; path = ../../cocoaTouch/otherSrc/UIImageExtra.m; sourceTree = SOURCE_ROOT; };
618BE5911175126900F22556 /* LevelViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LevelViewController.h; path = ../../cocoaTouch/LevelViewController.h; sourceTree = SOURCE_ROOT; };
618BE5921175126900F22556 /* LevelViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = LevelViewController.m; path = ../../cocoaTouch/LevelViewController.m; sourceTree = SOURCE_ROOT; };
618BE60111751F4F00F22556 /* GravesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GravesViewController.h; path = ../../cocoaTouch/GravesViewController.h; sourceTree = SOURCE_ROOT; };
@@ -290,8 +292,6 @@
619C5231116E4E810049FD84 /* FlagsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FlagsViewController.m; path = ../../cocoaTouch/FlagsViewController.m; sourceTree = SOURCE_ROOT; };
619C533C116E70050049FD84 /* FortsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FortsViewController.h; path = ../../cocoaTouch/FortsViewController.h; sourceTree = SOURCE_ROOT; };
619C533D116E70050049FD84 /* FortsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FortsViewController.m; path = ../../cocoaTouch/FortsViewController.m; sourceTree = SOURCE_ROOT; };
- 619C58A9116E752A0049FD84 /* UIImageScale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = UIImageScale.h; path = ../../cocoaTouch/otherSrc/UIImageScale.h; sourceTree = SOURCE_ROOT; };
- 619C58AA116E752A0049FD84 /* UIImageScale.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = UIImageScale.m; path = ../../cocoaTouch/otherSrc/UIImageScale.m; sourceTree = SOURCE_ROOT; };
61A117FE1168322700359010 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
61A118C911683C7600359010 /* MainMenuViewController-iPad.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = "MainMenuViewController-iPad.xib"; path = "../../cocoaTouch/xib/MainMenuViewController-iPad.xib"; sourceTree = SOURCE_ROOT; };
61A118CB11683C7A00359010 /* MainMenuViewController-iPhone.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = "MainMenuViewController-iPhone.xib"; path = "../../cocoaTouch/xib/MainMenuViewController-iPhone.xib"; sourceTree = SOURCE_ROOT; };
@@ -379,6 +379,8 @@
29B97315FDCFA39411CA2CEA /* Other Sources */ = {
isa = PBXGroup;
children = (
+ 6184DEA111795DBD00AF6EFA /* UIImageExtra.h */,
+ 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */,
61798857114AA48A00BA94A9 /* CGPointUtils.h */,
61798856114AA48A00BA94A9 /* CGPointUtils.c */,
619C51BD116E40FC0049FD84 /* CommodityFunctions.h */,
@@ -388,8 +390,6 @@
61798858114AA48A00BA94A9 /* IMG_png.c */,
6179885A114AA48A00BA94A9 /* PascalImports.h */,
32CA4F630368D1EE00C91783 /* HedgewarsMobile_Prefix.pch */,
- 619C58A9116E752A0049FD84 /* UIImageScale.h */,
- 619C58AA116E752A0049FD84 /* UIImageScale.m */,
);
name = "Other Sources";
sourceTree = "<group>";
@@ -844,7 +844,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "#copy new stuff over old stuff\nsvn export --force ${PROJECT_DIR}/../../share/hedgewars/Data ${PROJECT_DIR}/Data\n\n#delete all CMakeLists.txt and image source files\nfind ${PROJECT_DIR}/Data -name CMakeLists.txt -delete\nfind ${PROJECT_DIR}/Data -name *.svg -delete\nfind ${PROJECT_DIR}/Data -name *.sifz -delete\n\n#delete desktop frontend translation\nrm -rf ${PROJECT_DIR}/Data/Locale/hedgewars_*\n\n#the following ones must be removed when their support is implemented\n\n#delete all sound files\n#rm -rf ${PROJECT_DIR}/Data/Sounds/\n#rm -rf ${PROJECT_DIR}/Data/Music/\n\n#delete all names\nrm -rf ${PROJECT_DIR}/Data/Names/\n\n#delete all missions\nrm -rf ${PROJECT_DIR}/Data/Missions/\n\n#delete all reserved hats\nrm -rf ${PROJECT_DIR}/Data/Graphics/Hats/Reserved/";
+ shellScript = "#copy new stuff over old stuff\nsvn export --force ${PROJECT_DIR}/../../share/hedgewars/Data ${PROJECT_DIR}/Data\ncp -R ${PROJECT_DIR}/../../QTfrontend/res/botlevels ${PROJECT_DIR}/Data/Graphics/Hedgehog/botlevels\n\n#delete all CMakeLists.txt and image source files\nfind ${PROJECT_DIR}/Data -name CMakeLists.txt -delete\nfind ${PROJECT_DIR}/Data -name *.svg -delete\nfind ${PROJECT_DIR}/Data -name *.sifz -delete\nfind ${PROJECT_DIR}/Data -name *.xcf -delete\n\n#delete desktop frontend translation\nrm -rf ${PROJECT_DIR}/Data/Locale/hedgewars_*\n\n#the following ones must be removed when their support is implemented\n\n#delete all sound files\n#rm -rf ${PROJECT_DIR}/Data/Sounds/\n#rm -rf ${PROJECT_DIR}/Data/Music/\n\n#delete all names\nrm -rf ${PROJECT_DIR}/Data/Names/\n\n#delete all missions\nrm -rf ${PROJECT_DIR}/Data/Missions/\n\n#delete all reserved hats\nrm -rf ${PROJECT_DIR}/Data/Graphics/Hats/Reserved/";
showEnvVarsInLog = 0;
};
9283011B0F10CB2D00CC5A3C /* Build libfpc.a */ = {
@@ -938,10 +938,10 @@
619C51BF116E40FC0049FD84 /* CommodityFunctions.m in Sources */,
619C5232116E4E810049FD84 /* FlagsViewController.m in Sources */,
619C533E116E70050049FD84 /* FortsViewController.m in Sources */,
- 619C58AB116E752A0049FD84 /* UIImageScale.m in Sources */,
618BE5931175126900F22556 /* LevelViewController.m in Sources */,
618BE60311751F4F00F22556 /* GravesViewController.m in Sources */,
618BE6A3117527CD00F22556 /* VoicesViewController.m in Sources */,
+ 6184DEA311795DBD00AF6EFA /* UIImageExtra.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
--- a/project_files/HedgewarsMobile/HedgewarsMobile.xcodeproj/vittorio.mode1v3 Fri Apr 16 17:17:43 2010 +0000
+++ b/project_files/HedgewarsMobile/HedgewarsMobile.xcodeproj/vittorio.mode1v3 Sat Apr 17 04:59:10 2010 +0000
@@ -229,6 +229,8 @@
<key>Layout</key>
<array>
<dict>
+ <key>BecomeActive</key>
+ <true/>
<key>ContentConfiguration</key>
<dict>
<key>PBXBottomSmartGroupGIDs</key>
@@ -270,20 +272,26 @@
<string>611B0A94116B621600112153</string>
<string>61A11AD01168DB1F00359010</string>
<string>618BE596117512A300F22556</string>
+ <string>29B97315FDCFA39411CA2CEA</string>
<string>29B97317FDCFA39411CA2CEA</string>
<string>1C37FBAC04509CD000000102</string>
+ <string>6184DF76117973AF00AF6EFA</string>
<string>1C37FAAC04509CD000000102</string>
<string>1C37FABC05509CD000000102</string>
</array>
<key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>
<array>
<array>
- <integer>1</integer>
+ <integer>31</integer>
+ <integer>20</integer>
+ <integer>5</integer>
+ <integer>4</integer>
+ <integer>2</integer>
<integer>0</integer>
</array>
</array>
<key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>
- <string>{{0, 0}, {244, 558}}</string>
+ <string>{{0, 221}, {244, 558}}</string>
</dict>
<key>PBXTopSmartGroupGIDs</key>
<array/>
@@ -302,7 +310,7 @@
<real>244</real>
</array>
<key>RubberWindowFrame</key>
- <string>469 489 801 617 0 0 1920 1178 </string>
+ <string>685 523 801 617 0 0 1920 1178 </string>
</dict>
<key>Module</key>
<string>PBXSmartGroupTreeModule</string>
@@ -318,7 +326,7 @@
<key>PBXProjectModuleGUID</key>
<string>1CE0B20306471E060097A5F4</string>
<key>PBXProjectModuleLabel</key>
- <string>uMisc.s</string>
+ <string>UIImageExtra.m</string>
<key>PBXSplitModuleInNavigatorKey</key>
<dict>
<key>Split0</key>
@@ -326,11 +334,11 @@
<key>PBXProjectModuleGUID</key>
<string>1CE0B20406471E060097A5F4</string>
<key>PBXProjectModuleLabel</key>
- <string>uMisc.s</string>
+ <string>UIImageExtra.m</string>
<key>_historyCapacity</key>
<integer>0</integer>
<key>bookmark</key>
- <string>614A818A1178C72A00552546</string>
+ <string>6184DFF81179809B00AF6EFA</string>
<key>history</key>
<array>
<string>6179889D114AA5BD00BA94A9</string>
@@ -461,7 +469,6 @@
<string>619C52BD116E56330049FD84</string>
<string>619C52BF116E56330049FD84</string>
<string>619C52C1116E56330049FD84</string>
- <string>619C5373116E731F0049FD84</string>
<string>619C5859116E73B00049FD84</string>
<string>619C585B116E73B00049FD84</string>
<string>619C585D116E73B00049FD84</string>
@@ -496,7 +503,6 @@
<string>619C5890116E73B00049FD84</string>
<string>619C5892116E73B00049FD84</string>
<string>619C58B2116E76080049FD84</string>
- <string>619C58B3116E76080049FD84</string>
<string>6196317D116E89DF00C47CEE</string>
<string>61F8E0D6116E98A900108149</string>
<string>6157F7BA116F3B2D005E4A26</string>
@@ -509,16 +515,12 @@
<string>61D96559117180D9001EB3B4</string>
<string>61D96591117182B1001EB3B4</string>
<string>618BE56511750F6B00F22556</string>
- <string>618BE56611750F6B00F22556</string>
<string>618BE599117512E400F22556</string>
<string>618BE59A117512E400F22556</string>
- <string>618BE5FD11751F1C00F22556</string>
<string>618BE5FE11751F1C00F22556</string>
- <string>618BE61E117520B700F22556</string>
<string>618BE6C2117528B200F22556</string>
<string>618BE6C3117528B200F22556</string>
<string>618BE6E81175298700F22556</string>
- <string>618BE70011752C5200F22556</string>
<string>618BE70111752C5200F22556</string>
<string>618BE70311752C5200F22556</string>
<string>618BE70511752C5200F22556</string>
@@ -528,7 +530,14 @@
<string>61BD54C411789A020038D495</string>
<string>614A80ED1178BB9B00552546</string>
<string>614A81041178BCC500552546</string>
- <string>614A81441178C16800552546</string>
+ <string>6184DE201178F4BD00AF6EFA</string>
+ <string>6184DF001179666500AF6EFA</string>
+ <string>6184DF10117967DC00AF6EFA</string>
+ <string>6184DF4411796A9200AF6EFA</string>
+ <string>6184DF4511796A9200AF6EFA</string>
+ <string>6184DF9A1179752300AF6EFA</string>
+ <string>6184DFE111797D2500AF6EFA</string>
+ <string>6184DFE211797D2500AF6EFA</string>
</array>
</dict>
<key>SplitCount</key>
@@ -540,18 +549,16 @@
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
- <string>{{0, 0}, {535, 258}}</string>
+ <string>{{0, 0}, {535, 246}}</string>
<key>RubberWindowFrame</key>
- <string>469 489 801 617 0 0 1920 1178 </string>
+ <string>685 523 801 617 0 0 1920 1178 </string>
</dict>
<key>Module</key>
<string>PBXNavigatorGroup</string>
<key>Proportion</key>
- <string>258pt</string>
+ <string>246pt</string>
</dict>
<dict>
- <key>BecomeActive</key>
- <true/>
<key>ContentConfiguration</key>
<dict>
<key>PBXProjectModuleGUID</key>
@@ -562,14 +569,14 @@
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
- <string>{{0, 263}, {535, 313}}</string>
+ <string>{{0, 251}, {535, 325}}</string>
<key>RubberWindowFrame</key>
- <string>469 489 801 617 0 0 1920 1178 </string>
+ <string>685 523 801 617 0 0 1920 1178 </string>
</dict>
<key>Module</key>
<string>XCDetailModule</string>
<key>Proportion</key>
- <string>313pt</string>
+ <string>325pt</string>
</dict>
</array>
<key>Proportion</key>
@@ -588,9 +595,9 @@
</array>
<key>TableOfContents</key>
<array>
- <string>614A815E1178C23E00552546</string>
+ <string>6184DE121178F46B00AF6EFA</string>
<string>1CE0B1FE06471DED0097A5F4</string>
- <string>614A815F1178C23E00552546</string>
+ <string>6184DE131178F46B00AF6EFA</string>
<string>1CE0B20306471E060097A5F4</string>
<string>1CE0B20506471E060097A5F4</string>
</array>
@@ -728,16 +735,16 @@
<integer>5</integer>
<key>WindowOrderList</key>
<array>
- <string>614A81891178C72A00552546</string>
- <string>614A81861178C70600552546</string>
+ <string>6184DE581178F75B00AF6EFA</string>
+ <string>6184DE371178F56B00AF6EFA</string>
+ <string>6184DE2F1178F4BD00AF6EFA</string>
<string>1C78EAAD065D492600B07095</string>
<string>1CD10A99069EF8BA00B06720</string>
- <string>614A81601178C23E00552546</string>
<string>61798848114AA42600BA94A9</string>
<string>/Users/vittorio/hedgewars/trunk/project_files/HedgewarsMobile/HedgewarsMobile.xcodeproj</string>
</array>
<key>WindowString</key>
- <string>469 489 801 617 0 0 1920 1178 </string>
+ <string>685 523 801 617 0 0 1920 1178 </string>
<key>WindowToolsV3</key>
<array>
<dict>
@@ -753,12 +760,14 @@
<key>Dock</key>
<array>
<dict>
+ <key>BecomeActive</key>
+ <true/>
<key>ContentConfiguration</key>
<dict>
<key>PBXProjectModuleGUID</key>
<string>1CD0528F0623707200166675</string>
<key>PBXProjectModuleLabel</key>
- <string></string>
+ <string>FortsViewController.m</string>
<key>StatusBarVisibility</key>
<true/>
</dict>
@@ -814,7 +823,7 @@
<key>TableOfContents</key>
<array>
<string>61798848114AA42600BA94A9</string>
- <string>614A81631178C23E00552546</string>
+ <string>6184DE141178F46B00AF6EFA</string>
<string>1CD0528F0623707200166675</string>
<string>XCMainBuildResultsModuleGUID</string>
</array>
@@ -938,13 +947,13 @@
<key>TableOfContents</key>
<array>
<string>1CD10A99069EF8BA00B06720</string>
- <string>614A817E1178C70600552546</string>
+ <string>6184DE271178F4BD00AF6EFA</string>
<string>1C162984064C10D400B95A72</string>
- <string>614A817F1178C70600552546</string>
- <string>614A81801178C70600552546</string>
- <string>614A81811178C70600552546</string>
- <string>614A81821178C70600552546</string>
- <string>614A81831178C70600552546</string>
+ <string>6184DE281178F4BD00AF6EFA</string>
+ <string>6184DE291178F4BD00AF6EFA</string>
+ <string>6184DE2A1178F4BD00AF6EFA</string>
+ <string>6184DE2B1178F4BD00AF6EFA</string>
+ <string>6184DE2C1178F4BD00AF6EFA</string>
</array>
<key>ToolbarConfiguration</key>
<string>xcode.toolbar.config.debugV3</string>
@@ -1108,7 +1117,7 @@
<key>TableOfContents</key>
<array>
<string>1C78EAAD065D492600B07095</string>
- <string>614A81841178C70600552546</string>
+ <string>6184DE2D1178F4BD00AF6EFA</string>
<string>1C78EAAC065D492600B07095</string>
</array>
<key>ToolbarConfiguration</key>
@@ -1267,8 +1276,6 @@
<key>Dock</key>
<array>
<dict>
- <key>BecomeActive</key>
- <true/>
<key>ContentConfiguration</key>
<dict>
<key>PBXBottomSmartGroupGIDs</key>
@@ -1299,16 +1306,10 @@
<string>1C77FABC04509CD000000102</string>
<string>1C3E0DCA080725EA00A55177</string>
<string>1C3E0DCA080725EA00A55177</string>
- <string>1C3E0DCA080725EA00A55177</string>
- <string>1C3E0DCA080725EA00A55177</string>
- <string>1C3E0DCA080725EA00A55177</string>
- <string>1C3E0DCA080725EA00A55177</string>
- <string>1C3E0DCC080725EA11A45113</string>
</array>
<key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>
<array>
<array>
- <integer>1</integer>
<integer>0</integer>
</array>
</array>
@@ -1338,6 +1339,8 @@
<string>185pt</string>
</dict>
<dict>
+ <key>BecomeActive</key>
+ <true/>
<key>ContentConfiguration</key>
<dict>
<key>PBXProjectModuleGUID</key>
@@ -1377,8 +1380,8 @@
<true/>
<key>TableOfContents</key>
<array>
- <string>619F1DB4115C170100A32B0B</string>
- <string>619F1DB5115C170100A32B0B</string>
+ <string>6184DE581178F75B00AF6EFA</string>
+ <string>6184DE591178F75B00AF6EFA</string>
<string>1CE0B1FE06471DED0097A5F4</string>
<string>1CA1AED706398EBD00589147</string>
</array>
@@ -1387,9 +1390,9 @@
<key>WindowString</key>
<string>264 599 744 409 0 0 1920 1178 </string>
<key>WindowToolGUID</key>
- <string>619F1DB4115C170100A32B0B</string>
+ <string>6184DE581178F75B00AF6EFA</string>
<key>WindowToolIsVisible</key>
- <true/>
+ <false/>
</dict>
<dict>
<key>Identifier</key>
--- a/project_files/HedgewarsMobile/HedgewarsMobile.xcodeproj/vittorio.pbxuser Fri Apr 16 17:17:43 2010 +0000
+++ b/project_files/HedgewarsMobile/HedgewarsMobile.xcodeproj/vittorio.pbxuser Sat Apr 17 04:59:10 2010 +0000
@@ -55,7 +55,7 @@
PBXFileTableDataSourceColumnWidthsKey = (
22,
300,
- 182,
+ 184,
);
PBXFileTableDataSourceColumnsKey = (
PBXExecutablesDataSource_ActiveFlagID,
@@ -107,207 +107,434 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 293126708;
- PBXWorkspaceStateSaveDate = 293126708;
+ PBXPerProjectTemplateStateSaveDate = 293139562;
+ PBXWorkspaceStateSaveDate = 293139562;
};
perUserProjectItems = {
- 61056377116C0393003C420C /* PBXBookmark */ = 61056377116C0393003C420C /* PBXBookmark */;
- 610563DF116C15E5003C420C /* PBXTextBookmark */ = 610563DF116C15E5003C420C /* PBXTextBookmark */;
- 611B0AC6116B6E8B00112153 /* PBXTextBookmark */ = 611B0AC6116B6E8B00112153 /* PBXTextBookmark */;
- 611B0C42116BAF3A00112153 /* PBXTextBookmark */ = 611B0C42116BAF3A00112153 /* PBXTextBookmark */;
- 611FD81F1155111700C2203D /* PBXTextBookmark */ = 611FD81F1155111700C2203D /* PBXTextBookmark */;
- 611FD8201155111700C2203D /* PBXTextBookmark */ = 611FD8201155111700C2203D /* PBXTextBookmark */;
- 611FD95811551C3700C2203D /* PBXBookmark */ = 611FD95811551C3700C2203D /* PBXBookmark */;
- 611FD96611551E8000C2203D /* PBXBookmark */ = 611FD96611551E8000C2203D /* PBXBookmark */;
- 611FDB6C1155C0B300C2203D /* PBXBookmark */ = 611FDB6C1155C0B300C2203D /* PBXBookmark */;
- 611FDB6D1155C0B300C2203D /* PBXBookmark */ = 611FDB6D1155C0B300C2203D /* PBXBookmark */;
- 611FDBF71155D39400C2203D /* PBXTextBookmark */ = 611FDBF71155D39400C2203D /* PBXTextBookmark */;
- 612D5C451165535400C6D842 /* PBXTextBookmark */ = 612D5C451165535400C6D842 /* PBXTextBookmark */;
- 612D616B1165536300C6D842 /* PBXTextBookmark */ = 612D616B1165536300C6D842 /* PBXTextBookmark */;
- 61430D3D1165551600E2C62D /* PBXTextBookmark */ = 61430D3D1165551600E2C62D /* PBXTextBookmark */;
- 614A80ED1178BB9B00552546 /* PBXTextBookmark */ = 614A80ED1178BB9B00552546 /* PBXTextBookmark */;
- 614A81041178BCC500552546 /* PBXTextBookmark */ = 614A81041178BCC500552546 /* PBXTextBookmark */;
- 614A81441178C16800552546 /* PBXTextBookmark */ = 614A81441178C16800552546 /* PBXTextBookmark */;
- 614A818A1178C72A00552546 /* PBXTextBookmark */ = 614A818A1178C72A00552546 /* PBXTextBookmark */;
- 61513435116C1B07001F16D1 /* PBXTextBookmark */ = 61513435116C1B07001F16D1 /* PBXTextBookmark */;
- 61513436116C1B07001F16D1 /* PBXTextBookmark */ = 61513436116C1B07001F16D1 /* PBXTextBookmark */;
- 6151348C116C2954001F16D1 /* PBXBookmark */ = 6151348C116C2954001F16D1 /* PBXBookmark */;
- 6151348D116C2954001F16D1 /* PBXBookmark */ = 6151348D116C2954001F16D1 /* PBXBookmark */;
- 6151348E116C2954001F16D1 /* PBXBookmark */ = 6151348E116C2954001F16D1 /* PBXBookmark */;
- 6151348F116C2954001F16D1 /* PlistBookmark */ = 6151348F116C2954001F16D1 /* PlistBookmark */;
- 6157F7BA116F3B2D005E4A26 /* PBXTextBookmark */ = 6157F7BA116F3B2D005E4A26 /* PBXTextBookmark */;
- 615F1316116561BE002444F2 /* PBXTextBookmark */ = 615F1316116561BE002444F2 /* PBXTextBookmark */;
- 615F134D11656569002444F2 /* PBXTextBookmark */ = 615F134D11656569002444F2 /* PBXTextBookmark */;
- 615F147F11659AC5002444F2 /* PBXTextBookmark */ = 615F147F11659AC5002444F2 /* PBXTextBookmark */;
- 615F198C1166A71E002444F2 /* PBXBookmark */ = 615F198C1166A71E002444F2 /* PBXBookmark */;
- 615F198E1166A71E002444F2 /* PBXTextBookmark */ = 615F198E1166A71E002444F2 /* PBXTextBookmark */;
- 61697B9E1163478A00CCDF37 /* PBXTextBookmark */ = 61697B9E1163478A00CCDF37 /* PBXTextBookmark */;
- 6179889D114AA5BD00BA94A9 /* PBXTextBookmark */ = 6179889D114AA5BD00BA94A9 /* PBXTextBookmark */;
- 61799342114B297000BA94A9 /* PBXBookmark */ = 61799342114B297000BA94A9 /* PBXBookmark */;
- 61799343114B297000BA94A9 /* PBXBookmark */ = 61799343114B297000BA94A9 /* PBXBookmark */;
- 6179937111501D7800BA94A9 /* PBXBookmark */ = 6179937111501D7800BA94A9 /* PBXBookmark */;
- 6179937411501D7800BA94A9 /* PBXBookmark */ = 6179937411501D7800BA94A9 /* PBXBookmark */;
- 6179937511501D7800BA94A9 /* PBXBookmark */ = 6179937511501D7800BA94A9 /* PBXBookmark */;
- 6179938511501FFA00BA94A9 /* PBXBookmark */ = 6179938511501FFA00BA94A9 /* PBXBookmark */;
- 6179943111502CEA00BA94A9 /* PBXBookmark */ = 6179943111502CEA00BA94A9 /* PBXBookmark */;
- 617B27B71171617A004A76A2 /* PBXTextBookmark */ = 617B27B71171617A004A76A2 /* PBXTextBookmark */;
- 617B27B81171617A004A76A2 /* PBXTextBookmark */ = 617B27B81171617A004A76A2 /* PBXTextBookmark */;
- 617B27B91171617A004A76A2 /* PBXTextBookmark */ = 617B27B91171617A004A76A2 /* PBXTextBookmark */;
- 617B280E117164FC004A76A2 /* PBXTextBookmark */ = 617B280E117164FC004A76A2 /* PBXTextBookmark */;
- 617E1DB5116FEE5B002EF3D8 /* PBXTextBookmark */ = 617E1DB5116FEE5B002EF3D8 /* PBXTextBookmark */;
- 6188FE60116F77AF004F3690 /* PBXTextBookmark */ = 6188FE60116F77AF004F3690 /* PBXTextBookmark */;
- 618AFC07115BE92A003D411B /* PBXBookmark */ = 618AFC07115BE92A003D411B /* PBXBookmark */;
- 618BE56511750F6B00F22556 /* PBXTextBookmark */ = 618BE56511750F6B00F22556 /* PBXTextBookmark */;
- 618BE56611750F6B00F22556 /* PBXTextBookmark */ = 618BE56611750F6B00F22556 /* PBXTextBookmark */;
- 618BE599117512E400F22556 /* PBXTextBookmark */ = 618BE599117512E400F22556 /* PBXTextBookmark */;
- 618BE59A117512E400F22556 /* PBXTextBookmark */ = 618BE59A117512E400F22556 /* PBXTextBookmark */;
- 618BE5FD11751F1C00F22556 /* PBXTextBookmark */ = 618BE5FD11751F1C00F22556 /* PBXTextBookmark */;
- 618BE5FE11751F1C00F22556 /* PBXTextBookmark */ = 618BE5FE11751F1C00F22556 /* PBXTextBookmark */;
- 618BE61E117520B700F22556 /* PBXTextBookmark */ = 618BE61E117520B700F22556 /* PBXTextBookmark */;
- 618BE6C2117528B200F22556 /* PBXTextBookmark */ = 618BE6C2117528B200F22556 /* PBXTextBookmark */;
- 618BE6C3117528B200F22556 /* PBXTextBookmark */ = 618BE6C3117528B200F22556 /* PBXTextBookmark */;
- 618BE6E81175298700F22556 /* PBXTextBookmark */ = 618BE6E81175298700F22556 /* PBXTextBookmark */;
- 618BE70011752C5200F22556 /* PBXTextBookmark */ = 618BE70011752C5200F22556 /* PBXTextBookmark */;
- 618BE70111752C5200F22556 /* PBXTextBookmark */ = 618BE70111752C5200F22556 /* PBXTextBookmark */;
- 618BE70311752C5200F22556 /* PBXTextBookmark */ = 618BE70311752C5200F22556 /* PBXTextBookmark */;
- 618BE70511752C5200F22556 /* PBXTextBookmark */ = 618BE70511752C5200F22556 /* PBXTextBookmark */;
- 618BE70711752C5200F22556 /* PBXTextBookmark */ = 618BE70711752C5200F22556 /* PBXTextBookmark */;
- 618BE72C11752D7900F22556 /* PBXTextBookmark */ = 618BE72C11752D7900F22556 /* PBXTextBookmark */;
- 6196317D116E89DF00C47CEE /* PBXTextBookmark */ = 6196317D116E89DF00C47CEE /* PBXTextBookmark */;
- 619C51C6116E42850049FD84 /* PBXTextBookmark */ = 619C51C6116E42850049FD84 /* PBXTextBookmark */;
- 619C51CB116E42850049FD84 /* PBXTextBookmark */ = 619C51CB116E42850049FD84 /* PBXTextBookmark */;
- 619C51E0116E45820049FD84 /* PBXTextBookmark */ = 619C51E0116E45820049FD84 /* PBXTextBookmark */;
- 619C523D116E56330049FD84 /* PBXBookmark */ = 619C523D116E56330049FD84 /* PBXBookmark */;
- 619C523F116E56330049FD84 /* PBXBookmark */ = 619C523F116E56330049FD84 /* PBXBookmark */;
- 619C5241116E56330049FD84 /* PBXBookmark */ = 619C5241116E56330049FD84 /* PBXBookmark */;
- 619C5243116E56330049FD84 /* PBXBookmark */ = 619C5243116E56330049FD84 /* PBXBookmark */;
- 619C5245116E56330049FD84 /* PBXBookmark */ = 619C5245116E56330049FD84 /* PBXBookmark */;
- 619C5247116E56330049FD84 /* PBXBookmark */ = 619C5247116E56330049FD84 /* PBXBookmark */;
- 619C5249116E56330049FD84 /* PBXBookmark */ = 619C5249116E56330049FD84 /* PBXBookmark */;
- 619C524B116E56330049FD84 /* PBXBookmark */ = 619C524B116E56330049FD84 /* PBXBookmark */;
- 619C524D116E56330049FD84 /* PBXBookmark */ = 619C524D116E56330049FD84 /* PBXBookmark */;
- 619C524F116E56330049FD84 /* PBXBookmark */ = 619C524F116E56330049FD84 /* PBXBookmark */;
- 619C5251116E56330049FD84 /* PBXBookmark */ = 619C5251116E56330049FD84 /* PBXBookmark */;
- 619C5253116E56330049FD84 /* PBXBookmark */ = 619C5253116E56330049FD84 /* PBXBookmark */;
- 619C5255116E56330049FD84 /* PBXBookmark */ = 619C5255116E56330049FD84 /* PBXBookmark */;
- 619C5257116E56330049FD84 /* PBXBookmark */ = 619C5257116E56330049FD84 /* PBXBookmark */;
- 619C5259116E56330049FD84 /* PBXBookmark */ = 619C5259116E56330049FD84 /* PBXBookmark */;
- 619C525B116E56330049FD84 /* PBXBookmark */ = 619C525B116E56330049FD84 /* PBXBookmark */;
- 619C525D116E56330049FD84 /* PBXBookmark */ = 619C525D116E56330049FD84 /* PBXBookmark */;
- 619C525F116E56330049FD84 /* PBXBookmark */ = 619C525F116E56330049FD84 /* PBXBookmark */;
- 619C5261116E56330049FD84 /* PBXBookmark */ = 619C5261116E56330049FD84 /* PBXBookmark */;
- 619C5263116E56330049FD84 /* PBXBookmark */ = 619C5263116E56330049FD84 /* PBXBookmark */;
- 619C5265116E56330049FD84 /* PBXBookmark */ = 619C5265116E56330049FD84 /* PBXBookmark */;
- 619C5267116E56330049FD84 /* PBXBookmark */ = 619C5267116E56330049FD84 /* PBXBookmark */;
- 619C5269116E56330049FD84 /* PBXBookmark */ = 619C5269116E56330049FD84 /* PBXBookmark */;
- 619C526B116E56330049FD84 /* PBXBookmark */ = 619C526B116E56330049FD84 /* PBXBookmark */;
- 619C526D116E56330049FD84 /* PBXBookmark */ = 619C526D116E56330049FD84 /* PBXBookmark */;
- 619C526F116E56330049FD84 /* PBXBookmark */ = 619C526F116E56330049FD84 /* PBXBookmark */;
- 619C5271116E56330049FD84 /* PBXBookmark */ = 619C5271116E56330049FD84 /* PBXBookmark */;
- 619C5273116E56330049FD84 /* PBXBookmark */ = 619C5273116E56330049FD84 /* PBXBookmark */;
- 619C5275116E56330049FD84 /* PBXBookmark */ = 619C5275116E56330049FD84 /* PBXBookmark */;
- 619C5277116E56330049FD84 /* PBXBookmark */ = 619C5277116E56330049FD84 /* PBXBookmark */;
- 619C5279116E56330049FD84 /* PBXBookmark */ = 619C5279116E56330049FD84 /* PBXBookmark */;
- 619C527B116E56330049FD84 /* PBXBookmark */ = 619C527B116E56330049FD84 /* PBXBookmark */;
- 619C527D116E56330049FD84 /* PBXBookmark */ = 619C527D116E56330049FD84 /* PBXBookmark */;
- 619C527F116E56330049FD84 /* PBXBookmark */ = 619C527F116E56330049FD84 /* PBXBookmark */;
- 619C5281116E56330049FD84 /* PBXBookmark */ = 619C5281116E56330049FD84 /* PBXBookmark */;
- 619C5283116E56330049FD84 /* PBXBookmark */ = 619C5283116E56330049FD84 /* PBXBookmark */;
- 619C5285116E56330049FD84 /* PBXBookmark */ = 619C5285116E56330049FD84 /* PBXBookmark */;
- 619C5287116E56330049FD84 /* PBXBookmark */ = 619C5287116E56330049FD84 /* PBXBookmark */;
- 619C5289116E56330049FD84 /* PBXBookmark */ = 619C5289116E56330049FD84 /* PBXBookmark */;
- 619C528B116E56330049FD84 /* PBXBookmark */ = 619C528B116E56330049FD84 /* PBXBookmark */;
- 619C528D116E56330049FD84 /* PBXBookmark */ = 619C528D116E56330049FD84 /* PBXBookmark */;
- 619C528F116E56330049FD84 /* PBXBookmark */ = 619C528F116E56330049FD84 /* PBXBookmark */;
- 619C5291116E56330049FD84 /* PBXBookmark */ = 619C5291116E56330049FD84 /* PBXBookmark */;
- 619C5293116E56330049FD84 /* PBXBookmark */ = 619C5293116E56330049FD84 /* PBXBookmark */;
- 619C5295116E56330049FD84 /* PBXBookmark */ = 619C5295116E56330049FD84 /* PBXBookmark */;
- 619C5297116E56330049FD84 /* PBXBookmark */ = 619C5297116E56330049FD84 /* PBXBookmark */;
- 619C5299116E56330049FD84 /* PBXBookmark */ = 619C5299116E56330049FD84 /* PBXBookmark */;
- 619C529B116E56330049FD84 /* PBXBookmark */ = 619C529B116E56330049FD84 /* PBXBookmark */;
- 619C529D116E56330049FD84 /* PBXBookmark */ = 619C529D116E56330049FD84 /* PBXBookmark */;
- 619C529F116E56330049FD84 /* PBXBookmark */ = 619C529F116E56330049FD84 /* PBXBookmark */;
- 619C52A1116E56330049FD84 /* PBXBookmark */ = 619C52A1116E56330049FD84 /* PBXBookmark */;
- 619C52A3116E56330049FD84 /* PBXBookmark */ = 619C52A3116E56330049FD84 /* PBXBookmark */;
- 619C52A5116E56330049FD84 /* PBXBookmark */ = 619C52A5116E56330049FD84 /* PBXBookmark */;
- 619C52A7116E56330049FD84 /* PBXBookmark */ = 619C52A7116E56330049FD84 /* PBXBookmark */;
- 619C52A9116E56330049FD84 /* PBXBookmark */ = 619C52A9116E56330049FD84 /* PBXBookmark */;
- 619C52AB116E56330049FD84 /* PBXBookmark */ = 619C52AB116E56330049FD84 /* PBXBookmark */;
- 619C52AD116E56330049FD84 /* PBXBookmark */ = 619C52AD116E56330049FD84 /* PBXBookmark */;
- 619C52AF116E56330049FD84 /* PBXBookmark */ = 619C52AF116E56330049FD84 /* PBXBookmark */;
- 619C52B1116E56330049FD84 /* PBXBookmark */ = 619C52B1116E56330049FD84 /* PBXBookmark */;
- 619C52B7116E56330049FD84 /* PBXBookmark */ = 619C52B7116E56330049FD84 /* PBXBookmark */;
- 619C52B9116E56330049FD84 /* PBXBookmark */ = 619C52B9116E56330049FD84 /* PBXBookmark */;
- 619C52BB116E56330049FD84 /* PBXBookmark */ = 619C52BB116E56330049FD84 /* PBXBookmark */;
- 619C52BD116E56330049FD84 /* PBXBookmark */ = 619C52BD116E56330049FD84 /* PBXBookmark */;
- 619C52BF116E56330049FD84 /* PBXBookmark */ = 619C52BF116E56330049FD84 /* PBXBookmark */;
- 619C52C1116E56330049FD84 /* PBXBookmark */ = 619C52C1116E56330049FD84 /* PBXBookmark */;
- 619C5373116E731F0049FD84 /* PBXTextBookmark */ = 619C5373116E731F0049FD84 /* PBXTextBookmark */;
- 619C5859116E73B00049FD84 /* PBXBookmark */ = 619C5859116E73B00049FD84 /* PBXBookmark */;
- 619C585B116E73B00049FD84 /* PBXBookmark */ = 619C585B116E73B00049FD84 /* PBXBookmark */;
- 619C585D116E73B00049FD84 /* PBXBookmark */ = 619C585D116E73B00049FD84 /* PBXBookmark */;
- 619C585F116E73B00049FD84 /* PBXBookmark */ = 619C585F116E73B00049FD84 /* PBXBookmark */;
- 619C5861116E73B00049FD84 /* PBXBookmark */ = 619C5861116E73B00049FD84 /* PBXBookmark */;
- 619C5863116E73B00049FD84 /* PBXBookmark */ = 619C5863116E73B00049FD84 /* PBXBookmark */;
- 619C5865116E73B00049FD84 /* PBXBookmark */ = 619C5865116E73B00049FD84 /* PBXBookmark */;
- 619C5867116E73B00049FD84 /* PBXBookmark */ = 619C5867116E73B00049FD84 /* PBXBookmark */;
- 619C5869116E73B00049FD84 /* PBXBookmark */ = 619C5869116E73B00049FD84 /* PBXBookmark */;
- 619C586B116E73B00049FD84 /* PBXBookmark */ = 619C586B116E73B00049FD84 /* PBXBookmark */;
- 619C586D116E73B00049FD84 /* PBXBookmark */ = 619C586D116E73B00049FD84 /* PBXBookmark */;
- 619C586F116E73B00049FD84 /* PBXBookmark */ = 619C586F116E73B00049FD84 /* PBXBookmark */;
- 619C5871116E73B00049FD84 /* PBXBookmark */ = 619C5871116E73B00049FD84 /* PBXBookmark */;
- 619C5873116E73B00049FD84 /* PBXBookmark */ = 619C5873116E73B00049FD84 /* PBXBookmark */;
- 619C5875116E73B00049FD84 /* PBXBookmark */ = 619C5875116E73B00049FD84 /* PBXBookmark */;
- 619C5877116E73B00049FD84 /* PBXBookmark */ = 619C5877116E73B00049FD84 /* PBXBookmark */;
- 619C5879116E73B00049FD84 /* PBXBookmark */ = 619C5879116E73B00049FD84 /* PBXBookmark */;
- 619C587B116E73B00049FD84 /* PBXBookmark */ = 619C587B116E73B00049FD84 /* PBXBookmark */;
- 619C587D116E73B00049FD84 /* PBXBookmark */ = 619C587D116E73B00049FD84 /* PBXBookmark */;
- 619C587F116E73B00049FD84 /* PBXBookmark */ = 619C587F116E73B00049FD84 /* PBXBookmark */;
- 619C5880116E73B00049FD84 /* PBXBookmark */ = 619C5880116E73B00049FD84 /* PBXBookmark */;
- 619C5882116E73B00049FD84 /* PBXBookmark */ = 619C5882116E73B00049FD84 /* PBXBookmark */;
- 619C5883116E73B00049FD84 /* PBXBookmark */ = 619C5883116E73B00049FD84 /* PBXBookmark */;
- 619C5885116E73B00049FD84 /* PBXBookmark */ = 619C5885116E73B00049FD84 /* PBXBookmark */;
- 619C5887116E73B00049FD84 /* PBXBookmark */ = 619C5887116E73B00049FD84 /* PBXBookmark */;
- 619C5888116E73B00049FD84 /* PBXBookmark */ = 619C5888116E73B00049FD84 /* PBXBookmark */;
- 619C5889116E73B00049FD84 /* PBXBookmark */ = 619C5889116E73B00049FD84 /* PBXBookmark */;
- 619C588B116E73B00049FD84 /* PBXBookmark */ = 619C588B116E73B00049FD84 /* PBXBookmark */;
- 619C588C116E73B00049FD84 /* PBXBookmark */ = 619C588C116E73B00049FD84 /* PBXBookmark */;
- 619C588D116E73B00049FD84 /* PBXBookmark */ = 619C588D116E73B00049FD84 /* PBXBookmark */;
- 619C588F116E73B00049FD84 /* PBXBookmark */ = 619C588F116E73B00049FD84 /* PBXBookmark */;
- 619C5890116E73B00049FD84 /* PBXBookmark */ = 619C5890116E73B00049FD84 /* PBXBookmark */;
- 619C5892116E73B00049FD84 /* PBXBookmark */ = 619C5892116E73B00049FD84 /* PBXBookmark */;
- 619C58B2116E76080049FD84 /* PBXBookmark */ = 619C58B2116E76080049FD84 /* PBXBookmark */;
- 619C58B3116E76080049FD84 /* PBXTextBookmark */ = 619C58B3116E76080049FD84 /* PBXTextBookmark */;
- 61BD54C411789A020038D495 /* PBXTextBookmark */ = 61BD54C411789A020038D495 /* PBXTextBookmark */;
- 61CCBE60116135FF00833FE8 /* PBXTextBookmark */ = 61CCBE60116135FF00833FE8 /* PBXTextBookmark */;
- 61CCBF1E116162CA00833FE8 /* PBXTextBookmark */ = 61CCBF1E116162CA00833FE8 /* PBXTextBookmark */;
- 61CCBF451161637F00833FE8 /* PBXTextBookmark */ = 61CCBF451161637F00833FE8 /* PBXTextBookmark */;
- 61CCBF461161637F00833FE8 /* PBXTextBookmark */ = 61CCBF461161637F00833FE8 /* PBXTextBookmark */;
- 61CCBF471161637F00833FE8 /* PBXTextBookmark */ = 61CCBF471161637F00833FE8 /* PBXTextBookmark */;
- 61CCBF7B1161657400833FE8 /* PBXTextBookmark */ = 61CCBF7B1161657400833FE8 /* PBXTextBookmark */;
- 61CCBF7C1161657400833FE8 /* PBXTextBookmark */ = 61CCBF7C1161657400833FE8 /* PBXTextBookmark */;
- 61CCBF7E1161657400833FE8 /* PBXTextBookmark */ = 61CCBF7E1161657400833FE8 /* PBXTextBookmark */;
- 61CCBF7F1161657400833FE8 /* PBXTextBookmark */ = 61CCBF7F1161657400833FE8 /* PBXTextBookmark */;
- 61CCBFD11161833800833FE8 /* PBXTextBookmark */ = 61CCBFD11161833800833FE8 /* PBXTextBookmark */;
- 61CCBFD21161833800833FE8 /* PBXTextBookmark */ = 61CCBFD21161833800833FE8 /* PBXTextBookmark */;
- 61CCBFD31161833800833FE8 /* PBXTextBookmark */ = 61CCBFD31161833800833FE8 /* PBXTextBookmark */;
- 61CCBFD41161833800833FE8 /* PBXTextBookmark */ = 61CCBFD41161833800833FE8 /* PBXTextBookmark */;
- 61CCBFD51161833800833FE8 /* PBXTextBookmark */ = 61CCBFD51161833800833FE8 /* PBXTextBookmark */;
- 61CCBFD71161833800833FE8 /* PBXTextBookmark */ = 61CCBFD71161833800833FE8 /* PBXTextBookmark */;
- 61CCBFD91161833800833FE8 /* PBXTextBookmark */ = 61CCBFD91161833800833FE8 /* PBXTextBookmark */;
- 61CCBFDA1161833800833FE8 /* PBXTextBookmark */ = 61CCBFDA1161833800833FE8 /* PBXTextBookmark */;
- 61CCBFDB1161833800833FE8 /* PBXTextBookmark */ = 61CCBFDB1161833800833FE8 /* PBXTextBookmark */;
- 61CCBFDC1161833800833FE8 /* PBXTextBookmark */ = 61CCBFDC1161833800833FE8 /* PBXTextBookmark */;
- 61CE23E7115E49560098C467 /* PBXTextBookmark */ = 61CE23E7115E49560098C467 /* PBXTextBookmark */;
- 61CE23FF115E4B290098C467 /* PBXBookmark */ = 61CE23FF115E4B290098C467 /* PBXBookmark */;
- 61CE251F115E75A70098C467 /* PBXBookmark */ = 61CE251F115E75A70098C467 /* PBXBookmark */;
- 61CEDB60116ACBBB0067BAFC /* PBXTextBookmark */ = 61CEDB60116ACBBB0067BAFC /* PBXTextBookmark */;
- 61D96559117180D9001EB3B4 /* PBXTextBookmark */ = 61D96559117180D9001EB3B4 /* PBXTextBookmark */;
- 61D96591117182B1001EB3B4 /* PBXTextBookmark */ = 61D96591117182B1001EB3B4 /* PBXTextBookmark */;
- 61E2F0811156B170002D33C1 /* PBXTextBookmark */ = 61E2F0811156B170002D33C1 /* PBXTextBookmark */;
- 61F6AB931177BE470013254C /* PBXTextBookmark */ = 61F6AB931177BE470013254C /* PBXTextBookmark */;
- 61F8E0D6116E98A900108149 /* PBXTextBookmark */ = 61F8E0D6116E98A900108149 /* PBXTextBookmark */;
- 61FE2AE4116D658700F76CDC /* PBXTextBookmark */ = 61FE2AE4116D658700F76CDC /* PBXTextBookmark */;
+ 61056377116C0393003C420C = 61056377116C0393003C420C /* PBXBookmark */;
+ 610563DF116C15E5003C420C = 610563DF116C15E5003C420C /* PBXTextBookmark */;
+ 611B0AC6116B6E8B00112153 = 611B0AC6116B6E8B00112153 /* PBXTextBookmark */;
+ 611B0C42116BAF3A00112153 = 611B0C42116BAF3A00112153 /* PBXTextBookmark */;
+ 611FD81F1155111700C2203D = 611FD81F1155111700C2203D /* PBXTextBookmark */;
+ 611FD8201155111700C2203D = 611FD8201155111700C2203D /* PBXTextBookmark */;
+ 611FD95811551C3700C2203D = 611FD95811551C3700C2203D /* PBXBookmark */;
+ 611FD96611551E8000C2203D = 611FD96611551E8000C2203D /* PBXBookmark */;
+ 611FDB6C1155C0B300C2203D = 611FDB6C1155C0B300C2203D /* PBXBookmark */;
+ 611FDB6D1155C0B300C2203D = 611FDB6D1155C0B300C2203D /* PBXBookmark */;
+ 611FDBF71155D39400C2203D = 611FDBF71155D39400C2203D /* PBXTextBookmark */;
+ 612D5C451165535400C6D842 = 612D5C451165535400C6D842 /* PBXTextBookmark */;
+ 612D616B1165536300C6D842 = 612D616B1165536300C6D842 /* PBXTextBookmark */;
+ 61430D3D1165551600E2C62D = 61430D3D1165551600E2C62D /* PBXTextBookmark */;
+ 614A80ED1178BB9B00552546 = 614A80ED1178BB9B00552546 /* PBXTextBookmark */;
+ 614A81041178BCC500552546 = 614A81041178BCC500552546 /* PBXTextBookmark */;
+ 614A81441178C16800552546 = 614A81441178C16800552546 /* PBXTextBookmark */;
+ 614A818A1178C72A00552546 = 614A818A1178C72A00552546 /* PBXTextBookmark */;
+ 61513435116C1B07001F16D1 = 61513435116C1B07001F16D1 /* PBXTextBookmark */;
+ 61513436116C1B07001F16D1 = 61513436116C1B07001F16D1 /* PBXTextBookmark */;
+ 6151348C116C2954001F16D1 = 6151348C116C2954001F16D1 /* PBXBookmark */;
+ 6151348D116C2954001F16D1 = 6151348D116C2954001F16D1 /* PBXBookmark */;
+ 6151348E116C2954001F16D1 = 6151348E116C2954001F16D1 /* PBXBookmark */;
+ 6151348F116C2954001F16D1 = 6151348F116C2954001F16D1 /* PlistBookmark */;
+ 6157F7BA116F3B2D005E4A26 = 6157F7BA116F3B2D005E4A26 /* PBXTextBookmark */;
+ 615F1316116561BE002444F2 = 615F1316116561BE002444F2 /* PBXTextBookmark */;
+ 615F134D11656569002444F2 = 615F134D11656569002444F2 /* PBXTextBookmark */;
+ 615F147F11659AC5002444F2 = 615F147F11659AC5002444F2 /* PBXTextBookmark */;
+ 615F198C1166A71E002444F2 = 615F198C1166A71E002444F2 /* PBXBookmark */;
+ 615F198E1166A71E002444F2 = 615F198E1166A71E002444F2 /* PBXTextBookmark */;
+ 61697B9E1163478A00CCDF37 = 61697B9E1163478A00CCDF37 /* PBXTextBookmark */;
+ 6179889D114AA5BD00BA94A9 = 6179889D114AA5BD00BA94A9 /* PBXTextBookmark */;
+ 61799342114B297000BA94A9 = 61799342114B297000BA94A9 /* PBXBookmark */;
+ 61799343114B297000BA94A9 = 61799343114B297000BA94A9 /* PBXBookmark */;
+ 6179937111501D7800BA94A9 = 6179937111501D7800BA94A9 /* PBXBookmark */;
+ 6179937411501D7800BA94A9 = 6179937411501D7800BA94A9 /* PBXBookmark */;
+ 6179937511501D7800BA94A9 = 6179937511501D7800BA94A9 /* PBXBookmark */;
+ 6179938511501FFA00BA94A9 = 6179938511501FFA00BA94A9 /* PBXBookmark */;
+ 6179943111502CEA00BA94A9 = 6179943111502CEA00BA94A9 /* PBXBookmark */;
+ 617B27B71171617A004A76A2 = 617B27B71171617A004A76A2 /* PBXTextBookmark */;
+ 617B27B81171617A004A76A2 = 617B27B81171617A004A76A2 /* PBXTextBookmark */;
+ 617B27B91171617A004A76A2 = 617B27B91171617A004A76A2 /* PBXTextBookmark */;
+ 617B280E117164FC004A76A2 = 617B280E117164FC004A76A2 /* PBXTextBookmark */;
+ 617E1DB5116FEE5B002EF3D8 = 617E1DB5116FEE5B002EF3D8 /* PBXTextBookmark */;
+ 6184DE111178F46B00AF6EFA /* PBXTextBookmark */ = 6184DE111178F46B00AF6EFA /* PBXTextBookmark */;
+ 6184DE1D1178F4B900AF6EFA /* PBXTextBookmark */ = 6184DE1D1178F4B900AF6EFA /* PBXTextBookmark */;
+ 6184DE201178F4BD00AF6EFA /* PBXTextBookmark */ = 6184DE201178F4BD00AF6EFA /* PBXTextBookmark */;
+ 6184DE211178F4BD00AF6EFA /* PBXTextBookmark */ = 6184DE211178F4BD00AF6EFA /* PBXTextBookmark */;
+ 6184DE221178F4BD00AF6EFA /* PBXTextBookmark */ = 6184DE221178F4BD00AF6EFA /* PBXTextBookmark */;
+ 6184DE251178F4BD00AF6EFA /* PBXTextBookmark */ = 6184DE251178F4BD00AF6EFA /* PBXTextBookmark */;
+ 6184DE261178F4BD00AF6EFA /* PBXTextBookmark */ = 6184DE261178F4BD00AF6EFA /* PBXTextBookmark */;
+ 6184DE341178F56B00AF6EFA /* PBXTextBookmark */ = 6184DE341178F56B00AF6EFA /* PBXTextBookmark */;
+ 6184DE351178F56B00AF6EFA /* PBXTextBookmark */ = 6184DE351178F56B00AF6EFA /* PBXTextBookmark */;
+ 6184DE3B1178F5BA00AF6EFA /* PBXTextBookmark */ = 6184DE3B1178F5BA00AF6EFA /* PBXTextBookmark */;
+ 6184DE3C1178F5BA00AF6EFA /* PBXTextBookmark */ = 6184DE3C1178F5BA00AF6EFA /* PBXTextBookmark */;
+ 6184DE401178F5C400AF6EFA /* PBXTextBookmark */ = 6184DE401178F5C400AF6EFA /* PBXTextBookmark */;
+ 6184DE411178F5C400AF6EFA /* PBXTextBookmark */ = 6184DE411178F5C400AF6EFA /* PBXTextBookmark */;
+ 6184DE471178F68C00AF6EFA /* PBXTextBookmark */ = 6184DE471178F68C00AF6EFA /* PBXTextBookmark */;
+ 6184DE481178F68C00AF6EFA /* PBXTextBookmark */ = 6184DE481178F68C00AF6EFA /* PBXTextBookmark */;
+ 6184DE4D1178F6F200AF6EFA /* PBXTextBookmark */ = 6184DE4D1178F6F200AF6EFA /* PBXTextBookmark */;
+ 6184DE4E1178F6F200AF6EFA /* PBXTextBookmark */ = 6184DE4E1178F6F200AF6EFA /* PBXTextBookmark */;
+ 6184DE521178F72200AF6EFA /* PBXTextBookmark */ = 6184DE521178F72200AF6EFA /* PBXTextBookmark */;
+ 6184DE531178F72200AF6EFA /* PBXTextBookmark */ = 6184DE531178F72200AF6EFA /* PBXTextBookmark */;
+ 6184DE5A1178F75E00AF6EFA /* PBXTextBookmark */ = 6184DE5A1178F75E00AF6EFA /* PBXTextBookmark */;
+ 6184DE5B1178F75E00AF6EFA /* PBXTextBookmark */ = 6184DE5B1178F75E00AF6EFA /* PBXTextBookmark */;
+ 6184DE5E1178F7D700AF6EFA /* PBXTextBookmark */ = 6184DE5E1178F7D700AF6EFA /* PBXTextBookmark */;
+ 6184DE5F1178F7D700AF6EFA /* PBXTextBookmark */ = 6184DE5F1178F7D700AF6EFA /* PBXTextBookmark */;
+ 6184DE631178F80E00AF6EFA /* PBXTextBookmark */ = 6184DE631178F80E00AF6EFA /* PBXTextBookmark */;
+ 6184DE641178F80E00AF6EFA /* PBXTextBookmark */ = 6184DE641178F80E00AF6EFA /* PBXTextBookmark */;
+ 6184DE681178F84100AF6EFA /* PBXTextBookmark */ = 6184DE681178F84100AF6EFA /* PBXTextBookmark */;
+ 6184DE691178F84100AF6EFA /* PBXTextBookmark */ = 6184DE691178F84100AF6EFA /* PBXTextBookmark */;
+ 6184DE6F117901F600AF6EFA /* PBXBookmark */ = 6184DE6F117901F600AF6EFA /* PBXBookmark */;
+ 6184DE7511795AEE00AF6EFA /* PBXBookmark */ = 6184DE7511795AEE00AF6EFA /* PBXBookmark */;
+ 6184DE7E11795D3F00AF6EFA /* PBXTextBookmark */ = 6184DE7E11795D3F00AF6EFA /* PBXTextBookmark */;
+ 6184DE7F11795D3F00AF6EFA /* PBXTextBookmark */ = 6184DE7F11795D3F00AF6EFA /* PBXTextBookmark */;
+ 6184DE8011795D3F00AF6EFA /* PBXTextBookmark */ = 6184DE8011795D3F00AF6EFA /* PBXTextBookmark */;
+ 6184DE8111795D3F00AF6EFA /* PBXTextBookmark */ = 6184DE8111795D3F00AF6EFA /* PBXTextBookmark */;
+ 6184DE8211795D3F00AF6EFA /* PBXBookmark */ = 6184DE8211795D3F00AF6EFA /* PBXBookmark */;
+ 6184DE8311795D3F00AF6EFA /* PBXTextBookmark */ = 6184DE8311795D3F00AF6EFA /* PBXTextBookmark */;
+ 6184DE8611795D3F00AF6EFA /* PBXTextBookmark */ = 6184DE8611795D3F00AF6EFA /* PBXTextBookmark */;
+ 6184DE8911795D3F00AF6EFA /* PBXTextBookmark */ = 6184DE8911795D3F00AF6EFA /* PBXTextBookmark */;
+ 6184DE8A11795D3F00AF6EFA /* PBXTextBookmark */ = 6184DE8A11795D3F00AF6EFA /* PBXTextBookmark */;
+ 6184DE8B11795D3F00AF6EFA /* PBXTextBookmark */ = 6184DE8B11795D3F00AF6EFA /* PBXTextBookmark */;
+ 6184DE8E11795D3F00AF6EFA /* PBXTextBookmark */ = 6184DE8E11795D3F00AF6EFA /* PBXTextBookmark */;
+ 6184DE8F11795D3F00AF6EFA /* PBXTextBookmark */ = 6184DE8F11795D3F00AF6EFA /* PBXTextBookmark */;
+ 6184DE9011795D3F00AF6EFA /* PBXTextBookmark */ = 6184DE9011795D3F00AF6EFA /* PBXTextBookmark */;
+ 6184DE9311795D3F00AF6EFA /* PBXTextBookmark */ = 6184DE9311795D3F00AF6EFA /* PBXTextBookmark */;
+ 6184DE9511795D6700AF6EFA /* PBXTextBookmark */ = 6184DE9511795D6700AF6EFA /* PBXTextBookmark */;
+ 6184DE9611795D6700AF6EFA /* PBXTextBookmark */ = 6184DE9611795D6700AF6EFA /* PBXTextBookmark */;
+ 6184DE9711795D6700AF6EFA /* PBXTextBookmark */ = 6184DE9711795D6700AF6EFA /* PBXTextBookmark */;
+ 6184DE9811795D6700AF6EFA /* PBXTextBookmark */ = 6184DE9811795D6700AF6EFA /* PBXTextBookmark */;
+ 6184DE9911795D6700AF6EFA /* PBXTextBookmark */ = 6184DE9911795D6700AF6EFA /* PBXTextBookmark */;
+ 6184DE9C11795DA500AF6EFA /* PBXTextBookmark */ = 6184DE9C11795DA500AF6EFA /* PBXTextBookmark */;
+ 6184DE9D11795DA500AF6EFA /* PBXTextBookmark */ = 6184DE9D11795DA500AF6EFA /* PBXTextBookmark */;
+ 6184DE9E11795DA500AF6EFA /* PBXTextBookmark */ = 6184DE9E11795DA500AF6EFA /* PBXTextBookmark */;
+ 6184DE9F11795DA500AF6EFA /* PBXTextBookmark */ = 6184DE9F11795DA500AF6EFA /* PBXTextBookmark */;
+ 6184DEA011795DA500AF6EFA /* PBXTextBookmark */ = 6184DEA011795DA500AF6EFA /* PBXTextBookmark */;
+ 6184DEAF11795FC700AF6EFA /* PBXTextBookmark */ = 6184DEAF11795FC700AF6EFA /* PBXTextBookmark */;
+ 6184DEB011795FC700AF6EFA /* PBXTextBookmark */ = 6184DEB011795FC700AF6EFA /* PBXTextBookmark */;
+ 6184DEB111795FC700AF6EFA /* PBXTextBookmark */ = 6184DEB111795FC700AF6EFA /* PBXTextBookmark */;
+ 6184DEB211795FC700AF6EFA /* PBXTextBookmark */ = 6184DEB211795FC700AF6EFA /* PBXTextBookmark */;
+ 6184DEB311795FC700AF6EFA /* PBXTextBookmark */ = 6184DEB311795FC700AF6EFA /* PBXTextBookmark */;
+ 6184DEB611795FC700AF6EFA /* PBXTextBookmark */ = 6184DEB611795FC700AF6EFA /* PBXTextBookmark */;
+ 6184DEB711795FC700AF6EFA /* PBXTextBookmark */ = 6184DEB711795FC700AF6EFA /* PBXTextBookmark */;
+ 6184DEB811795FC700AF6EFA /* PBXTextBookmark */ = 6184DEB811795FC700AF6EFA /* PBXTextBookmark */;
+ 6184DEB911795FC700AF6EFA /* PBXTextBookmark */ = 6184DEB911795FC700AF6EFA /* PBXTextBookmark */;
+ 6184DEBA11795FC700AF6EFA /* PBXTextBookmark */ = 6184DEBA11795FC700AF6EFA /* PBXTextBookmark */;
+ 6184DEBF1179604200AF6EFA /* PBXTextBookmark */ = 6184DEBF1179604200AF6EFA /* PBXTextBookmark */;
+ 6184DEC01179604200AF6EFA /* PBXTextBookmark */ = 6184DEC01179604200AF6EFA /* PBXTextBookmark */;
+ 6184DEC11179604200AF6EFA /* PBXTextBookmark */ = 6184DEC11179604200AF6EFA /* PBXTextBookmark */;
+ 6184DEC21179604200AF6EFA /* PBXTextBookmark */ = 6184DEC21179604200AF6EFA /* PBXTextBookmark */;
+ 6184DEC31179604200AF6EFA /* PBXTextBookmark */ = 6184DEC31179604200AF6EFA /* PBXTextBookmark */;
+ 6184DECB1179609000AF6EFA /* PBXTextBookmark */ = 6184DECB1179609000AF6EFA /* PBXTextBookmark */;
+ 6184DECC1179609000AF6EFA /* PBXTextBookmark */ = 6184DECC1179609000AF6EFA /* PBXTextBookmark */;
+ 6184DECD1179609000AF6EFA /* PBXTextBookmark */ = 6184DECD1179609000AF6EFA /* PBXTextBookmark */;
+ 6184DECE1179609000AF6EFA /* PBXTextBookmark */ = 6184DECE1179609000AF6EFA /* PBXTextBookmark */;
+ 6184DECF1179609000AF6EFA /* PBXTextBookmark */ = 6184DECF1179609000AF6EFA /* PBXTextBookmark */;
+ 6184DED71179629900AF6EFA /* PBXTextBookmark */ = 6184DED71179629900AF6EFA /* PBXTextBookmark */;
+ 6184DED81179629900AF6EFA /* PBXTextBookmark */ = 6184DED81179629900AF6EFA /* PBXTextBookmark */;
+ 6184DED91179629900AF6EFA /* PBXTextBookmark */ = 6184DED91179629900AF6EFA /* PBXTextBookmark */;
+ 6184DEDA1179629900AF6EFA /* PBXTextBookmark */ = 6184DEDA1179629900AF6EFA /* PBXTextBookmark */;
+ 6184DEDB1179629900AF6EFA /* PBXTextBookmark */ = 6184DEDB1179629900AF6EFA /* PBXTextBookmark */;
+ 6184DEDC1179629900AF6EFA /* PBXTextBookmark */ = 6184DEDC1179629900AF6EFA /* PBXTextBookmark */;
+ 6184DEDD1179629900AF6EFA /* PBXTextBookmark */ = 6184DEDD1179629900AF6EFA /* PBXTextBookmark */;
+ 6184DEE11179634500AF6EFA /* PBXTextBookmark */ = 6184DEE11179634500AF6EFA /* PBXTextBookmark */;
+ 6184DEE21179634500AF6EFA /* PBXTextBookmark */ = 6184DEE21179634500AF6EFA /* PBXTextBookmark */;
+ 6184DEE31179634500AF6EFA /* PBXTextBookmark */ = 6184DEE31179634500AF6EFA /* PBXTextBookmark */;
+ 6184DEE41179634500AF6EFA /* PBXTextBookmark */ = 6184DEE41179634500AF6EFA /* PBXTextBookmark */;
+ 6184DEE51179634500AF6EFA /* PBXTextBookmark */ = 6184DEE51179634500AF6EFA /* PBXTextBookmark */;
+ 6184DEE91179637C00AF6EFA /* PBXTextBookmark */ = 6184DEE91179637C00AF6EFA /* PBXTextBookmark */;
+ 6184DEEA1179637C00AF6EFA /* PBXTextBookmark */ = 6184DEEA1179637C00AF6EFA /* PBXTextBookmark */;
+ 6184DEEB1179637C00AF6EFA /* PBXTextBookmark */ = 6184DEEB1179637C00AF6EFA /* PBXTextBookmark */;
+ 6184DEEC1179637C00AF6EFA /* PBXTextBookmark */ = 6184DEEC1179637C00AF6EFA /* PBXTextBookmark */;
+ 6184DEED1179637C00AF6EFA /* PBXTextBookmark */ = 6184DEED1179637C00AF6EFA /* PBXTextBookmark */;
+ 6184DEEF1179639700AF6EFA /* PBXTextBookmark */ = 6184DEEF1179639700AF6EFA /* PBXTextBookmark */;
+ 6184DEF01179639700AF6EFA /* PBXTextBookmark */ = 6184DEF01179639700AF6EFA /* PBXTextBookmark */;
+ 6184DEF11179639700AF6EFA /* PBXTextBookmark */ = 6184DEF11179639700AF6EFA /* PBXTextBookmark */;
+ 6184DEF21179639700AF6EFA /* PBXTextBookmark */ = 6184DEF21179639700AF6EFA /* PBXTextBookmark */;
+ 6184DEF31179639700AF6EFA /* PBXTextBookmark */ = 6184DEF31179639700AF6EFA /* PBXTextBookmark */;
+ 6184DEF61179659200AF6EFA /* PBXTextBookmark */ = 6184DEF61179659200AF6EFA /* PBXTextBookmark */;
+ 6184DEF71179659200AF6EFA /* PBXTextBookmark */ = 6184DEF71179659200AF6EFA /* PBXTextBookmark */;
+ 6184DEF81179659200AF6EFA /* PBXTextBookmark */ = 6184DEF81179659200AF6EFA /* PBXTextBookmark */;
+ 6184DEF91179659200AF6EFA /* PBXTextBookmark */ = 6184DEF91179659200AF6EFA /* PBXTextBookmark */;
+ 6184DEFA1179659200AF6EFA /* PBXTextBookmark */ = 6184DEFA1179659200AF6EFA /* PBXTextBookmark */;
+ 6184DEFB1179659200AF6EFA /* PBXTextBookmark */ = 6184DEFB1179659200AF6EFA /* PBXTextBookmark */;
+ 6184DEFC1179659200AF6EFA /* PBXTextBookmark */ = 6184DEFC1179659200AF6EFA /* PBXTextBookmark */;
+ 6184DF001179666500AF6EFA /* PBXTextBookmark */ = 6184DF001179666500AF6EFA /* PBXTextBookmark */;
+ 6184DF011179666500AF6EFA /* PBXTextBookmark */ = 6184DF011179666500AF6EFA /* PBXTextBookmark */;
+ 6184DF021179666500AF6EFA /* PBXTextBookmark */ = 6184DF021179666500AF6EFA /* PBXTextBookmark */;
+ 6184DF031179666500AF6EFA /* PBXTextBookmark */ = 6184DF031179666500AF6EFA /* PBXTextBookmark */;
+ 6184DF041179666500AF6EFA /* PBXTextBookmark */ = 6184DF041179666500AF6EFA /* PBXTextBookmark */;
+ 6184DF06117966F400AF6EFA /* PBXTextBookmark */ = 6184DF06117966F400AF6EFA /* PBXTextBookmark */;
+ 6184DF07117966F400AF6EFA /* PBXTextBookmark */ = 6184DF07117966F400AF6EFA /* PBXTextBookmark */;
+ 6184DF08117966F400AF6EFA /* PBXTextBookmark */ = 6184DF08117966F400AF6EFA /* PBXTextBookmark */;
+ 6184DF09117966F700AF6EFA /* PBXBookmark */ = 6184DF09117966F700AF6EFA /* PBXBookmark */;
+ 6184DF10117967DC00AF6EFA /* PBXTextBookmark */ = 6184DF10117967DC00AF6EFA /* PBXTextBookmark */;
+ 6184DF11117967DC00AF6EFA /* PBXTextBookmark */ = 6184DF11117967DC00AF6EFA /* PBXTextBookmark */;
+ 6184DF14117967DC00AF6EFA /* PBXTextBookmark */ = 6184DF14117967DC00AF6EFA /* PBXTextBookmark */;
+ 6184DF15117967DC00AF6EFA /* PBXTextBookmark */ = 6184DF15117967DC00AF6EFA /* PBXTextBookmark */;
+ 6184DF191179680800AF6EFA /* PBXTextBookmark */ = 6184DF191179680800AF6EFA /* PBXTextBookmark */;
+ 6184DF1A1179680800AF6EFA /* PBXTextBookmark */ = 6184DF1A1179680800AF6EFA /* PBXTextBookmark */;
+ 6184DF1B1179680800AF6EFA /* PBXTextBookmark */ = 6184DF1B1179680800AF6EFA /* PBXTextBookmark */;
+ 6184DF1D1179688500AF6EFA /* PBXBookmark */ = 6184DF1D1179688500AF6EFA /* PBXBookmark */;
+ 6184DF1E117968A500AF6EFA /* PBXBookmark */ = 6184DF1E117968A500AF6EFA /* PBXBookmark */;
+ 6184DF231179691200AF6EFA /* PBXTextBookmark */ = 6184DF231179691200AF6EFA /* PBXTextBookmark */;
+ 6184DF261179691200AF6EFA /* PBXTextBookmark */ = 6184DF261179691200AF6EFA /* PBXTextBookmark */;
+ 6184DF271179691200AF6EFA /* PBXTextBookmark */ = 6184DF271179691200AF6EFA /* PBXTextBookmark */;
+ 6184DF2A1179691200AF6EFA /* PBXTextBookmark */ = 6184DF2A1179691200AF6EFA /* PBXTextBookmark */;
+ 6184DF2C1179691D00AF6EFA /* PBXTextBookmark */ = 6184DF2C1179691D00AF6EFA /* PBXTextBookmark */;
+ 6184DF2D1179691D00AF6EFA /* PBXTextBookmark */ = 6184DF2D1179691D00AF6EFA /* PBXTextBookmark */;
+ 6184DF2E1179691D00AF6EFA /* PBXTextBookmark */ = 6184DF2E1179691D00AF6EFA /* PBXTextBookmark */;
+ 6184DF2F1179691D00AF6EFA /* PBXTextBookmark */ = 6184DF2F1179691D00AF6EFA /* PBXTextBookmark */;
+ 6184DF34117969EF00AF6EFA /* PBXTextBookmark */ = 6184DF34117969EF00AF6EFA /* PBXTextBookmark */;
+ 6184DF35117969EF00AF6EFA /* PBXTextBookmark */ = 6184DF35117969EF00AF6EFA /* PBXTextBookmark */;
+ 6184DF36117969EF00AF6EFA /* PBXTextBookmark */ = 6184DF36117969EF00AF6EFA /* PBXTextBookmark */;
+ 6184DF37117969EF00AF6EFA /* PBXTextBookmark */ = 6184DF37117969EF00AF6EFA /* PBXTextBookmark */;
+ 6184DF3B117969FF00AF6EFA /* PBXTextBookmark */ = 6184DF3B117969FF00AF6EFA /* PBXTextBookmark */;
+ 6184DF3C117969FF00AF6EFA /* PBXTextBookmark */ = 6184DF3C117969FF00AF6EFA /* PBXTextBookmark */;
+ 6184DF3D117969FF00AF6EFA /* PBXTextBookmark */ = 6184DF3D117969FF00AF6EFA /* PBXTextBookmark */;
+ 6184DF3E117969FF00AF6EFA /* PBXTextBookmark */ = 6184DF3E117969FF00AF6EFA /* PBXTextBookmark */;
+ 6184DF4011796A3200AF6EFA /* PBXBookmark */ = 6184DF4011796A3200AF6EFA /* PBXBookmark */;
+ 6184DF4111796A6400AF6EFA /* PBXBookmark */ = 6184DF4111796A6400AF6EFA /* PBXBookmark */;
+ 6184DF4411796A9200AF6EFA /* PBXTextBookmark */ = 6184DF4411796A9200AF6EFA /* PBXTextBookmark */;
+ 6184DF4511796A9200AF6EFA /* PBXTextBookmark */ = 6184DF4511796A9200AF6EFA /* PBXTextBookmark */;
+ 6184DF4611796A9300AF6EFA /* PBXTextBookmark */ = 6184DF4611796A9300AF6EFA /* PBXTextBookmark */;
+ 6184DF4911796A9300AF6EFA /* PBXTextBookmark */ = 6184DF4911796A9300AF6EFA /* PBXTextBookmark */;
+ 6184DF4C11796A9300AF6EFA /* PBXTextBookmark */ = 6184DF4C11796A9300AF6EFA /* PBXTextBookmark */;
+ 6184DF4D11796A9300AF6EFA /* PBXTextBookmark */ = 6184DF4D11796A9300AF6EFA /* PBXTextBookmark */;
+ 6184DF4E11796A9300AF6EFA /* PBXTextBookmark */ = 6184DF4E11796A9300AF6EFA /* PBXTextBookmark */;
+ 6184DF4F11796A9300AF6EFA /* PBXTextBookmark */ = 6184DF4F11796A9300AF6EFA /* PBXTextBookmark */;
+ 6184DF6F117972FE00AF6EFA /* PBXTextBookmark */ = 6184DF6F117972FE00AF6EFA /* PBXTextBookmark */;
+ 6184DF70117972FE00AF6EFA /* PBXTextBookmark */ = 6184DF70117972FE00AF6EFA /* PBXTextBookmark */;
+ 6184DF71117972FE00AF6EFA /* PBXTextBookmark */ = 6184DF71117972FE00AF6EFA /* PBXTextBookmark */;
+ 6184DF72117972FE00AF6EFA /* PBXTextBookmark */ = 6184DF72117972FE00AF6EFA /* PBXTextBookmark */;
+ 6184DF73117972FE00AF6EFA /* PBXTextBookmark */ = 6184DF73117972FE00AF6EFA /* PBXTextBookmark */;
+ 6184DF74117972FE00AF6EFA /* PBXTextBookmark */ = 6184DF74117972FE00AF6EFA /* PBXTextBookmark */;
+ 6184DF75117972FE00AF6EFA /* PBXTextBookmark */ = 6184DF75117972FE00AF6EFA /* PBXTextBookmark */;
+ 6184DF77117973AF00AF6EFA /* PBXTextBookmark */ = 6184DF77117973AF00AF6EFA /* PBXTextBookmark */;
+ 6184DF78117973AF00AF6EFA /* PBXTextBookmark */ = 6184DF78117973AF00AF6EFA /* PBXTextBookmark */;
+ 6184DF79117973AF00AF6EFA /* PBXTextBookmark */ = 6184DF79117973AF00AF6EFA /* PBXTextBookmark */;
+ 6184DF7A117973AF00AF6EFA /* PBXTextBookmark */ = 6184DF7A117973AF00AF6EFA /* PBXTextBookmark */;
+ 6184DF7B117973AF00AF6EFA /* PBXTextBookmark */ = 6184DF7B117973AF00AF6EFA /* PBXTextBookmark */;
+ 6184DF7C117973BF00AF6EFA /* PBXTextBookmark */ = 6184DF7C117973BF00AF6EFA /* PBXTextBookmark */;
+ 6184DF7D117973BF00AF6EFA /* PBXTextBookmark */ = 6184DF7D117973BF00AF6EFA /* PBXTextBookmark */;
+ 6184DF7E117973BF00AF6EFA /* PBXTextBookmark */ = 6184DF7E117973BF00AF6EFA /* PBXTextBookmark */;
+ 6184DF7F117973BF00AF6EFA /* PBXTextBookmark */ = 6184DF7F117973BF00AF6EFA /* PBXTextBookmark */;
+ 6184DF80117973BF00AF6EFA /* PBXTextBookmark */ = 6184DF80117973BF00AF6EFA /* PBXTextBookmark */;
+ 6184DF81117973CC00AF6EFA /* PBXTextBookmark */ = 6184DF81117973CC00AF6EFA /* PBXTextBookmark */;
+ 6184DF82117973CC00AF6EFA /* PBXTextBookmark */ = 6184DF82117973CC00AF6EFA /* PBXTextBookmark */;
+ 6184DF83117973CC00AF6EFA /* PBXTextBookmark */ = 6184DF83117973CC00AF6EFA /* PBXTextBookmark */;
+ 6184DF84117973CC00AF6EFA /* PBXTextBookmark */ = 6184DF84117973CC00AF6EFA /* PBXTextBookmark */;
+ 6184DF85117973CC00AF6EFA /* PBXTextBookmark */ = 6184DF85117973CC00AF6EFA /* PBXTextBookmark */;
+ 6184DF86117973D500AF6EFA /* PBXTextBookmark */ = 6184DF86117973D500AF6EFA /* PBXTextBookmark */;
+ 6184DF87117973D500AF6EFA /* PBXTextBookmark */ = 6184DF87117973D500AF6EFA /* PBXTextBookmark */;
+ 6184DF88117973D500AF6EFA /* PBXTextBookmark */ = 6184DF88117973D500AF6EFA /* PBXTextBookmark */;
+ 6184DF89117973D500AF6EFA /* PBXTextBookmark */ = 6184DF89117973D500AF6EFA /* PBXTextBookmark */;
+ 6184DF8A117973D500AF6EFA /* PBXTextBookmark */ = 6184DF8A117973D500AF6EFA /* PBXTextBookmark */;
+ 6184DF8D117973FB00AF6EFA /* PBXBookmark */ = 6184DF8D117973FB00AF6EFA /* PBXBookmark */;
+ 6184DF9A1179752300AF6EFA /* PBXTextBookmark */ = 6184DF9A1179752300AF6EFA /* PBXTextBookmark */;
+ 6184DF9B1179752300AF6EFA /* PBXTextBookmark */ = 6184DF9B1179752300AF6EFA /* PBXTextBookmark */;
+ 6184DF9C1179752300AF6EFA /* PBXTextBookmark */ = 6184DF9C1179752300AF6EFA /* PBXTextBookmark */;
+ 6184DF9D1179752300AF6EFA /* PBXTextBookmark */ = 6184DF9D1179752300AF6EFA /* PBXTextBookmark */;
+ 6184DF9E1179752300AF6EFA /* PBXTextBookmark */ = 6184DF9E1179752300AF6EFA /* PBXTextBookmark */;
+ 6184DFA11179752300AF6EFA /* PBXTextBookmark */ = 6184DFA11179752300AF6EFA /* PBXTextBookmark */;
+ 6184DFA21179752300AF6EFA /* PBXTextBookmark */ = 6184DFA21179752300AF6EFA /* PBXTextBookmark */;
+ 6184DFA31179752300AF6EFA /* PBXTextBookmark */ = 6184DFA31179752300AF6EFA /* PBXTextBookmark */;
+ 6184DFA41179752300AF6EFA /* PBXTextBookmark */ = 6184DFA41179752300AF6EFA /* PBXTextBookmark */;
+ 6184DFAA1179762800AF6EFA /* PBXTextBookmark */ = 6184DFAA1179762800AF6EFA /* PBXTextBookmark */;
+ 6184DFAB1179762800AF6EFA /* PBXTextBookmark */ = 6184DFAB1179762800AF6EFA /* PBXTextBookmark */;
+ 6184DFAC1179762800AF6EFA /* PBXTextBookmark */ = 6184DFAC1179762800AF6EFA /* PBXTextBookmark */;
+ 6184DFAD1179762800AF6EFA /* PBXTextBookmark */ = 6184DFAD1179762800AF6EFA /* PBXTextBookmark */;
+ 6184DFAE1179762800AF6EFA /* PBXTextBookmark */ = 6184DFAE1179762800AF6EFA /* PBXTextBookmark */;
+ 6184DFAF1179762800AF6EFA /* PBXTextBookmark */ = 6184DFAF1179762800AF6EFA /* PBXTextBookmark */;
+ 6184DFB3117979AB00AF6EFA /* PBXTextBookmark */ = 6184DFB3117979AB00AF6EFA /* PBXTextBookmark */;
+ 6184DFB4117979AB00AF6EFA /* PBXTextBookmark */ = 6184DFB4117979AB00AF6EFA /* PBXTextBookmark */;
+ 6184DFB5117979AB00AF6EFA /* PBXTextBookmark */ = 6184DFB5117979AB00AF6EFA /* PBXTextBookmark */;
+ 6184DFBA117979EC00AF6EFA /* PBXTextBookmark */ = 6184DFBA117979EC00AF6EFA /* PBXTextBookmark */;
+ 6184DFBB117979EC00AF6EFA /* PBXTextBookmark */ = 6184DFBB117979EC00AF6EFA /* PBXTextBookmark */;
+ 6184DFBC117979EC00AF6EFA /* PBXTextBookmark */ = 6184DFBC117979EC00AF6EFA /* PBXTextBookmark */;
+ 6184DFBE117979FE00AF6EFA /* PBXBookmark */ = 6184DFBE117979FE00AF6EFA /* PBXBookmark */;
+ 6184DFC111797A1500AF6EFA /* PBXTextBookmark */ = 6184DFC111797A1500AF6EFA /* PBXTextBookmark */;
+ 6184DFC211797A1500AF6EFA /* PBXTextBookmark */ = 6184DFC211797A1500AF6EFA /* PBXTextBookmark */;
+ 6184DFC511797A1500AF6EFA /* PBXTextBookmark */ = 6184DFC511797A1500AF6EFA /* PBXTextBookmark */;
+ 6184DFC611797A1500AF6EFA /* PBXTextBookmark */ = 6184DFC611797A1500AF6EFA /* PBXTextBookmark */;
+ 6184DFCB11797A4900AF6EFA /* PBXTextBookmark */ = 6184DFCB11797A4900AF6EFA /* PBXTextBookmark */;
+ 6184DFCC11797A4900AF6EFA /* PBXTextBookmark */ = 6184DFCC11797A4900AF6EFA /* PBXTextBookmark */;
+ 6184DFCD11797A4900AF6EFA /* PBXTextBookmark */ = 6184DFCD11797A4900AF6EFA /* PBXTextBookmark */;
+ 6184DFCE11797A4900AF6EFA /* PBXTextBookmark */ = 6184DFCE11797A4900AF6EFA /* PBXTextBookmark */;
+ 6184DFD011797AAC00AF6EFA /* PBXBookmark */ = 6184DFD011797AAC00AF6EFA /* PBXBookmark */;
+ 6184DFD311797AE500AF6EFA /* PBXTextBookmark */ = 6184DFD311797AE500AF6EFA /* PBXTextBookmark */;
+ 6184DFD411797AE500AF6EFA /* PBXTextBookmark */ = 6184DFD411797AE500AF6EFA /* PBXTextBookmark */;
+ 6184DFD511797AE500AF6EFA /* PBXTextBookmark */ = 6184DFD511797AE500AF6EFA /* PBXTextBookmark */;
+ 6184DFD811797AE500AF6EFA /* PBXTextBookmark */ = 6184DFD811797AE500AF6EFA /* PBXTextBookmark */;
+ 6184DFD911797AE500AF6EFA /* PBXTextBookmark */ = 6184DFD911797AE500AF6EFA /* PBXTextBookmark */;
+ 6184DFDF11797C6600AF6EFA /* PBXTextBookmark */ = 6184DFDF11797C6600AF6EFA /* PBXTextBookmark */;
+ 6184DFE111797D2500AF6EFA /* PBXTextBookmark */ = 6184DFE111797D2500AF6EFA /* PBXTextBookmark */;
+ 6184DFE211797D2500AF6EFA /* PBXTextBookmark */ = 6184DFE211797D2500AF6EFA /* PBXTextBookmark */;
+ 6184DFE311797D2500AF6EFA /* PBXTextBookmark */ = 6184DFE311797D2500AF6EFA /* PBXTextBookmark */;
+ 6184DFE611797D2500AF6EFA /* PBXTextBookmark */ = 6184DFE611797D2500AF6EFA /* PBXTextBookmark */;
+ 6184DFE711797D2500AF6EFA /* PBXTextBookmark */ = 6184DFE711797D2500AF6EFA /* PBXTextBookmark */;
+ 6184DFE811797D2500AF6EFA /* PBXTextBookmark */ = 6184DFE811797D2500AF6EFA /* PBXTextBookmark */;
+ 6184DFE911797D3C00AF6EFA /* PBXTextBookmark */ = 6184DFE911797D3C00AF6EFA /* PBXTextBookmark */;
+ 6184DFEA11797D3C00AF6EFA /* PBXTextBookmark */ = 6184DFEA11797D3C00AF6EFA /* PBXTextBookmark */;
+ 6184DFEB11797D3C00AF6EFA /* PBXTextBookmark */ = 6184DFEB11797D3C00AF6EFA /* PBXTextBookmark */;
+ 6184DFF211797D7C00AF6EFA /* PBXTextBookmark */ = 6184DFF211797D7C00AF6EFA /* PBXTextBookmark */;
+ 6184DFF31179809400AF6EFA /* PBXTextBookmark */ = 6184DFF31179809400AF6EFA /* PBXTextBookmark */;
+ 6184DFF41179809400AF6EFA /* PBXTextBookmark */ = 6184DFF41179809400AF6EFA /* PBXTextBookmark */;
+ 6184DFF51179809400AF6EFA /* XCBuildMessageTextBookmark */ = 6184DFF51179809400AF6EFA /* XCBuildMessageTextBookmark */;
+ 6184DFF61179809400AF6EFA /* PBXTextBookmark */ = 6184DFF61179809400AF6EFA /* PBXTextBookmark */;
+ 6184DFF71179809A00AF6EFA /* PBXTextBookmark */ = 6184DFF71179809A00AF6EFA /* PBXTextBookmark */;
+ 6184DFF81179809B00AF6EFA /* PBXTextBookmark */ = 6184DFF81179809B00AF6EFA /* PBXTextBookmark */;
+ 6188FE60116F77AF004F3690 = 6188FE60116F77AF004F3690 /* PBXTextBookmark */;
+ 618AFC07115BE92A003D411B = 618AFC07115BE92A003D411B /* PBXBookmark */;
+ 618BE56511750F6B00F22556 = 618BE56511750F6B00F22556 /* PBXTextBookmark */;
+ 618BE56611750F6B00F22556 = 618BE56611750F6B00F22556 /* PBXTextBookmark */;
+ 618BE599117512E400F22556 = 618BE599117512E400F22556 /* PBXTextBookmark */;
+ 618BE59A117512E400F22556 = 618BE59A117512E400F22556 /* PBXTextBookmark */;
+ 618BE5FD11751F1C00F22556 = 618BE5FD11751F1C00F22556 /* PBXTextBookmark */;
+ 618BE5FE11751F1C00F22556 = 618BE5FE11751F1C00F22556 /* PBXTextBookmark */;
+ 618BE61E117520B700F22556 = 618BE61E117520B700F22556 /* PBXTextBookmark */;
+ 618BE6C2117528B200F22556 = 618BE6C2117528B200F22556 /* PBXTextBookmark */;
+ 618BE6C3117528B200F22556 = 618BE6C3117528B200F22556 /* PBXTextBookmark */;
+ 618BE6E81175298700F22556 = 618BE6E81175298700F22556 /* PBXTextBookmark */;
+ 618BE70011752C5200F22556 = 618BE70011752C5200F22556 /* PBXTextBookmark */;
+ 618BE70111752C5200F22556 = 618BE70111752C5200F22556 /* PBXTextBookmark */;
+ 618BE70311752C5200F22556 = 618BE70311752C5200F22556 /* PBXTextBookmark */;
+ 618BE70511752C5200F22556 = 618BE70511752C5200F22556 /* PBXTextBookmark */;
+ 618BE70711752C5200F22556 = 618BE70711752C5200F22556 /* PBXTextBookmark */;
+ 618BE72C11752D7900F22556 = 618BE72C11752D7900F22556 /* PBXTextBookmark */;
+ 6196317D116E89DF00C47CEE = 6196317D116E89DF00C47CEE /* PBXTextBookmark */;
+ 619C51C6116E42850049FD84 = 619C51C6116E42850049FD84 /* PBXTextBookmark */;
+ 619C51CB116E42850049FD84 = 619C51CB116E42850049FD84 /* PBXTextBookmark */;
+ 619C51E0116E45820049FD84 = 619C51E0116E45820049FD84 /* PBXTextBookmark */;
+ 619C523D116E56330049FD84 = 619C523D116E56330049FD84 /* PBXBookmark */;
+ 619C523F116E56330049FD84 = 619C523F116E56330049FD84 /* PBXBookmark */;
+ 619C5241116E56330049FD84 = 619C5241116E56330049FD84 /* PBXBookmark */;
+ 619C5243116E56330049FD84 = 619C5243116E56330049FD84 /* PBXBookmark */;
+ 619C5245116E56330049FD84 = 619C5245116E56330049FD84 /* PBXBookmark */;
+ 619C5247116E56330049FD84 = 619C5247116E56330049FD84 /* PBXBookmark */;
+ 619C5249116E56330049FD84 = 619C5249116E56330049FD84 /* PBXBookmark */;
+ 619C524B116E56330049FD84 = 619C524B116E56330049FD84 /* PBXBookmark */;
+ 619C524D116E56330049FD84 = 619C524D116E56330049FD84 /* PBXBookmark */;
+ 619C524F116E56330049FD84 = 619C524F116E56330049FD84 /* PBXBookmark */;
+ 619C5251116E56330049FD84 = 619C5251116E56330049FD84 /* PBXBookmark */;
+ 619C5253116E56330049FD84 = 619C5253116E56330049FD84 /* PBXBookmark */;
+ 619C5255116E56330049FD84 = 619C5255116E56330049FD84 /* PBXBookmark */;
+ 619C5257116E56330049FD84 = 619C5257116E56330049FD84 /* PBXBookmark */;
+ 619C5259116E56330049FD84 = 619C5259116E56330049FD84 /* PBXBookmark */;
+ 619C525B116E56330049FD84 = 619C525B116E56330049FD84 /* PBXBookmark */;
+ 619C525D116E56330049FD84 = 619C525D116E56330049FD84 /* PBXBookmark */;
+ 619C525F116E56330049FD84 = 619C525F116E56330049FD84 /* PBXBookmark */;
+ 619C5261116E56330049FD84 = 619C5261116E56330049FD84 /* PBXBookmark */;
+ 619C5263116E56330049FD84 = 619C5263116E56330049FD84 /* PBXBookmark */;
+ 619C5265116E56330049FD84 = 619C5265116E56330049FD84 /* PBXBookmark */;
+ 619C5267116E56330049FD84 = 619C5267116E56330049FD84 /* PBXBookmark */;
+ 619C5269116E56330049FD84 = 619C5269116E56330049FD84 /* PBXBookmark */;
+ 619C526B116E56330049FD84 = 619C526B116E56330049FD84 /* PBXBookmark */;
+ 619C526D116E56330049FD84 = 619C526D116E56330049FD84 /* PBXBookmark */;
+ 619C526F116E56330049FD84 = 619C526F116E56330049FD84 /* PBXBookmark */;
+ 619C5271116E56330049FD84 = 619C5271116E56330049FD84 /* PBXBookmark */;
+ 619C5273116E56330049FD84 = 619C5273116E56330049FD84 /* PBXBookmark */;
+ 619C5275116E56330049FD84 = 619C5275116E56330049FD84 /* PBXBookmark */;
+ 619C5277116E56330049FD84 = 619C5277116E56330049FD84 /* PBXBookmark */;
+ 619C5279116E56330049FD84 = 619C5279116E56330049FD84 /* PBXBookmark */;
+ 619C527B116E56330049FD84 = 619C527B116E56330049FD84 /* PBXBookmark */;
+ 619C527D116E56330049FD84 = 619C527D116E56330049FD84 /* PBXBookmark */;
+ 619C527F116E56330049FD84 = 619C527F116E56330049FD84 /* PBXBookmark */;
+ 619C5281116E56330049FD84 = 619C5281116E56330049FD84 /* PBXBookmark */;
+ 619C5283116E56330049FD84 = 619C5283116E56330049FD84 /* PBXBookmark */;
+ 619C5285116E56330049FD84 = 619C5285116E56330049FD84 /* PBXBookmark */;
+ 619C5287116E56330049FD84 = 619C5287116E56330049FD84 /* PBXBookmark */;
+ 619C5289116E56330049FD84 = 619C5289116E56330049FD84 /* PBXBookmark */;
+ 619C528B116E56330049FD84 = 619C528B116E56330049FD84 /* PBXBookmark */;
+ 619C528D116E56330049FD84 = 619C528D116E56330049FD84 /* PBXBookmark */;
+ 619C528F116E56330049FD84 = 619C528F116E56330049FD84 /* PBXBookmark */;
+ 619C5291116E56330049FD84 = 619C5291116E56330049FD84 /* PBXBookmark */;
+ 619C5293116E56330049FD84 = 619C5293116E56330049FD84 /* PBXBookmark */;
+ 619C5295116E56330049FD84 = 619C5295116E56330049FD84 /* PBXBookmark */;
+ 619C5297116E56330049FD84 = 619C5297116E56330049FD84 /* PBXBookmark */;
+ 619C5299116E56330049FD84 = 619C5299116E56330049FD84 /* PBXBookmark */;
+ 619C529B116E56330049FD84 = 619C529B116E56330049FD84 /* PBXBookmark */;
+ 619C529D116E56330049FD84 = 619C529D116E56330049FD84 /* PBXBookmark */;
+ 619C529F116E56330049FD84 = 619C529F116E56330049FD84 /* PBXBookmark */;
+ 619C52A1116E56330049FD84 = 619C52A1116E56330049FD84 /* PBXBookmark */;
+ 619C52A3116E56330049FD84 = 619C52A3116E56330049FD84 /* PBXBookmark */;
+ 619C52A5116E56330049FD84 = 619C52A5116E56330049FD84 /* PBXBookmark */;
+ 619C52A7116E56330049FD84 = 619C52A7116E56330049FD84 /* PBXBookmark */;
+ 619C52A9116E56330049FD84 = 619C52A9116E56330049FD84 /* PBXBookmark */;
+ 619C52AB116E56330049FD84 = 619C52AB116E56330049FD84 /* PBXBookmark */;
+ 619C52AD116E56330049FD84 = 619C52AD116E56330049FD84 /* PBXBookmark */;
+ 619C52AF116E56330049FD84 = 619C52AF116E56330049FD84 /* PBXBookmark */;
+ 619C52B1116E56330049FD84 = 619C52B1116E56330049FD84 /* PBXBookmark */;
+ 619C52B7116E56330049FD84 = 619C52B7116E56330049FD84 /* PBXBookmark */;
+ 619C52B9116E56330049FD84 = 619C52B9116E56330049FD84 /* PBXBookmark */;
+ 619C52BB116E56330049FD84 = 619C52BB116E56330049FD84 /* PBXBookmark */;
+ 619C52BD116E56330049FD84 = 619C52BD116E56330049FD84 /* PBXBookmark */;
+ 619C52BF116E56330049FD84 = 619C52BF116E56330049FD84 /* PBXBookmark */;
+ 619C52C1116E56330049FD84 = 619C52C1116E56330049FD84 /* PBXBookmark */;
+ 619C5373116E731F0049FD84 = 619C5373116E731F0049FD84 /* PBXTextBookmark */;
+ 619C5859116E73B00049FD84 = 619C5859116E73B00049FD84 /* PBXBookmark */;
+ 619C585B116E73B00049FD84 = 619C585B116E73B00049FD84 /* PBXBookmark */;
+ 619C585D116E73B00049FD84 = 619C585D116E73B00049FD84 /* PBXBookmark */;
+ 619C585F116E73B00049FD84 = 619C585F116E73B00049FD84 /* PBXBookmark */;
+ 619C5861116E73B00049FD84 = 619C5861116E73B00049FD84 /* PBXBookmark */;
+ 619C5863116E73B00049FD84 = 619C5863116E73B00049FD84 /* PBXBookmark */;
+ 619C5865116E73B00049FD84 = 619C5865116E73B00049FD84 /* PBXBookmark */;
+ 619C5867116E73B00049FD84 = 619C5867116E73B00049FD84 /* PBXBookmark */;
+ 619C5869116E73B00049FD84 = 619C5869116E73B00049FD84 /* PBXBookmark */;
+ 619C586B116E73B00049FD84 = 619C586B116E73B00049FD84 /* PBXBookmark */;
+ 619C586D116E73B00049FD84 = 619C586D116E73B00049FD84 /* PBXBookmark */;
+ 619C586F116E73B00049FD84 = 619C586F116E73B00049FD84 /* PBXBookmark */;
+ 619C5871116E73B00049FD84 = 619C5871116E73B00049FD84 /* PBXBookmark */;
+ 619C5873116E73B00049FD84 = 619C5873116E73B00049FD84 /* PBXBookmark */;
+ 619C5875116E73B00049FD84 = 619C5875116E73B00049FD84 /* PBXBookmark */;
+ 619C5877116E73B00049FD84 = 619C5877116E73B00049FD84 /* PBXBookmark */;
+ 619C5879116E73B00049FD84 = 619C5879116E73B00049FD84 /* PBXBookmark */;
+ 619C587B116E73B00049FD84 = 619C587B116E73B00049FD84 /* PBXBookmark */;
+ 619C587D116E73B00049FD84 = 619C587D116E73B00049FD84 /* PBXBookmark */;
+ 619C587F116E73B00049FD84 = 619C587F116E73B00049FD84 /* PBXBookmark */;
+ 619C5880116E73B00049FD84 = 619C5880116E73B00049FD84 /* PBXBookmark */;
+ 619C5882116E73B00049FD84 = 619C5882116E73B00049FD84 /* PBXBookmark */;
+ 619C5883116E73B00049FD84 = 619C5883116E73B00049FD84 /* PBXBookmark */;
+ 619C5885116E73B00049FD84 = 619C5885116E73B00049FD84 /* PBXBookmark */;
+ 619C5887116E73B00049FD84 = 619C5887116E73B00049FD84 /* PBXBookmark */;
+ 619C5888116E73B00049FD84 = 619C5888116E73B00049FD84 /* PBXBookmark */;
+ 619C5889116E73B00049FD84 = 619C5889116E73B00049FD84 /* PBXBookmark */;
+ 619C588B116E73B00049FD84 = 619C588B116E73B00049FD84 /* PBXBookmark */;
+ 619C588C116E73B00049FD84 = 619C588C116E73B00049FD84 /* PBXBookmark */;
+ 619C588D116E73B00049FD84 = 619C588D116E73B00049FD84 /* PBXBookmark */;
+ 619C588F116E73B00049FD84 = 619C588F116E73B00049FD84 /* PBXBookmark */;
+ 619C5890116E73B00049FD84 = 619C5890116E73B00049FD84 /* PBXBookmark */;
+ 619C5892116E73B00049FD84 = 619C5892116E73B00049FD84 /* PBXBookmark */;
+ 619C58B2116E76080049FD84 = 619C58B2116E76080049FD84 /* PBXBookmark */;
+ 619C58B3116E76080049FD84 = 619C58B3116E76080049FD84 /* PBXTextBookmark */;
+ 61BD54C411789A020038D495 = 61BD54C411789A020038D495 /* PBXTextBookmark */;
+ 61CCBE60116135FF00833FE8 = 61CCBE60116135FF00833FE8 /* PBXTextBookmark */;
+ 61CCBF1E116162CA00833FE8 = 61CCBF1E116162CA00833FE8 /* PBXTextBookmark */;
+ 61CCBF451161637F00833FE8 = 61CCBF451161637F00833FE8 /* PBXTextBookmark */;
+ 61CCBF461161637F00833FE8 = 61CCBF461161637F00833FE8 /* PBXTextBookmark */;
+ 61CCBF471161637F00833FE8 = 61CCBF471161637F00833FE8 /* PBXTextBookmark */;
+ 61CCBF7B1161657400833FE8 = 61CCBF7B1161657400833FE8 /* PBXTextBookmark */;
+ 61CCBF7C1161657400833FE8 = 61CCBF7C1161657400833FE8 /* PBXTextBookmark */;
+ 61CCBF7E1161657400833FE8 = 61CCBF7E1161657400833FE8 /* PBXTextBookmark */;
+ 61CCBF7F1161657400833FE8 = 61CCBF7F1161657400833FE8 /* PBXTextBookmark */;
+ 61CCBFD11161833800833FE8 = 61CCBFD11161833800833FE8 /* PBXTextBookmark */;
+ 61CCBFD21161833800833FE8 = 61CCBFD21161833800833FE8 /* PBXTextBookmark */;
+ 61CCBFD31161833800833FE8 = 61CCBFD31161833800833FE8 /* PBXTextBookmark */;
+ 61CCBFD41161833800833FE8 = 61CCBFD41161833800833FE8 /* PBXTextBookmark */;
+ 61CCBFD51161833800833FE8 = 61CCBFD51161833800833FE8 /* PBXTextBookmark */;
+ 61CCBFD71161833800833FE8 = 61CCBFD71161833800833FE8 /* PBXTextBookmark */;
+ 61CCBFD91161833800833FE8 = 61CCBFD91161833800833FE8 /* PBXTextBookmark */;
+ 61CCBFDA1161833800833FE8 = 61CCBFDA1161833800833FE8 /* PBXTextBookmark */;
+ 61CCBFDB1161833800833FE8 = 61CCBFDB1161833800833FE8 /* PBXTextBookmark */;
+ 61CCBFDC1161833800833FE8 = 61CCBFDC1161833800833FE8 /* PBXTextBookmark */;
+ 61CE23E7115E49560098C467 = 61CE23E7115E49560098C467 /* PBXTextBookmark */;
+ 61CE23FF115E4B290098C467 = 61CE23FF115E4B290098C467 /* PBXBookmark */;
+ 61CE251F115E75A70098C467 = 61CE251F115E75A70098C467 /* PBXBookmark */;
+ 61CEDB60116ACBBB0067BAFC = 61CEDB60116ACBBB0067BAFC /* PBXTextBookmark */;
+ 61D96559117180D9001EB3B4 = 61D96559117180D9001EB3B4 /* PBXTextBookmark */;
+ 61D96591117182B1001EB3B4 = 61D96591117182B1001EB3B4 /* PBXTextBookmark */;
+ 61E2F0811156B170002D33C1 = 61E2F0811156B170002D33C1 /* PBXTextBookmark */;
+ 61F6AB931177BE470013254C = 61F6AB931177BE470013254C /* PBXTextBookmark */;
+ 61F8E0D6116E98A900108149 = 61F8E0D6116E98A900108149 /* PBXTextBookmark */;
+ 61FE2AE4116D658700F76CDC = 61FE2AE4116D658700F76CDC /* PBXTextBookmark */;
};
sourceControlManager = 617987DF114AA2EB00BA94A9 /* Source Control */;
userBuildSettings = {
@@ -488,11 +715,6 @@
name = uMisc.s;
path = "/Users/vittorio/hedgewars/trunk/project_files/HedgewarsMobile/build/HedgewarsMobile.build/Debug-iphonesimulator/HedgewarsMobile.build/DerivedSources-normal/i386/uMisc.s";
sourceTree = "<absolute>";
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {880, 71318}}";
- sepNavSelRange = "{126279, 0}";
- sepNavVisRange = "{75947, 380}";
- };
};
614A818A1178C72A00552546 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
@@ -506,13 +728,14 @@
};
614A818B1178C72A00552546 /* uMisc.s */ = {
isa = PBXFileReference;
+ lastKnownFileType = sourcecode.asm;
name = uMisc.s;
path = "/Users/vittorio/hedgewars/trunk/project_files/HedgewarsMobile/build/HedgewarsMobile.build/Debug-iphonesimulator/HedgewarsMobile.build/DerivedSources-normal/i386/uMisc.s";
sourceTree = "<absolute>";
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {880, 71318}}";
- sepNavSelRange = "{126279, 0}";
- sepNavVisRange = "{75947, 380}";
+ sepNavIntBoundsRect = "{{0, 0}, {880, 73606}}";
+ sepNavSelRange = "{76263, 0}";
+ sepNavVisRange = "{125943, 336}";
};
};
61513435116C1B07001F16D1 /* PBXTextBookmark */ = {
@@ -1002,9 +1225,9 @@
};
61798856114AA48A00BA94A9 /* CGPointUtils.c */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {544, 559}}";
+ sepNavIntBoundsRect = "{{0, 0}, {474, 572}}";
sepNavSelRange = "{423, 0}";
- sepNavVisRange = "{34, 609}";
+ sepNavVisRange = "{139, 468}";
sepNavWindowFrame = "{{107, 411}, {960, 678}}";
};
};
@@ -1102,9 +1325,9 @@
};
61798888114AA4E600BA94A9 /* GameSetup.m */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1384, 5070}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1384, 5044}}";
sepNavSelRange = "{2276, 0}";
- sepNavVisRange = "{10455, 1732}";
+ sepNavVisRange = "{1347, 2987}";
sepNavWindowFrame = "{{93, 224}, {1079, 870}}";
};
};
@@ -1214,6 +1437,2218 @@
vrLen = 144;
vrLoc = 0;
};
+ 6184DE111178F46B00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 614A818B1178C72A00552546 /* uMisc.s */;
+ name = "uMisc.s: 5536";
+ rLen = 0;
+ rLoc = 126279;
+ rType = 0;
+ vrLen = 360;
+ vrLoc = 75947;
+ };
+ 6184DE1D1178F4B900AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ rLen = 1;
+ rLoc = 39;
+ rType = 1;
+ };
+ 6184DE201178F4BD00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 614A818B1178C72A00552546 /* uMisc.s */;
+ name = "uMisc.s: 3086";
+ rLen = 0;
+ rLoc = 76263;
+ rType = 0;
+ vrLen = 336;
+ vrLoc = 125943;
+ };
+ 6184DE211178F4BD00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 318";
+ rLen = 0;
+ rLoc = 14059;
+ rType = 0;
+ vrLen = 1039;
+ vrLoc = 11004;
+ };
+ 6184DE221178F4BD00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 318";
+ rLen = 0;
+ rLoc = 14059;
+ rType = 0;
+ vrLen = 969;
+ vrLoc = 11004;
+ };
+ 6184DE251178F4BD00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 356";
+ rLen = 0;
+ rLoc = 16052;
+ rType = 0;
+ vrLen = 2371;
+ vrLoc = 797;
+ };
+ 6184DE261178F4BD00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 356";
+ rLen = 0;
+ rLoc = 16052;
+ rType = 0;
+ vrLen = 2263;
+ vrLoc = 797;
+ };
+ 6184DE341178F56B00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 319";
+ rLen = 0;
+ rLoc = 14059;
+ rType = 0;
+ vrLen = 1045;
+ vrLoc = 10956;
+ };
+ 6184DE351178F56B00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 71";
+ rLen = 0;
+ rLoc = 2785;
+ rType = 0;
+ vrLen = 2336;
+ vrLoc = 1583;
+ };
+ 6184DE3B1178F5BA00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 319";
+ rLen = 0;
+ rLoc = 14059;
+ rType = 0;
+ vrLen = 1045;
+ vrLoc = 10977;
+ };
+ 6184DE3C1178F5BA00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 250";
+ rLen = 0;
+ rLoc = 8953;
+ rType = 0;
+ vrLen = 3093;
+ vrLoc = 9025;
+ };
+ 6184DE401178F5C400AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 319";
+ rLen = 0;
+ rLoc = 14059;
+ rType = 0;
+ vrLen = 1045;
+ vrLoc = 10979;
+ };
+ 6184DE411178F5C400AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 256";
+ rLen = 0;
+ rLoc = 9311;
+ rType = 0;
+ vrLen = 3095;
+ vrLoc = 9025;
+ };
+ 6184DE471178F68C00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 319";
+ rLen = 0;
+ rLoc = 14059;
+ rType = 0;
+ vrLen = 885;
+ vrLoc = 9776;
+ };
+ 6184DE481178F68C00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 38";
+ rLen = 5;
+ rLoc = 978;
+ rType = 0;
+ vrLen = 1701;
+ vrLoc = 389;
+ };
+ 6184DE4D1178F6F200AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 319";
+ rLen = 0;
+ rLoc = 14059;
+ rType = 0;
+ vrLen = 885;
+ vrLoc = 9780;
+ };
+ 6184DE4E1178F6F200AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 175";
+ rLen = 0;
+ rLoc = 6331;
+ rType = 0;
+ vrLen = 1484;
+ vrLoc = 6247;
+ };
+ 6184DE521178F72200AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 318";
+ rLen = 0;
+ rLoc = 14059;
+ rType = 0;
+ vrLen = 885;
+ vrLoc = 9764;
+ };
+ 6184DE531178F72200AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 71";
+ rLen = 0;
+ rLoc = 2785;
+ rType = 0;
+ vrLen = 2304;
+ vrLoc = 1499;
+ };
+ 6184DE5A1178F75E00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 39";
+ rLen = 48;
+ rLoc = 997;
+ rType = 0;
+ vrLen = 468;
+ vrLoc = 723;
+ };
+ 6184DE5B1178F75E00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 71";
+ rLen = 0;
+ rLoc = 2785;
+ rType = 0;
+ vrLen = 1733;
+ vrLoc = 357;
+ };
+ 6184DE5E1178F7D700AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 39";
+ rLen = 48;
+ rLoc = 997;
+ rType = 0;
+ vrLen = 468;
+ vrLoc = 723;
+ };
+ 6184DE5F1178F7D700AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 169";
+ rLen = 0;
+ rLoc = 6052;
+ rType = 0;
+ vrLen = 1441;
+ vrLoc = 6306;
+ };
+ 6184DE631178F80E00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 39";
+ rLen = 48;
+ rLoc = 997;
+ rType = 0;
+ vrLen = 468;
+ vrLoc = 723;
+ };
+ 6184DE641178F80E00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 176";
+ rLen = 0;
+ rLoc = 6337;
+ rType = 0;
+ vrLen = 1403;
+ vrLoc = 6452;
+ };
+ 6184DE681178F84100AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 39";
+ rLen = 48;
+ rLoc = 997;
+ rType = 0;
+ vrLen = 468;
+ vrLoc = 723;
+ };
+ 6184DE691178F84100AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 71";
+ rLen = 0;
+ rLoc = 2700;
+ rType = 0;
+ vrLen = 2291;
+ vrLoc = 1461;
+ };
+ 6184DE6F117901F600AF6EFA /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ };
+ 6184DE7511795AEE00AF6EFA /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 618BE60211751F4F00F22556 /* GravesViewController.m */;
+ };
+ 6184DE7E11795D3F00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 39";
+ rLen = 48;
+ rLoc = 997;
+ rType = 0;
+ vrLen = 550;
+ vrLoc = 723;
+ };
+ 6184DE7F11795D3F00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C51BE116E40FC0049FD84 /* CommodityFunctions.m */;
+ name = "CommodityFunctions.m: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 671;
+ vrLoc = 150;
+ };
+ 6184DE8011795D3F00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE60211751F4F00F22556 /* GravesViewController.m */;
+ name = "GravesViewController.m: 158";
+ rLen = 0;
+ rLoc = 4789;
+ rType = 0;
+ vrLen = 771;
+ vrLoc = 4672;
+ };
+ 6184DE8111795D3F00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C58A9116E752A0049FD84 /* UIImageExtra.h */;
+ name = "UIImageScale.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 254;
+ vrLoc = 0;
+ };
+ 6184DE8211795D3F00AF6EFA /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 619C58AA116E752A0049FD84 /* UIImageExtra.m */;
+ };
+ 6184DE8311795D3F00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C58AA116E752A0049FD84 /* UIImageExtra.m */;
+ name = "UIImageScale.m: 14";
+ rLen = 0;
+ rLoc = 216;
+ rType = 0;
+ vrLen = 284;
+ vrLoc = 0;
+ };
+ 6184DE8611795D3F00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 157";
+ rLen = 0;
+ rLoc = 5936;
+ rType = 0;
+ vrLen = 1662;
+ vrLoc = 5449;
+ };
+ 6184DE8911795D3F00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C51BE116E40FC0049FD84 /* CommodityFunctions.m */;
+ name = "CommodityFunctions.m: 43";
+ rLen = 0;
+ rLoc = 1715;
+ rType = 0;
+ vrLen = 2044;
+ vrLoc = 0;
+ };
+ 6184DE8A11795D3F00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C51BD116E40FC0049FD84 /* CommodityFunctions.h */;
+ name = "CommodityFunctions.h: 31";
+ rLen = 0;
+ rLoc = 1576;
+ rType = 0;
+ vrLen = 1517;
+ vrLoc = 0;
+ };
+ 6184DE8B11795D3F00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C51BD116E40FC0049FD84 /* CommodityFunctions.h */;
+ name = "CommodityFunctions.h: 28";
+ rLen = 0;
+ rLoc = 1507;
+ rType = 0;
+ vrLen = 1444;
+ vrLoc = 0;
+ };
+ 6184DE8E11795D3F00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C58A9116E752A0049FD84 /* UIImageExtra.h */;
+ name = "UIImageScale.h: 15";
+ rLen = 0;
+ rLoc = 329;
+ rType = 0;
+ vrLen = 336;
+ vrLoc = 0;
+ };
+ 6184DE8F11795D3F00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C58AA116E752A0049FD84 /* UIImageExtra.m */;
+ name = "UIImageScale.m: 32";
+ rLen = 82;
+ rLoc = 740;
+ rType = 0;
+ vrLen = 1109;
+ vrLoc = 0;
+ };
+ 6184DE9011795D3F00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C58AA116E752A0049FD84 /* UIImageExtra.m */;
+ name = "UIImageScale.m: 34";
+ rLen = 0;
+ rLoc = 904;
+ rType = 0;
+ vrLen = 1109;
+ vrLoc = 0;
+ };
+ 6184DE9311795D3F00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE60211751F4F00F22556 /* GravesViewController.m */;
+ name = "GravesViewController.m: 158";
+ rLen = 0;
+ rLoc = 4789;
+ rType = 0;
+ vrLen = 1613;
+ vrLoc = 516;
+ };
+ 6184DE9511795D6700AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C58AA116E752A0049FD84 /* UIImageExtra.m */;
+ name = "UIImageScale.m: 14";
+ rLen = 0;
+ rLoc = 216;
+ rType = 0;
+ vrLen = 371;
+ vrLoc = 0;
+ };
+ 6184DE9611795D6700AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 17";
+ rLen = 0;
+ rLoc = 444;
+ rType = 0;
+ vrLen = 1495;
+ vrLoc = 0;
+ };
+ 6184DE9711795D6700AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C51BD116E40FC0049FD84 /* CommodityFunctions.h */;
+ name = "CommodityFunctions.h: 28";
+ rLen = 0;
+ rLoc = 1507;
+ rType = 0;
+ vrLen = 1444;
+ vrLoc = 0;
+ };
+ 6184DE9811795D6700AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C58AA116E752A0049FD84 /* UIImageExtra.m */;
+ name = "UIImageScale.m: 34";
+ rLen = 0;
+ rLoc = 904;
+ rType = 0;
+ vrLen = 1109;
+ vrLoc = 0;
+ };
+ 6184DE9911795D6700AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE60211751F4F00F22556 /* GravesViewController.m */;
+ name = "GravesViewController.m: 158";
+ rLen = 0;
+ rLoc = 4789;
+ rType = 0;
+ vrLen = 1617;
+ vrLoc = 516;
+ };
+ 6184DE9C11795DA500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C58A9116E752A0049FD84 /* UIImageExtra.h */;
+ name = "UIImageScale.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 336;
+ vrLoc = 0;
+ };
+ 6184DE9D11795DA500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C58A9116E752A0049FD84 /* UIImageExtra.h */;
+ name = "UIImageScale.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 336;
+ vrLoc = 0;
+ };
+ 6184DE9E11795DA500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 17";
+ rLen = 0;
+ rLoc = 444;
+ rType = 0;
+ vrLen = 1495;
+ vrLoc = 0;
+ };
+ 6184DE9F11795DA500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C51BD116E40FC0049FD84 /* CommodityFunctions.h */;
+ name = "CommodityFunctions.h: 28";
+ rLen = 0;
+ rLoc = 1507;
+ rType = 0;
+ vrLen = 1444;
+ vrLoc = 0;
+ };
+ 6184DEA011795DA500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE60211751F4F00F22556 /* GravesViewController.m */;
+ name = "GravesViewController.m: 158";
+ rLen = 0;
+ rLoc = 4789;
+ rType = 0;
+ vrLen = 1617;
+ vrLoc = 516;
+ };
+ 6184DEA111795DBD00AF6EFA /* UIImageExtra.h */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {943, 650}}";
+ sepNavSelRange = "{19, 0}";
+ sepNavVisRange = "{0, 406}";
+ };
+ };
+ 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {474, 1108}}";
+ sepNavSelRange = "{145, 0}";
+ sepNavVisRange = "{0, 284}";
+ sepNavWindowFrame = "{{672, 213}, {1002, 778}}";
+ };
+ };
+ 6184DEAF11795FC700AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE60211751F4F00F22556 /* GravesViewController.m */;
+ name = "GravesViewController.m: 158";
+ rLen = 0;
+ rLoc = 4789;
+ rType = 0;
+ vrLen = 771;
+ vrLoc = 4672;
+ };
+ 6184DEB011795FC700AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 9";
+ rLen = 0;
+ rLoc = 145;
+ rType = 0;
+ vrLen = 371;
+ vrLoc = 0;
+ };
+ 6184DEB111795FC700AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798856114AA48A00BA94A9 /* CGPointUtils.c */;
+ name = "CGPointUtils.c: 19";
+ rLen = 0;
+ rLoc = 423;
+ rType = 0;
+ vrLen = 468;
+ vrLoc = 139;
+ };
+ 6184DEB211795FC700AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798856114AA48A00BA94A9 /* CGPointUtils.c */;
+ name = "CGPointUtils.c: 19";
+ rLen = 0;
+ rLoc = 423;
+ rType = 0;
+ vrLen = 431;
+ vrLoc = 139;
+ };
+ 6184DEB311795FC700AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 152";
+ rLen = 0;
+ rLoc = 5846;
+ rType = 0;
+ vrLen = 1970;
+ vrLoc = 4570;
+ };
+ 6184DEB611795FC700AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA111795DBD00AF6EFA /* UIImageExtra.h */;
+ name = "UIImageExtra.h: 16";
+ rLen = 0;
+ rLoc = 336;
+ rType = 0;
+ vrLen = 379;
+ vrLoc = 0;
+ };
+ 6184DEB711795FC700AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 41";
+ rLen = 0;
+ rLoc = 1456;
+ rType = 0;
+ vrLen = 1344;
+ vrLoc = 0;
+ };
+ 6184DEB811795FC700AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 47";
+ rLen = 0;
+ rLoc = 2158;
+ rType = 0;
+ vrLen = 1351;
+ vrLoc = 0;
+ };
+ 6184DEB911795FC700AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C51BD116E40FC0049FD84 /* CommodityFunctions.h */;
+ name = "CommodityFunctions.h: 28";
+ rLen = 0;
+ rLoc = 1507;
+ rType = 0;
+ vrLen = 1444;
+ vrLoc = 0;
+ };
+ 6184DEBA11795FC700AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE60211751F4F00F22556 /* GravesViewController.m */;
+ name = "GravesViewController.m: 158";
+ rLen = 0;
+ rLoc = 4789;
+ rType = 0;
+ vrLen = 1613;
+ vrLoc = 516;
+ };
+ 6184DEBF1179604200AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798856114AA48A00BA94A9 /* CGPointUtils.c */;
+ name = "CGPointUtils.c: 19";
+ rLen = 0;
+ rLoc = 423;
+ rType = 0;
+ vrLen = 431;
+ vrLoc = 139;
+ };
+ 6184DEC01179604200AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 151";
+ rLen = 0;
+ rLoc = 5829;
+ rType = 0;
+ vrLen = 1917;
+ vrLoc = 4612;
+ };
+ 6184DEC11179604200AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 43";
+ rLen = 0;
+ rLoc = 1928;
+ rType = 0;
+ vrLen = 1343;
+ vrLoc = 0;
+ };
+ 6184DEC21179604200AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C51BD116E40FC0049FD84 /* CommodityFunctions.h */;
+ name = "CommodityFunctions.h: 28";
+ rLen = 0;
+ rLoc = 1507;
+ rType = 0;
+ vrLen = 1444;
+ vrLoc = 0;
+ };
+ 6184DEC31179604200AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE60211751F4F00F22556 /* GravesViewController.m */;
+ name = "GravesViewController.m: 158";
+ rLen = 0;
+ rLoc = 4789;
+ rType = 0;
+ vrLen = 1613;
+ vrLoc = 516;
+ };
+ 6184DECB1179609000AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798856114AA48A00BA94A9 /* CGPointUtils.c */;
+ name = "CGPointUtils.c: 19";
+ rLen = 0;
+ rLoc = 423;
+ rType = 0;
+ vrLen = 431;
+ vrLoc = 139;
+ };
+ 6184DECC1179609000AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 157";
+ rLen = 0;
+ rLoc = 5968;
+ rType = 0;
+ vrLen = 1883;
+ vrLoc = 4736;
+ };
+ 6184DECD1179609000AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 43";
+ rLen = 0;
+ rLoc = 1928;
+ rType = 0;
+ vrLen = 1343;
+ vrLoc = 0;
+ };
+ 6184DECE1179609000AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C51BD116E40FC0049FD84 /* CommodityFunctions.h */;
+ name = "CommodityFunctions.h: 28";
+ rLen = 0;
+ rLoc = 1507;
+ rType = 0;
+ vrLen = 1444;
+ vrLoc = 0;
+ };
+ 6184DECF1179609000AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE60211751F4F00F22556 /* GravesViewController.m */;
+ name = "GravesViewController.m: 158";
+ rLen = 0;
+ rLoc = 4789;
+ rType = 0;
+ vrLen = 1613;
+ vrLoc = 516;
+ };
+ 6184DED71179629900AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798856114AA48A00BA94A9 /* CGPointUtils.c */;
+ name = "CGPointUtils.c: 19";
+ rLen = 0;
+ rLoc = 423;
+ rType = 0;
+ vrLen = 431;
+ vrLoc = 139;
+ };
+ 6184DED81179629900AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA111795DBD00AF6EFA /* UIImageExtra.h */;
+ name = "UIImageExtra.h: 16";
+ rLen = 0;
+ rLoc = 375;
+ rType = 0;
+ vrLen = 406;
+ vrLoc = 0;
+ };
+ 6184DED91179629900AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 51";
+ rLen = 0;
+ rLoc = 1879;
+ rType = 0;
+ vrLen = 1427;
+ vrLoc = 170;
+ };
+ 6184DEDA1179629900AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 50";
+ rLen = 0;
+ rLoc = 1791;
+ rType = 0;
+ vrLen = 1452;
+ vrLoc = 145;
+ };
+ 6184DEDB1179629900AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 153";
+ rLen = 0;
+ rLoc = 5967;
+ rType = 0;
+ vrLen = 1815;
+ vrLoc = 4840;
+ };
+ 6184DEDC1179629900AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C51BD116E40FC0049FD84 /* CommodityFunctions.h */;
+ name = "CommodityFunctions.h: 28";
+ rLen = 0;
+ rLoc = 1507;
+ rType = 0;
+ vrLen = 1444;
+ vrLoc = 0;
+ };
+ 6184DEDD1179629900AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE60211751F4F00F22556 /* GravesViewController.m */;
+ name = "GravesViewController.m: 158";
+ rLen = 0;
+ rLoc = 4789;
+ rType = 0;
+ vrLen = 1613;
+ vrLoc = 516;
+ };
+ 6184DEE11179634500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798856114AA48A00BA94A9 /* CGPointUtils.c */;
+ name = "CGPointUtils.c: 19";
+ rLen = 0;
+ rLoc = 423;
+ rType = 0;
+ vrLen = 431;
+ vrLoc = 139;
+ };
+ 6184DEE21179634500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 52";
+ rLen = 0;
+ rLoc = 1879;
+ rType = 0;
+ vrLen = 1486;
+ vrLoc = 145;
+ };
+ 6184DEE31179634500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 137";
+ rLen = 0;
+ rLoc = 5361;
+ rType = 0;
+ vrLen = 1586;
+ vrLoc = 4936;
+ };
+ 6184DEE41179634500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C51BD116E40FC0049FD84 /* CommodityFunctions.h */;
+ name = "CommodityFunctions.h: 28";
+ rLen = 0;
+ rLoc = 1507;
+ rType = 0;
+ vrLen = 1444;
+ vrLoc = 0;
+ };
+ 6184DEE51179634500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE60211751F4F00F22556 /* GravesViewController.m */;
+ name = "GravesViewController.m: 158";
+ rLen = 0;
+ rLoc = 4789;
+ rType = 0;
+ vrLen = 1613;
+ vrLoc = 516;
+ };
+ 6184DEE91179637C00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798856114AA48A00BA94A9 /* CGPointUtils.c */;
+ name = "CGPointUtils.c: 19";
+ rLen = 0;
+ rLoc = 423;
+ rType = 0;
+ vrLen = 431;
+ vrLoc = 139;
+ };
+ 6184DEEA1179637C00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 53";
+ rLen = 0;
+ rLoc = 1911;
+ rType = 0;
+ vrLen = 1479;
+ vrLoc = 145;
+ };
+ 6184DEEB1179637C00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 137";
+ rLen = 0;
+ rLoc = 5361;
+ rType = 0;
+ vrLen = 1650;
+ vrLoc = 4996;
+ };
+ 6184DEEC1179637C00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C51BD116E40FC0049FD84 /* CommodityFunctions.h */;
+ name = "CommodityFunctions.h: 28";
+ rLen = 0;
+ rLoc = 1507;
+ rType = 0;
+ vrLen = 1444;
+ vrLoc = 0;
+ };
+ 6184DEED1179637C00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE60211751F4F00F22556 /* GravesViewController.m */;
+ name = "GravesViewController.m: 158";
+ rLen = 0;
+ rLoc = 4789;
+ rType = 0;
+ vrLen = 1613;
+ vrLoc = 516;
+ };
+ 6184DEEF1179639700AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798856114AA48A00BA94A9 /* CGPointUtils.c */;
+ name = "CGPointUtils.c: 19";
+ rLen = 0;
+ rLoc = 423;
+ rType = 0;
+ vrLen = 431;
+ vrLoc = 139;
+ };
+ 6184DEF01179639700AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 137";
+ rLen = 0;
+ rLoc = 5361;
+ rType = 0;
+ vrLen = 1650;
+ vrLoc = 4996;
+ };
+ 6184DEF11179639700AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 52";
+ rLen = 0;
+ rLoc = 1879;
+ rType = 0;
+ vrLen = 1514;
+ vrLoc = 145;
+ };
+ 6184DEF21179639700AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C51BD116E40FC0049FD84 /* CommodityFunctions.h */;
+ name = "CommodityFunctions.h: 28";
+ rLen = 0;
+ rLoc = 1507;
+ rType = 0;
+ vrLen = 1444;
+ vrLoc = 0;
+ };
+ 6184DEF31179639700AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE60211751F4F00F22556 /* GravesViewController.m */;
+ name = "GravesViewController.m: 158";
+ rLen = 0;
+ rLoc = 4789;
+ rType = 0;
+ vrLen = 1613;
+ vrLoc = 516;
+ };
+ 6184DEF61179659200AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798856114AA48A00BA94A9 /* CGPointUtils.c */;
+ name = "CGPointUtils.c: 19";
+ rLen = 0;
+ rLoc = 423;
+ rType = 0;
+ vrLen = 468;
+ vrLoc = 139;
+ };
+ 6184DEF71179659200AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA111795DBD00AF6EFA /* UIImageExtra.h */;
+ name = "UIImageExtra.h: 16";
+ rLen = 0;
+ rLoc = 336;
+ rType = 0;
+ vrLen = 406;
+ vrLoc = 0;
+ };
+ 6184DEF81179659200AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 41";
+ rLen = 0;
+ rLoc = 1408;
+ rType = 0;
+ vrLen = 1508;
+ vrLoc = 171;
+ };
+ 6184DEF91179659200AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 48";
+ rLen = 0;
+ rLoc = 1374;
+ rType = 0;
+ vrLen = 1619;
+ vrLoc = 334;
+ };
+ 6184DEFA1179659200AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 137";
+ rLen = 0;
+ rLoc = 5361;
+ rType = 0;
+ vrLen = 1778;
+ vrLoc = 5022;
+ };
+ 6184DEFB1179659200AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C51BD116E40FC0049FD84 /* CommodityFunctions.h */;
+ name = "CommodityFunctions.h: 28";
+ rLen = 0;
+ rLoc = 1507;
+ rType = 0;
+ vrLen = 1444;
+ vrLoc = 0;
+ };
+ 6184DEFC1179659200AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE60211751F4F00F22556 /* GravesViewController.m */;
+ name = "GravesViewController.m: 158";
+ rLen = 0;
+ rLoc = 4789;
+ rType = 0;
+ vrLen = 1617;
+ vrLoc = 516;
+ };
+ 6184DF001179666500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798856114AA48A00BA94A9 /* CGPointUtils.c */;
+ name = "CGPointUtils.c: 19";
+ rLen = 0;
+ rLoc = 423;
+ rType = 0;
+ vrLen = 468;
+ vrLoc = 139;
+ };
+ 6184DF011179666500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE60211751F4F00F22556 /* GravesViewController.m */;
+ name = "GravesViewController.m: 152";
+ rLen = 0;
+ rLoc = 4789;
+ rType = 0;
+ vrLen = 755;
+ vrLoc = 4386;
+ };
+ 6184DF021179666500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE60211751F4F00F22556 /* GravesViewController.m */;
+ name = "GravesViewController.m: 158";
+ rLen = 0;
+ rLoc = 4789;
+ rType = 0;
+ vrLen = 1617;
+ vrLoc = 516;
+ };
+ 6184DF031179666500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE60211751F4F00F22556 /* GravesViewController.m */;
+ name = "GravesViewController.m: 38";
+ rLen = 0;
+ rLoc = 1274;
+ rType = 0;
+ vrLen = 1435;
+ vrLoc = 516;
+ };
+ 6184DF041179666500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 42";
+ rLen = 0;
+ rLoc = 1185;
+ rType = 0;
+ vrLen = 1595;
+ vrLoc = 334;
+ };
+ 6184DF06117966F400AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 12";
+ rLen = 0;
+ rLoc = 202;
+ rType = 0;
+ vrLen = 635;
+ vrLoc = 45;
+ };
+ 6184DF07117966F400AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA111795DBD00AF6EFA /* UIImageExtra.h */;
+ rLen = 0;
+ rLoc = 406;
+ rType = 0;
+ };
+ 6184DF08117966F400AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA111795DBD00AF6EFA /* UIImageExtra.h */;
+ name = "UIImageExtra.h: 12";
+ rLen = 0;
+ rLoc = 206;
+ rType = 0;
+ vrLen = 406;
+ vrLoc = 0;
+ };
+ 6184DF09117966F700AF6EFA /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ };
+ 6184DF10117967DC00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE60211751F4F00F22556 /* GravesViewController.m */;
+ name = "GravesViewController.m: 151";
+ rLen = 0;
+ rLoc = 4789;
+ rType = 0;
+ vrLen = 886;
+ vrLoc = 4427;
+ };
+ 6184DF11117967DC00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 40";
+ rLen = 48;
+ rLoc = 997;
+ rType = 0;
+ vrLen = 485;
+ vrLoc = 748;
+ };
+ 6184DF14117967DC00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 311";
+ rLen = 0;
+ rLoc = 13212;
+ rType = 0;
+ vrLen = 2583;
+ vrLoc = 11149;
+ };
+ 6184DF15117967DC00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE60211751F4F00F22556 /* GravesViewController.m */;
+ name = "GravesViewController.m: 37";
+ rLen = 0;
+ rLoc = 1274;
+ rType = 0;
+ vrLen = 1605;
+ vrLoc = 0;
+ };
+ 6184DF191179680800AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 40";
+ rLen = 48;
+ rLoc = 997;
+ rType = 0;
+ vrLen = 485;
+ vrLoc = 748;
+ };
+ 6184DF1A1179680800AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 310";
+ rLen = 0;
+ rLoc = 13075;
+ rType = 0;
+ vrLen = 2676;
+ vrLoc = 11149;
+ };
+ 6184DF1B1179680800AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE60211751F4F00F22556 /* GravesViewController.m */;
+ name = "GravesViewController.m: 37";
+ rLen = 0;
+ rLoc = 1274;
+ rType = 0;
+ vrLen = 1605;
+ vrLoc = 0;
+ };
+ 6184DF1D1179688500AF6EFA /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 619C533D116E70050049FD84 /* FortsViewController.m */;
+ };
+ 6184DF1E117968A500AF6EFA /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ };
+ 6184DF231179691200AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 40";
+ rLen = 48;
+ rLoc = 997;
+ rType = 0;
+ vrLen = 485;
+ vrLoc = 748;
+ };
+ 6184DF261179691200AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 64";
+ rLen = 15;
+ rLoc = 1912;
+ rType = 0;
+ vrLen = 1619;
+ vrLoc = 246;
+ };
+ 6184DF271179691200AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 317";
+ rLen = 0;
+ rLoc = 13618;
+ rType = 0;
+ vrLen = 2427;
+ vrLoc = 12213;
+ };
+ 6184DF2A1179691200AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C533D116E70050049FD84 /* FortsViewController.m */;
+ name = "FortsViewController.m: 39";
+ rLen = 0;
+ rLoc = 1293;
+ rType = 0;
+ vrLen = 1774;
+ vrLoc = 490;
+ };
+ 6184DF2C1179691D00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 40";
+ rLen = 48;
+ rLoc = 997;
+ rType = 0;
+ vrLen = 485;
+ vrLoc = 748;
+ };
+ 6184DF2D1179691D00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 28";
+ rLen = 0;
+ rLoc = 729;
+ rType = 0;
+ vrLen = 1634;
+ vrLoc = 246;
+ };
+ 6184DF2E1179691D00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 317";
+ rLen = 0;
+ rLoc = 13618;
+ rType = 0;
+ vrLen = 2427;
+ vrLoc = 12213;
+ };
+ 6184DF2F1179691D00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C533D116E70050049FD84 /* FortsViewController.m */;
+ name = "FortsViewController.m: 39";
+ rLen = 0;
+ rLoc = 1293;
+ rType = 0;
+ vrLen = 1774;
+ vrLoc = 490;
+ };
+ 6184DF34117969EF00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 40";
+ rLen = 48;
+ rLoc = 997;
+ rType = 0;
+ vrLen = 485;
+ vrLoc = 748;
+ };
+ 6184DF35117969EF00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 305";
+ rLen = 0;
+ rLoc = 12614;
+ rType = 0;
+ vrLen = 2906;
+ vrLoc = 11347;
+ };
+ 6184DF36117969EF00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 28";
+ rLen = 0;
+ rLoc = 729;
+ rType = 0;
+ vrLen = 1634;
+ vrLoc = 246;
+ };
+ 6184DF37117969EF00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C533D116E70050049FD84 /* FortsViewController.m */;
+ name = "FortsViewController.m: 39";
+ rLen = 0;
+ rLoc = 1293;
+ rType = 0;
+ vrLen = 1774;
+ vrLoc = 490;
+ };
+ 6184DF3B117969FF00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 40";
+ rLen = 48;
+ rLoc = 997;
+ rType = 0;
+ vrLen = 485;
+ vrLoc = 748;
+ };
+ 6184DF3C117969FF00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 308";
+ rLen = 0;
+ rLoc = 12751;
+ rType = 0;
+ vrLen = 2906;
+ vrLoc = 11347;
+ };
+ 6184DF3D117969FF00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 28";
+ rLen = 0;
+ rLoc = 729;
+ rType = 0;
+ vrLen = 1634;
+ vrLoc = 246;
+ };
+ 6184DF3E117969FF00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C533D116E70050049FD84 /* FortsViewController.m */;
+ name = "FortsViewController.m: 39";
+ rLen = 0;
+ rLoc = 1293;
+ rType = 0;
+ vrLen = 1774;
+ vrLoc = 490;
+ };
+ 6184DF4011796A3200AF6EFA /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 618BE5921175126900F22556 /* LevelViewController.m */;
+ };
+ 6184DF4111796A6400AF6EFA /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 61A11AE31168DC9400359010 /* HogHatViewController.m */;
+ };
+ 6184DF4411796A9200AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 40";
+ rLen = 48;
+ rLoc = 997;
+ rType = 0;
+ vrLen = 485;
+ vrLoc = 748;
+ };
+ 6184DF4511796A9200AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C5231116E4E810049FD84 /* FlagsViewController.m */;
+ name = "FlagsViewController.m: 70";
+ rLen = 0;
+ rLoc = 1822;
+ rType = 0;
+ vrLen = 306;
+ vrLoc = 1641;
+ };
+ 6184DF4611796A9300AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE31168DC9400359010 /* HogHatViewController.m */;
+ name = "HogHatViewController.m: 102";
+ rLen = 0;
+ rLoc = 3376;
+ rType = 0;
+ vrLen = 357;
+ vrLoc = 3;
+ };
+ 6184DF4911796A9300AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE31168DC9400359010 /* HogHatViewController.m */;
+ name = "HogHatViewController.m: 11";
+ rLen = 0;
+ rLoc = 241;
+ rType = 0;
+ vrLen = 1778;
+ vrLoc = 3;
+ };
+ 6184DF4C11796A9300AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE5921175126900F22556 /* LevelViewController.m */;
+ name = "LevelViewController.m: 33";
+ rLen = 0;
+ rLoc = 954;
+ rType = 0;
+ vrLen = 1276;
+ vrLoc = 899;
+ };
+ 6184DF4D11796A9300AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 304";
+ rLen = 0;
+ rLoc = 12539;
+ rType = 0;
+ vrLen = 2871;
+ vrLoc = 11347;
+ };
+ 6184DF4E11796A9300AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 28";
+ rLen = 0;
+ rLoc = 729;
+ rType = 0;
+ vrLen = 1634;
+ vrLoc = 246;
+ };
+ 6184DF4F11796A9300AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C533D116E70050049FD84 /* FortsViewController.m */;
+ name = "FortsViewController.m: 39";
+ rLen = 0;
+ rLoc = 1293;
+ rType = 0;
+ vrLen = 1774;
+ vrLoc = 490;
+ };
+ 6184DF6F117972FE00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE31168DC9400359010 /* HogHatViewController.m */;
+ name = "HogHatViewController.m: 102";
+ rLen = 0;
+ rLoc = 3376;
+ rType = 0;
+ vrLen = 499;
+ vrLoc = 3;
+ };
+ 6184DF70117972FE00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11ADF1168DC6E00359010 /* SingleTeamViewController.h */;
+ name = "SingleTeamViewController.h: 29";
+ rLen = 0;
+ rLoc = 755;
+ rType = 0;
+ vrLen = 1248;
+ vrLoc = 0;
+ };
+ 6184DF71117972FE00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 294";
+ rLen = 0;
+ rLoc = 12096;
+ rType = 0;
+ vrLen = 1535;
+ vrLoc = 16752;
+ };
+ 6184DF72117972FE00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 328";
+ rLen = 0;
+ rLoc = 14791;
+ rType = 0;
+ vrLen = 2497;
+ vrLoc = 12178;
+ };
+ 6184DF73117972FE00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE5921175126900F22556 /* LevelViewController.m */;
+ name = "LevelViewController.m: 33";
+ rLen = 0;
+ rLoc = 954;
+ rType = 0;
+ vrLen = 1278;
+ vrLoc = 899;
+ };
+ 6184DF74117972FE00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 28";
+ rLen = 0;
+ rLoc = 729;
+ rType = 0;
+ vrLen = 1693;
+ vrLoc = 246;
+ };
+ 6184DF75117972FE00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C533D116E70050049FD84 /* FortsViewController.m */;
+ name = "FortsViewController.m: 39";
+ rLen = 0;
+ rLoc = 1293;
+ rType = 0;
+ vrLen = 1814;
+ vrLoc = 490;
+ };
+ 6184DF77117973AF00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE31168DC9400359010 /* HogHatViewController.m */;
+ name = "HogHatViewController.m: 102";
+ rLen = 0;
+ rLoc = 3376;
+ rType = 0;
+ vrLen = 499;
+ vrLoc = 3;
+ };
+ 6184DF78117973AF00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 328";
+ rLen = 0;
+ rLoc = 14791;
+ rType = 0;
+ vrLen = 2497;
+ vrLoc = 12178;
+ };
+ 6184DF79117973AF00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE5921175126900F22556 /* LevelViewController.m */;
+ name = "LevelViewController.m: 33";
+ rLen = 0;
+ rLoc = 954;
+ rType = 0;
+ vrLen = 1278;
+ vrLoc = 899;
+ };
+ 6184DF7A117973AF00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 28";
+ rLen = 0;
+ rLoc = 729;
+ rType = 0;
+ vrLen = 1693;
+ vrLoc = 246;
+ };
+ 6184DF7B117973AF00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C533D116E70050049FD84 /* FortsViewController.m */;
+ name = "FortsViewController.m: 39";
+ rLen = 0;
+ rLoc = 1293;
+ rType = 0;
+ vrLen = 1814;
+ vrLoc = 490;
+ };
+ 6184DF7C117973BF00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE31168DC9400359010 /* HogHatViewController.m */;
+ name = "HogHatViewController.m: 102";
+ rLen = 0;
+ rLoc = 3376;
+ rType = 0;
+ vrLen = 499;
+ vrLoc = 3;
+ };
+ 6184DF7D117973BF00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 328";
+ rLen = 0;
+ rLoc = 14791;
+ rType = 0;
+ vrLen = 2497;
+ vrLoc = 12178;
+ };
+ 6184DF7E117973BF00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE5921175126900F22556 /* LevelViewController.m */;
+ name = "LevelViewController.m: 33";
+ rLen = 0;
+ rLoc = 954;
+ rType = 0;
+ vrLen = 1278;
+ vrLoc = 899;
+ };
+ 6184DF7F117973BF00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 28";
+ rLen = 0;
+ rLoc = 729;
+ rType = 0;
+ vrLen = 1693;
+ vrLoc = 246;
+ };
+ 6184DF80117973BF00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C533D116E70050049FD84 /* FortsViewController.m */;
+ name = "FortsViewController.m: 39";
+ rLen = 0;
+ rLoc = 1293;
+ rType = 0;
+ vrLen = 1814;
+ vrLoc = 490;
+ };
+ 6184DF81117973CC00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE31168DC9400359010 /* HogHatViewController.m */;
+ name = "HogHatViewController.m: 102";
+ rLen = 0;
+ rLoc = 3376;
+ rType = 0;
+ vrLen = 499;
+ vrLoc = 3;
+ };
+ 6184DF82117973CC00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 328";
+ rLen = 0;
+ rLoc = 14791;
+ rType = 0;
+ vrLen = 2497;
+ vrLoc = 12178;
+ };
+ 6184DF83117973CC00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE5921175126900F22556 /* LevelViewController.m */;
+ name = "LevelViewController.m: 33";
+ rLen = 0;
+ rLoc = 954;
+ rType = 0;
+ vrLen = 1278;
+ vrLoc = 899;
+ };
+ 6184DF84117973CC00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 28";
+ rLen = 0;
+ rLoc = 729;
+ rType = 0;
+ vrLen = 1693;
+ vrLoc = 246;
+ };
+ 6184DF85117973CC00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C533D116E70050049FD84 /* FortsViewController.m */;
+ name = "FortsViewController.m: 39";
+ rLen = 0;
+ rLoc = 1293;
+ rType = 0;
+ vrLen = 1814;
+ vrLoc = 490;
+ };
+ 6184DF86117973D500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE31168DC9400359010 /* HogHatViewController.m */;
+ name = "HogHatViewController.m: 102";
+ rLen = 0;
+ rLoc = 3376;
+ rType = 0;
+ vrLen = 499;
+ vrLoc = 3;
+ };
+ 6184DF87117973D500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 328";
+ rLen = 0;
+ rLoc = 14791;
+ rType = 0;
+ vrLen = 2497;
+ vrLoc = 12178;
+ };
+ 6184DF88117973D500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE5921175126900F22556 /* LevelViewController.m */;
+ name = "LevelViewController.m: 33";
+ rLen = 0;
+ rLoc = 954;
+ rType = 0;
+ vrLen = 1278;
+ vrLoc = 899;
+ };
+ 6184DF89117973D500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 28";
+ rLen = 0;
+ rLoc = 729;
+ rType = 0;
+ vrLen = 1693;
+ vrLoc = 246;
+ };
+ 6184DF8A117973D500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C533D116E70050049FD84 /* FortsViewController.m */;
+ name = "FortsViewController.m: 39";
+ rLen = 0;
+ rLoc = 1293;
+ rType = 0;
+ vrLen = 1814;
+ vrLoc = 490;
+ };
+ 6184DF8D117973FB00AF6EFA /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 619C51BD116E40FC0049FD84 /* CommodityFunctions.h */;
+ };
+ 6184DF9A1179752300AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE31168DC9400359010 /* HogHatViewController.m */;
+ name = "HogHatViewController.m: 102";
+ rLen = 0;
+ rLoc = 3376;
+ rType = 0;
+ vrLen = 499;
+ vrLoc = 3;
+ };
+ 6184DF9B1179752300AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C51BE116E40FC0049FD84 /* CommodityFunctions.m */;
+ name = "CommodityFunctions.m: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 630;
+ vrLoc = 150;
+ };
+ 6184DF9C1179752300AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE5911175126900F22556 /* LevelViewController.h */;
+ name = "LevelViewController.h: 16";
+ rLen = 12;
+ rLoc = 312;
+ rType = 0;
+ vrLen = 586;
+ vrLoc = 0;
+ };
+ 6184DF9D1179752300AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE5921175126900F22556 /* LevelViewController.m */;
+ name = "LevelViewController.m: 43";
+ rLen = 0;
+ rLoc = 1436;
+ rType = 0;
+ vrLen = 1482;
+ vrLoc = 467;
+ };
+ 6184DF9E1179752300AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE5921175126900F22556 /* LevelViewController.m */;
+ name = "LevelViewController.m: 39";
+ rLen = 0;
+ rLoc = 1242;
+ rType = 0;
+ vrLen = 1481;
+ vrLoc = 470;
+ };
+ 6184DFA11179752300AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C51BD116E40FC0049FD84 /* CommodityFunctions.h */;
+ name = "CommodityFunctions.h: 23";
+ rLen = 0;
+ rLoc = 1007;
+ rType = 0;
+ vrLen = 1576;
+ vrLoc = 0;
+ };
+ 6184DFA21179752300AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 328";
+ rLen = 0;
+ rLoc = 14791;
+ rType = 0;
+ vrLen = 2470;
+ vrLoc = 12178;
+ };
+ 6184DFA31179752300AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 28";
+ rLen = 0;
+ rLoc = 729;
+ rType = 0;
+ vrLen = 1634;
+ vrLoc = 246;
+ };
+ 6184DFA41179752300AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C533D116E70050049FD84 /* FortsViewController.m */;
+ name = "FortsViewController.m: 39";
+ rLen = 0;
+ rLoc = 1293;
+ rType = 0;
+ vrLen = 1774;
+ vrLoc = 490;
+ };
+ 6184DFAA1179762800AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C51BE116E40FC0049FD84 /* CommodityFunctions.m */;
+ name = "CommodityFunctions.m: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 630;
+ vrLoc = 150;
+ };
+ 6184DFAB1179762800AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE5921175126900F22556 /* LevelViewController.m */;
+ name = "LevelViewController.m: 103";
+ rLen = 0;
+ rLoc = 3194;
+ rType = 0;
+ vrLen = 1705;
+ vrLoc = 2708;
+ };
+ 6184DFAC1179762800AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C51BD116E40FC0049FD84 /* CommodityFunctions.h */;
+ name = "CommodityFunctions.h: 23";
+ rLen = 0;
+ rLoc = 1007;
+ rType = 0;
+ vrLen = 1576;
+ vrLoc = 0;
+ };
+ 6184DFAD1179762800AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 328";
+ rLen = 0;
+ rLoc = 14791;
+ rType = 0;
+ vrLen = 2470;
+ vrLoc = 12178;
+ };
+ 6184DFAE1179762800AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 28";
+ rLen = 0;
+ rLoc = 729;
+ rType = 0;
+ vrLen = 1634;
+ vrLoc = 246;
+ };
+ 6184DFAF1179762800AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C533D116E70050049FD84 /* FortsViewController.m */;
+ name = "FortsViewController.m: 39";
+ rLen = 0;
+ rLoc = 1293;
+ rType = 0;
+ vrLen = 1774;
+ vrLoc = 490;
+ };
+ 6184DFB3117979AB00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C51BE116E40FC0049FD84 /* CommodityFunctions.m */;
+ name = "CommodityFunctions.m: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 630;
+ vrLoc = 150;
+ };
+ 6184DFB4117979AB00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 330";
+ rLen = 0;
+ rLoc = 14674;
+ rType = 0;
+ vrLen = 2706;
+ vrLoc = 12178;
+ };
+ 6184DFB5117979AB00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE5921175126900F22556 /* LevelViewController.m */;
+ name = "LevelViewController.m: 39";
+ rLen = 19;
+ rLoc = 1255;
+ rType = 0;
+ vrLen = 1499;
+ vrLoc = 323;
+ };
+ 6184DFBA117979EC00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C51BE116E40FC0049FD84 /* CommodityFunctions.m */;
+ name = "CommodityFunctions.m: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 630;
+ vrLoc = 150;
+ };
+ 6184DFBB117979EC00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 330";
+ rLen = 0;
+ rLoc = 14573;
+ rType = 0;
+ vrLen = 2724;
+ vrLoc = 12178;
+ };
+ 6184DFBC117979EC00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE5921175126900F22556 /* LevelViewController.m */;
+ name = "LevelViewController.m: 39";
+ rLen = 19;
+ rLoc = 1255;
+ rType = 0;
+ vrLen = 1499;
+ vrLoc = 323;
+ };
+ 6184DFBE117979FE00AF6EFA /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 619C51BE116E40FC0049FD84 /* CommodityFunctions.m */;
+ };
+ 6184DFC111797A1500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C51BE116E40FC0049FD84 /* CommodityFunctions.m */;
+ name = "CommodityFunctions.m: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 630;
+ vrLoc = 150;
+ };
+ 6184DFC211797A1500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 329";
+ rLen = 0;
+ rLoc = 14428;
+ rType = 0;
+ vrLen = 2826;
+ vrLoc = 12213;
+ };
+ 6184DFC511797A1500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C51BE116E40FC0049FD84 /* CommodityFunctions.m */;
+ name = "CommodityFunctions.m: 35";
+ rLen = 9;
+ rLoc = 1460;
+ rType = 0;
+ vrLen = 2042;
+ vrLoc = 0;
+ };
+ 6184DFC611797A1500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE5921175126900F22556 /* LevelViewController.m */;
+ name = "LevelViewController.m: 39";
+ rLen = 19;
+ rLoc = 1255;
+ rType = 0;
+ vrLen = 1499;
+ vrLoc = 323;
+ };
+ 6184DFCB11797A4900AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C51BE116E40FC0049FD84 /* CommodityFunctions.m */;
+ name = "CommodityFunctions.m: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 630;
+ vrLoc = 150;
+ };
+ 6184DFCC11797A4900AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 329";
+ rLen = 0;
+ rLoc = 14386;
+ rType = 0;
+ vrLen = 2914;
+ vrLoc = 12213;
+ };
+ 6184DFCD11797A4900AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C51BE116E40FC0049FD84 /* CommodityFunctions.m */;
+ name = "CommodityFunctions.m: 35";
+ rLen = 9;
+ rLoc = 1460;
+ rType = 0;
+ vrLen = 2042;
+ vrLoc = 0;
+ };
+ 6184DFCE11797A4900AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE5921175126900F22556 /* LevelViewController.m */;
+ name = "LevelViewController.m: 39";
+ rLen = 19;
+ rLoc = 1255;
+ rType = 0;
+ vrLen = 1499;
+ vrLoc = 323;
+ };
+ 6184DFD011797AAC00AF6EFA /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 61798888114AA4E600BA94A9 /* GameSetup.m */;
+ };
+ 6184DFD311797AE500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C51BE116E40FC0049FD84 /* CommodityFunctions.m */;
+ name = "CommodityFunctions.m: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 630;
+ vrLoc = 150;
+ };
+ 6184DFD411797AE500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 618BE5921175126900F22556 /* LevelViewController.m */;
+ name = "LevelViewController.m: 33";
+ rLen = 0;
+ rLoc = 899;
+ rType = 0;
+ vrLen = 1479;
+ vrLoc = 323;
+ };
+ 6184DFD511797AE500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 329";
+ rLen = 0;
+ rLoc = 14386;
+ rType = 0;
+ vrLen = 2914;
+ vrLoc = 12213;
+ };
+ 6184DFD811797AE500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798888114AA4E600BA94A9 /* GameSetup.m */;
+ name = "GameSetup.m: 76";
+ rLen = 0;
+ rLoc = 2276;
+ rType = 0;
+ vrLen = 2273;
+ vrLoc = 7465;
+ };
+ 6184DFD911797AE500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C51BE116E40FC0049FD84 /* CommodityFunctions.m */;
+ name = "CommodityFunctions.m: 35";
+ rLen = 9;
+ rLoc = 1460;
+ rType = 0;
+ vrLen = 2042;
+ vrLoc = 0;
+ };
+ 6184DFDF11797C6600AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C51BE116E40FC0049FD84 /* CommodityFunctions.m */;
+ name = "CommodityFunctions.m: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 671;
+ vrLoc = 150;
+ };
+ 6184DFE111797D2500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C51BE116E40FC0049FD84 /* CommodityFunctions.m */;
+ name = "CommodityFunctions.m: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 671;
+ vrLoc = 150;
+ };
+ 6184DFE211797D2500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 9";
+ rLen = 0;
+ rLoc = 145;
+ rType = 0;
+ vrLen = 371;
+ vrLoc = 0;
+ };
+ 6184DFE311797D2500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 9";
+ rLen = 0;
+ rLoc = 145;
+ rType = 0;
+ vrLen = 371;
+ vrLoc = 0;
+ };
+ 6184DFE611797D2500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 2";
+ rLen = 0;
+ rLoc = 19;
+ rType = 0;
+ vrLen = 1401;
+ vrLoc = 0;
+ };
+ 6184DFE711797D2500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA111795DBD00AF6EFA /* UIImageExtra.h */;
+ name = "UIImageExtra.h: 12";
+ rLen = 0;
+ rLoc = 206;
+ rType = 0;
+ vrLen = 406;
+ vrLoc = 0;
+ };
+ 6184DFE811797D2500AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA111795DBD00AF6EFA /* UIImageExtra.h */;
+ name = "UIImageExtra.h: 2";
+ rLen = 0;
+ rLoc = 19;
+ rType = 0;
+ vrLen = 406;
+ vrLoc = 0;
+ };
+ 6184DFE911797D3C00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 9";
+ rLen = 0;
+ rLoc = 145;
+ rType = 0;
+ vrLen = 371;
+ vrLoc = 0;
+ };
+ 6184DFEA11797D3C00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA111795DBD00AF6EFA /* UIImageExtra.h */;
+ name = "UIImageExtra.h: 2";
+ rLen = 0;
+ rLoc = 19;
+ rType = 0;
+ vrLen = 406;
+ vrLoc = 0;
+ };
+ 6184DFEB11797D3C00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 2";
+ rLen = 0;
+ rLoc = 19;
+ rType = 0;
+ vrLen = 1401;
+ vrLoc = 0;
+ };
+ 6184DFF211797D7C00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 9";
+ rLen = 0;
+ rLoc = 145;
+ rType = 0;
+ vrLen = 371;
+ vrLoc = 0;
+ };
+ 6184DFF31179809400AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 12";
+ rLen = 1;
+ rLoc = 197;
+ rType = 0;
+ vrLen = 635;
+ vrLoc = 45;
+ };
+ 6184DFF41179809400AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 395";
+ rLen = 0;
+ rLoc = 17412;
+ rType = 0;
+ vrLen = 1031;
+ vrLoc = 16309;
+ };
+ 6184DFF51179809400AF6EFA /* XCBuildMessageTextBookmark */ = {
+ isa = PBXTextBookmark;
+ comments = "UIImageScale.h: No such file or directory";
+ fRef = 619C533D116E70050049FD84 /* FortsViewController.m */;
+ fallbackIsa = XCBuildMessageTextBookmark;
+ rLen = 1;
+ rLoc = 10;
+ rType = 1;
+ };
+ 6184DFF61179809400AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C533D116E70050049FD84 /* FortsViewController.m */;
+ name = "FortsViewController.m: 28";
+ rLen = 0;
+ rLoc = 650;
+ rType = 0;
+ vrLen = 824;
+ vrLoc = 507;
+ };
+ 6184DFF71179809A00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 619C533D116E70050049FD84 /* FortsViewController.m */;
+ name = "FortsViewController.m: 28";
+ rLen = 0;
+ rLoc = 650;
+ rType = 0;
+ vrLen = 824;
+ vrLoc = 507;
+ };
+ 6184DFF81179809B00AF6EFA /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6184DEA211795DBD00AF6EFA /* UIImageExtra.m */;
+ name = "UIImageExtra.m: 9";
+ rLen = 0;
+ rLoc = 145;
+ rType = 0;
+ vrLen = 284;
+ vrLoc = 0;
+ };
6188FE60116F77AF004F3690 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 61A11ACE1168DB1B00359010 /* TeamSettingsViewController.m */;
@@ -1250,17 +3685,17 @@
};
618BE5911175126900F22556 /* LevelViewController.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {943, 627}}";
- sepNavSelRange = "{0, 0}";
- sepNavVisRange = "{0, 586}";
+ sepNavIntBoundsRect = "{{0, 0}, {1027, 669}}";
+ sepNavSelRange = "{26, 0}";
+ sepNavVisRange = "{0, 585}";
};
};
618BE5921175126900F22556 /* LevelViewController.m */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1048, 2587}}";
- sepNavSelRange = "{4973, 0}";
- sepNavVisRange = "{4553, 1451}";
- sepNavWindowFrame = "{{15, 395}, {1002, 778}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1027, 2652}}";
+ sepNavSelRange = "{26, 0}";
+ sepNavVisRange = "{0, 1596}";
+ sepNavWindowFrame = "{{61, 334}, {1086, 797}}";
};
};
618BE599117512E400F22556 /* PBXTextBookmark */ = {
@@ -1288,7 +3723,7 @@
fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
name = "SingleTeamViewController.m: 319";
rLen = 0;
- rLoc = 13287;
+ rLoc = 14059;
rType = 0;
vrLen = 1448;
vrLoc = 10577;
@@ -1305,17 +3740,17 @@
};
618BE60111751F4F00F22556 /* GravesViewController.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {474, 338}}";
- sepNavSelRange = "{0, 0}";
- sepNavVisRange = "{0, 595}";
+ sepNavIntBoundsRect = "{{0, 0}, {1027, 669}}";
+ sepNavSelRange = "{27, 0}";
+ sepNavVisRange = "{0, 601}";
};
};
618BE60211751F4F00F22556 /* GravesViewController.m */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1048, 2600}}";
- sepNavSelRange = "{5050, 0}";
- sepNavVisRange = "{4224, 1659}";
- sepNavWindowFrame = "{{38, 374}, {1002, 778}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1027, 2496}}";
+ sepNavSelRange = "{27, 0}";
+ sepNavVisRange = "{0, 1611}";
+ sepNavWindowFrame = "{{38, 355}, {1086, 797}}";
};
};
618BE61E117520B700F22556 /* PBXTextBookmark */ = {
@@ -1323,25 +3758,25 @@
fRef = 61A11AE31168DC9400359010 /* HogHatViewController.m */;
name = "HogHatViewController.m: 109";
rLen = 0;
- rLoc = 3614;
+ rLoc = 3376;
rType = 0;
vrLen = 525;
vrLoc = 0;
};
618BE6A1117527CD00F22556 /* VoicesViewController.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {943, 625}}";
- sepNavSelRange = "{383, 0}";
+ sepNavIntBoundsRect = "{{0, 0}, {943, 650}}";
+ sepNavSelRange = "{27, 0}";
sepNavVisRange = "{0, 578}";
sepNavWindowFrame = "{{638, 196}, {1002, 778}}";
};
};
618BE6A2117527CD00F22556 /* VoicesViewController.m */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {782, 2938}}";
- sepNavSelRange = "{624, 0}";
- sepNavVisRange = "{408, 646}";
- sepNavWindowFrame = "{{692, 148}, {1002, 778}}";
+ sepNavIntBoundsRect = "{{0, 0}, {943, 2938}}";
+ sepNavSelRange = "{27, 0}";
+ sepNavVisRange = "{0, 1224}";
+ sepNavWindowFrame = "{{638, 196}, {1002, 778}}";
};
};
618BE6C2117528B200F22556 /* PBXTextBookmark */ = {
@@ -1474,17 +3909,17 @@
};
619C51BD116E40FC0049FD84 /* CommodityFunctions.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {852, 403}}";
- sepNavSelRange = "{566, 0}";
- sepNavVisRange = "{150, 1367}";
- sepNavWindowFrame = "{{556, 127}, {1058, 792}}";
+ sepNavIntBoundsRect = "{{0, 0}, {999, 641}}";
+ sepNavSelRange = "{1007, 0}";
+ sepNavVisRange = "{0, 1576}";
+ sepNavWindowFrame = "{{593, 138}, {1058, 792}}";
};
};
619C51BE116E40FC0049FD84 /* CommodityFunctions.m */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {999, 793}}";
- sepNavSelRange = "{1959, 0}";
- sepNavVisRange = "{182, 2230}";
+ sepNavIntBoundsRect = "{{0, 0}, {873, 676}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{150, 671}";
sepNavWindowFrame = "{{84, 204}, {1058, 792}}";
};
};
@@ -1520,17 +3955,17 @@
};
619C5230116E4E800049FD84 /* FlagsViewController.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {472, 338}}";
+ sepNavIntBoundsRect = "{{0, 0}, {999, 664}}";
sepNavSelRange = "{0, 0}";
- sepNavVisRange = "{0, 520}";
+ sepNavVisRange = "{0, 582}";
sepNavWindowFrame = "{{86, 212}, {1058, 792}}";
};
};
619C5231116E4E810049FD84 /* FlagsViewController.m */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {754, 2483}}";
- sepNavSelRange = "{586, 0}";
- sepNavVisRange = "{320, 855}";
+ sepNavIntBoundsRect = "{{0, 0}, {754, 2548}}";
+ sepNavSelRange = "{1822, 0}";
+ sepNavVisRange = "{1641, 306}";
sepNavWindowFrame = "{{67, 264}, {1058, 792}}";
};
};
@@ -2314,17 +4749,17 @@
};
619C533C116E70050049FD84 /* FortsViewController.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {474, 338}}";
- sepNavSelRange = "{0, 0}";
- sepNavVisRange = "{0, 520}";
+ sepNavIntBoundsRect = "{{0, 0}, {999, 664}}";
+ sepNavSelRange = "{26, 0}";
+ sepNavVisRange = "{0, 582}";
sepNavWindowFrame = "{{628, 243}, {1058, 792}}";
};
};
619C533D116E70050049FD84 /* FortsViewController.m */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {999, 2626}}";
- sepNavSelRange = "{490, 0}";
- sepNavVisRange = "{0, 1887}";
+ sepNavIntBoundsRect = "{{0, 0}, {845, 2818}}";
+ sepNavSelRange = "{650, 0}";
+ sepNavVisRange = "{507, 824}";
sepNavWindowFrame = "{{84, 361}, {1058, 792}}";
};
};
@@ -2645,20 +5080,32 @@
isa = PBXBookmark;
fRef = 619C52B6116E56330049FD84 /* MineDead.png */;
};
- 619C58A9116E752A0049FD84 /* UIImageScale.h */ = {
+ 619C58A9116E752A0049FD84 /* UIImageExtra.h */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.h;
+ name = UIImageExtra.h;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/otherSrc/UIImageScale.h;
+ sourceTree = "<absolute>";
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {999, 641}}";
- sepNavSelRange = "{254, 0}";
- sepNavVisRange = "{0, 254}";
- sepNavWindowFrame = "{{199, 213}, {1058, 792}}";
+ sepNavIntBoundsRect = "{{0, 0}, {572, 234}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 336}";
+ sepNavWindowFrame = "{{577, 245}, {1058, 792}}";
};
};
- 619C58AA116E752A0049FD84 /* UIImageScale.m */ = {
+ 619C58AA116E752A0049FD84 /* UIImageExtra.m */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.objc;
+ name = UIImageExtra.m;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/otherSrc/UIImageScale.m;
+ sourceTree = "<absolute>";
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {999, 641}}";
- sepNavSelRange = "{171, 0}";
- sepNavVisRange = "{0, 744}";
- sepNavWindowFrame = "{{222, 192}, {1058, 792}}";
+ sepNavIntBoundsRect = "{{0, 0}, {474, 676}}";
+ sepNavSelRange = "{216, 0}";
+ sepNavVisRange = "{0, 371}";
+ sepNavWindowFrame = "{{577, 245}, {1058, 792}}";
};
};
619C58B2116E76080049FD84 /* PBXBookmark */ = {
@@ -2667,7 +5114,7 @@
};
619C58B3116E76080049FD84 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
- fRef = 619C58A9116E752A0049FD84 /* UIImageScale.h */;
+ fRef = 619C58A9116E752A0049FD84 /* UIImageExtra.h */;
name = "UIImageScale.h: 1";
rLen = 0;
rLoc = 0;
@@ -2700,9 +5147,9 @@
};
61A11AC01168D8B600359010 /* SplitViewRootController.m */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {999, 1222}}";
- sepNavSelRange = "{292, 0}";
- sepNavVisRange = "{0, 2044}";
+ sepNavIntBoundsRect = "{{0, 0}, {999, 1235}}";
+ sepNavSelRange = "{550, 0}";
+ sepNavVisRange = "{0, 2100}";
sepNavWindowFrame = "{{725, 326}, {1058, 792}}";
};
};
@@ -2715,9 +5162,9 @@
};
61A11AC81168DA9400359010 /* MasterViewController.m */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1048, 1885}}";
- sepNavSelRange = "{2574, 0}";
- sepNavVisRange = "{1981, 857}";
+ sepNavIntBoundsRect = "{{0, 0}, {1048, 1937}}";
+ sepNavSelRange = "{4792, 0}";
+ sepNavVisRange = "{4012, 1740}";
sepNavWindowFrame = "{{312, 236}, {1058, 792}}";
};
};
@@ -2731,9 +5178,9 @@
};
61A11ACE1168DB1B00359010 /* TeamSettingsViewController.m */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1048, 2314}}";
- sepNavSelRange = "{6169, 0}";
- sepNavVisRange = "{5116, 1526}";
+ sepNavIntBoundsRect = "{{0, 0}, {1048, 2340}}";
+ sepNavSelRange = "{3228, 0}";
+ sepNavVisRange = "{5366, 1416}";
sepNavWindowFrame = "{{529, 227}, {1058, 792}}";
};
};
@@ -2755,7 +5202,7 @@
};
61A11ADF1168DC6E00359010 /* SingleTeamViewController.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {999, 664}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1006, 668}}";
sepNavSelRange = "{755, 0}";
sepNavVisRange = "{0, 1248}";
sepNavWindowFrame = "{{38, 374}, {1002, 778}}";
@@ -2763,10 +5210,10 @@
};
61A11AE01168DC6E00359010 /* SingleTeamViewController.m */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {999, 5525}}";
- sepNavSelRange = "{14780, 0}";
- sepNavVisRange = "{14282, 2328}";
- sepNavWindowFrame = "{{474, 113}, {1058, 792}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1027, 5343}}";
+ sepNavSelRange = "{14386, 0}";
+ sepNavVisRange = "{12295, 2832}";
+ sepNavWindowFrame = "{{715, 337}, {1086, 797}}";
};
};
61A11AE21168DC9400359010 /* HogHatViewController.h */ = {
@@ -2779,9 +5226,9 @@
};
61A11AE31168DC9400359010 /* HogHatViewController.m */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {999, 2704}}";
- sepNavSelRange = "{152, 0}";
- sepNavVisRange = "{0, 1704}";
+ sepNavIntBoundsRect = "{{0, 0}, {1048, 2691}}";
+ sepNavSelRange = "{3376, 0}";
+ sepNavVisRange = "{0, 1849}";
sepNavWindowFrame = "{{807, 320}, {1058, 792}}";
};
};