Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/AppDelegate.h
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/AppDelegate.h	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/AppDelegate.h	(working copy)
@@ -0,0 +1,19 @@
+//
+//  AppDelegate.h
+//  MotionProPlus
+//
+//  Created by wangxy on 2017/7/7.
+//  Copyright © 2017年 wangxy. All rights reserved.
+//
+
+#import "InformationToSave.h"
+#import <UIKit/UIKit.h>
+
+@interface AppDelegate : UIResponder <UIApplicationDelegate>
+
+@property (strong, nonatomic) UIWindow *window;
+
+@property (strong, nonatomic) NSURL *launchedURL;
+
+@end
+
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/AppDelegate.m
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/AppDelegate.m	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/AppDelegate.m	(working copy)
@@ -0,0 +1,222 @@
+//
+//  AppDelegate.m
+//  MotionProPlus
+//
+//  Created by wangxy on 2017/7/7.
+//  Copyright © 2017年 wangxy. All rights reserved.
+//
+
+#import "Global.h"
+#import "ANLogger.h"
+#import "AAAManager.h"
+#import "AppManager.h"
+#import "ArrayVPNWrapper.h"
+#import "AutoLoginHandler.h"
+#import "ConfigurationManager.h"
+#import "AppDelegate.h"
+
+NSString * const koAuthSetCodeDelegate = @"net.arraynetworks.oauthsetcode";
+
+static void exceptionHandler(NSException *exception) {
+    NSArray *stack = [exception callStackReturnAddresses];
+    ANError(@"Uncatch exception:\nreson: %@\nstack: %@\n---%@", exception.reason, stack, [exception callStackSymbols]);
+}
+
+@interface AppDelegate () <ArrayVPNWrapperDelegate, AAAManagerDelegate>
+
+@end
+
+@implementation AppDelegate
+
+
+- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
+    // Override point for customization after application launch.
+    [NSThread sleepForTimeInterval:1.0];  // Delay for launch image.
+
+    NSSetUncaughtExceptionHandler(&exceptionHandler);
+    
+    [self setupNavigationBarAppearance];
+    
+    [self initialLog];
+    [self initialGlobalConfiguration];
+    
+    return YES;
+}
+
+
+- (void)applicationWillResignActive:(UIApplication *)application {
+    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
+    // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
+}
+
+
+- (void)applicationDidEnterBackground:(UIApplication *)application {
+    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
+    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
+    __block UIBackgroundTaskIdentifier background_task;
+    background_task = [application beginBackgroundTaskWithExpirationHandler:^ {
+        
+        //Clean up code. Tell the system that we are done.
+        [application endBackgroundTask: background_task];
+        background_task = UIBackgroundTaskInvalid;
+    }];
+}
+
+
+- (void)applicationWillEnterForeground:(UIApplication *)application {
+    // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
+}
+
+
+- (void)applicationDidBecomeActive:(UIApplication *)application {
+    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
+}
+
+
+- (void)applicationWillTerminate:(UIApplication *)application {
+    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
+    [[ArrayVPNWrapper sharedInstance] stopSSLVPN];
+    [[AAAManager sharedInstance] logoutL3VPNSession];
+}
+
+- (void)initialLog {
+    ANLogger *logger = [ANLogger sharedInstance];
+    [logger setupWithLogFile:kANLogFileName];
+    
+    AAAManager *manager = [AAAManager sharedInstance];  // Log for c sdk.
+    NSInteger logLevel = [logger currentLogLevel];
+    [manager setLogLevel:(int)logLevel];
+    [manager setLogCallback:clog_callback];
+}
+
+- (void)initialGlobalConfiguration {
+    [AppManager sharedInstance];
+    [ConfigurationManager sharedInstance];
+}
+
+- (void)setupNavigationBarAppearance {
+    UINavigationBar.appearance.barTintColor = MAIN_COLOR;
+    UINavigationBar.appearance.translucent = NO;
+    UINavigationBar.appearance.titleTextAttributes = @{NSForegroundColorAttributeName: [UIColor whiteColor]};
+    //适配iOS15
+    if (@available(iOS 15.0, *)) {
+        UINavigationBarAppearance *navigationBarAppearance = [UINavigationBarAppearance new];
+        navigationBarAppearance.backgroundColor = MAIN_COLOR;
+        navigationBarAppearance.titleTextAttributes = @{NSForegroundColorAttributeName: [UIColor whiteColor]};
+        UINavigationBar.appearance.scrollEdgeAppearance = navigationBarAppearance;
+        UINavigationBar.appearance.standardAppearance = navigationBarAppearance;
+    }
+}
+
+#pragma mark - URL Scheme
+/*motionproplus://<VS>/login?method=<method>&username=<name>&password=<pwd>&callback=<callback>*/
+/*motionproplus://<VS>/logout?callback=<callback>*/
+- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {
+    
+    NSLog(@"=============[%@]",url.scheme);
+    
+    ANInfo(@"start launch MotionProPlus with URL scheme,scheme=%@", url.scheme);
+    if ([url.scheme isEqualToString:APP_URL_SCHEME]) {
+        self.launchedURL = url;
+        
+        if ([self.launchedURL.absoluteString containsString:KEY_SCHEME_SETCODE]) {
+            NSRange subStrRange = [self.launchedURL.absoluteString rangeOfString:KEY_SCHEME_SETCODE];
+            NSString *code = [self.launchedURL.absoluteString substringFromIndex:(subStrRange.location + subStrRange.length)];
+            NSNotification * notice =[NSNotification notificationWithName:koAuthSetCodeDelegate object:nil userInfo:@{@"code":code}];
+            [[NSNotificationCenter defaultCenter]postNotification:notice];
+            
+            return YES;
+        }
+        
+        [ArrayVPNWrapper sharedInstance].delegate = self;
+        [AAAManager sharedInstance].delegate = self;
+        
+        ArrayVPNStatus tunnelStatus = [ArrayVPNManager sharedInstance].vpnStatus;
+        ANInfo(@"start launch MotionProPlus with URL scheme, vpn status= %zi", tunnelStatus);
+        
+        if ([self.launchedURL.absoluteString containsString:KEY_SCHEME_GETSTATUS]) {
+            NSRange subStrRange = [self.launchedURL.absoluteString rangeOfString:KEY_SCHEME_GETSTATUS];
+            NSString *callbackURL = [self.launchedURL.absoluteString substringFromIndex:(subStrRange.location + subStrRange.length)];
+            callbackURL = [NSString stringWithFormat:@"%@%zi", callbackURL, tunnelStatus];
+            ANInfo(@"start launch callback scheme url:%@", callbackURL);
+            dispatch_async(dispatch_get_main_queue(), ^{
+                [[UIApplication sharedApplication] openURL:[NSURL URLWithString:callbackURL]];
+            });
+            return YES;
+        }
+        
+        if (([self.launchedURL.path isEqualToString:@"/logout"]) && (tunnelStatus == ArrayVPNDisconnected || tunnelStatus == ArrayVPNInavlid)) {
+            NSString *callbackString = [AAAManager sharedInstance].account.autoLoginCallback;
+            ANInfo(@"MotionProPlus app logout launchScheme string=%@.", callbackString);
+            if (callbackString) {
+                [self launchScheme:callbackString withErrorCode:0 isStopVPN:YES];
+            }
+        }
+        
+        [[NSNotificationCenter defaultCenter] postNotificationName:kAutoLoginNotification object:nil];
+    }
+    
+    return YES;
+}
+
+- (void)launchScheme:(NSString *)scheme withErrorCode:(NSInteger)err isStopVPN:(BOOL)isStopVPN {
+    NSString *action;
+    if ([self.launchedURL.path isEqualToString:@"/login"]) {
+        if (isStopVPN) {
+            action = @"logout";
+        } else {
+            action = @"login";
+        }
+    } else if ([self.launchedURL.path isEqualToString:@"/logout"]) {
+        action = @"logout";
+    } else if ([self.launchedURL.path isEqualToString:@"/stopvpn"]) {
+        action = @"stopvpn";
+    } else {
+        return;
+    }
+    
+    NSString *urlString = nil;
+    /*
+     * NOTE:
+     *  If the callback string contains 'http' or 'https', it means the
+     *  MotionPro Plus will return to a certain URL with Safari browser.
+     *  In this case, we should not append anything after the URLScheme,
+     *  because the URLScheme may be a complete URL, it may fail if anything
+     *  is appended when visiting the URL.
+     */
+    if ([scheme containsString:@"http://"] || [scheme containsString:@"https://"]) {
+        urlString = [NSString stringWithFormat:@"%@", scheme];
+    } else {
+        NSString *deviceID = [AAAManager sharedInstance].deviceID;
+        if ([scheme containsString:@"://"]) {
+            urlString = [NSString stringWithFormat:@"%@%d", scheme, (int)err];
+        } else {
+            urlString = [NSString stringWithFormat:@"%@://action=%@?error=%d&deviceID=%@", scheme, action, (int)err, deviceID];
+        }
+    }
+    
+    ANInfo(@"launch call back url scheme:%@", urlString);
+
+    NSURL *url = [NSURL URLWithString:urlString];
+    
+    
+    
+    dispatch_async(dispatch_get_main_queue(), ^{
+        [[UIApplication sharedApplication] openURL:url options:@{} completionHandler:nil];
+    });
+}
+
+#pragma mark - ArrayVPNWrapperDelegate
+- (void)shouldLaunchCallbakScheme:(NSString *)scheme withErrorCode:(NSInteger)err isStopVPN:(BOOL)isStopVPN {
+    [self launchScheme:scheme withErrorCode:err isStopVPN:isStopVPN];
+}
+
+@end
+
+#pragma mark - For invalid ceritificate SSL in webview
+@implementation NSURLRequest(DataController)
++ (BOOL)allowsAnyHTTPSCertificateForHost:(NSString *)host {
+    return YES;
+}
+@end
+
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/20pt.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/20pt.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/20pt@2x-1.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/20pt@2x-1.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/20pt@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/20pt@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/20pt@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/20pt@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/29pt.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/29pt.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/29pt@2x-1.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/29pt@2x-1.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/29pt@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/29pt@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/29pt@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/29pt@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/40pt.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/40pt.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/40pt@2x-1.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/40pt@2x-1.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/40pt@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/40pt@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/40pt@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/40pt@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/60pt@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/60pt@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/60pt@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/60pt@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/76pt.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/76pt.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/76pt@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/76pt@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/83.5pt@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/83.5pt@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json	(working copy)
@@ -0,0 +1,116 @@
+{
+  "images" : [
+    {
+      "size" : "20x20",
+      "idiom" : "iphone",
+      "filename" : "20pt@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "size" : "20x20",
+      "idiom" : "iphone",
+      "filename" : "20pt@3x.png",
+      "scale" : "3x"
+    },
+    {
+      "size" : "29x29",
+      "idiom" : "iphone",
+      "filename" : "29pt@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "size" : "29x29",
+      "idiom" : "iphone",
+      "filename" : "29pt@3x.png",
+      "scale" : "3x"
+    },
+    {
+      "size" : "40x40",
+      "idiom" : "iphone",
+      "filename" : "40pt@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "size" : "40x40",
+      "idiom" : "iphone",
+      "filename" : "40pt@3x.png",
+      "scale" : "3x"
+    },
+    {
+      "size" : "60x60",
+      "idiom" : "iphone",
+      "filename" : "60pt@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "size" : "60x60",
+      "idiom" : "iphone",
+      "filename" : "60pt@3x.png",
+      "scale" : "3x"
+    },
+    {
+      "size" : "20x20",
+      "idiom" : "ipad",
+      "filename" : "20pt.png",
+      "scale" : "1x"
+    },
+    {
+      "size" : "20x20",
+      "idiom" : "ipad",
+      "filename" : "20pt@2x-1.png",
+      "scale" : "2x"
+    },
+    {
+      "size" : "29x29",
+      "idiom" : "ipad",
+      "filename" : "29pt.png",
+      "scale" : "1x"
+    },
+    {
+      "size" : "29x29",
+      "idiom" : "ipad",
+      "filename" : "29pt@2x-1.png",
+      "scale" : "2x"
+    },
+    {
+      "size" : "40x40",
+      "idiom" : "ipad",
+      "filename" : "40pt.png",
+      "scale" : "1x"
+    },
+    {
+      "size" : "40x40",
+      "idiom" : "ipad",
+      "filename" : "40pt@2x-1.png",
+      "scale" : "2x"
+    },
+    {
+      "size" : "76x76",
+      "idiom" : "ipad",
+      "filename" : "76pt.png",
+      "scale" : "1x"
+    },
+    {
+      "size" : "76x76",
+      "idiom" : "ipad",
+      "filename" : "76pt@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "size" : "83.5x83.5",
+      "idiom" : "ipad",
+      "filename" : "83.5pt@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "size" : "1024x1024",
+      "idiom" : "ios-marketing",
+      "filename" : "Logo1024.png",
+      "scale" : "1x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
\ No newline at end of file
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json.MotionPro
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json.MotionPro	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json.MotionPro	(working copy)
@@ -0,0 +1,116 @@
+{
+  "images" : [
+    {
+      "size" : "20x20",
+      "idiom" : "iphone",
+      "filename" : "MP_20pt@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "size" : "20x20",
+      "idiom" : "iphone",
+      "filename" : "MP_20pt@3x.png",
+      "scale" : "3x"
+    },
+    {
+      "size" : "29x29",
+      "idiom" : "iphone",
+      "filename" : "MP_29pt@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "size" : "29x29",
+      "idiom" : "iphone",
+      "filename" : "MP_29pt@3x.png",
+      "scale" : "3x"
+    },
+    {
+      "size" : "40x40",
+      "idiom" : "iphone",
+      "filename" : "MP_40pt@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "size" : "40x40",
+      "idiom" : "iphone",
+      "filename" : "MP_40pt@3x.png",
+      "scale" : "3x"
+    },
+    {
+      "size" : "60x60",
+      "idiom" : "iphone",
+      "filename" : "MP_60pt@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "size" : "60x60",
+      "idiom" : "iphone",
+      "filename" : "MP_60pt@3x.png",
+      "scale" : "3x"
+    },
+    {
+      "size" : "20x20",
+      "idiom" : "ipad",
+      "filename" : "MP_20pt.png",
+      "scale" : "1x"
+    },
+    {
+      "size" : "20x20",
+      "idiom" : "ipad",
+      "filename" : "MP_20pt@2x-1.png",
+      "scale" : "2x"
+    },
+    {
+      "size" : "29x29",
+      "idiom" : "ipad",
+      "filename" : "MP_29pt.png",
+      "scale" : "1x"
+    },
+    {
+      "size" : "29x29",
+      "idiom" : "ipad",
+      "filename" : "MP_29pt@2x-1.png",
+      "scale" : "2x"
+    },
+    {
+      "size" : "40x40",
+      "idiom" : "ipad",
+      "filename" : "MP_40pt.png",
+      "scale" : "1x"
+    },
+    {
+      "size" : "40x40",
+      "idiom" : "ipad",
+      "filename" : "MP_40pt@2x-1.png",
+      "scale" : "2x"
+    },
+    {
+      "size" : "76x76",
+      "idiom" : "ipad",
+      "filename" : "MP_76pt.png",
+      "scale" : "1x"
+    },
+    {
+      "size" : "76x76",
+      "idiom" : "ipad",
+      "filename" : "MP_76pt@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "size" : "83.5x83.5",
+      "idiom" : "ipad",
+      "filename" : "MP_83.5pt@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "size" : "1024x1024",
+      "idiom" : "ios-marketing",
+      "filename" : "MP_Logo1024.png",
+      "scale" : "1x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
\ No newline at end of file
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/Logo1024.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/Logo1024.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_20pt.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_20pt.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_20pt@2x-1.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_20pt@2x-1.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_20pt@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_20pt@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_20pt@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_20pt@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_29pt.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_29pt.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_29pt@2x-1.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_29pt@2x-1.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_29pt@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_29pt@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_29pt@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_29pt@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_40pt.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_40pt.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_40pt@2x-1.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_40pt@2x-1.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_40pt@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_40pt@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_40pt@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_40pt@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_60pt@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_60pt@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_60pt@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_60pt@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_76pt.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_76pt.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_76pt@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_76pt@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_83.5pt@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_83.5pt@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_Logo1024.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/AppIcon.appiconset/MP_Logo1024.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Certificate/CertificateDelete.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Certificate/CertificateDelete.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Certificate/CertificateDelete.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "delete.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "delete@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "delete@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Certificate/CertificateDelete.imageset/delete.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Certificate/CertificateDelete.imageset/delete.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Certificate/CertificateDelete.imageset/delete@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Certificate/CertificateDelete.imageset/delete@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Certificate/CertificateDelete.imageset/delete@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Certificate/CertificateDelete.imageset/delete@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Certificate/CertificateSelected.imageset/5B664A17891A6F671A58D2F7B99CF862.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Certificate/CertificateSelected.imageset/5B664A17891A6F671A58D2F7B99CF862.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Certificate/CertificateSelected.imageset/96299FDC10B63D72E9F3F3557810ADEF.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Certificate/CertificateSelected.imageset/96299FDC10B63D72E9F3F3557810ADEF.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Certificate/CertificateSelected.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Certificate/CertificateSelected.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Certificate/CertificateSelected.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "D0860FAF43B1549D97CD5E9D99ED3EA8.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "5B664A17891A6F671A58D2F7B99CF862.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "96299FDC10B63D72E9F3F3557810ADEF.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
\ No newline at end of file
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Certificate/CertificateSelected.imageset/D0860FAF43B1549D97CD5E9D99ED3EA8.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Certificate/CertificateSelected.imageset/D0860FAF43B1549D97CD5E9D99ED3EA8.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Certificate/CertificateUnselected.imageset/A86FBF83D3BC4806F5E093850C3C4506.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Certificate/CertificateUnselected.imageset/A86FBF83D3BC4806F5E093850C3C4506.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Certificate/CertificateUnselected.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Certificate/CertificateUnselected.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Certificate/CertificateUnselected.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "FB31C57E23E1C82FBB7F6C015FA7FA59.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "D3A748165562F4876B46E91CC8B6C4F3.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "A86FBF83D3BC4806F5E093850C3C4506.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
\ No newline at end of file
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Certificate/CertificateUnselected.imageset/D3A748165562F4876B46E91CC8B6C4F3.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Certificate/CertificateUnselected.imageset/D3A748165562F4876B46E91CC8B6C4F3.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Certificate/CertificateUnselected.imageset/FB31C57E23E1C82FBB7F6C015FA7FA59.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Certificate/CertificateUnselected.imageset/FB31C57E23E1C82FBB7F6C015FA7FA59.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Certificate/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Certificate/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Certificate/Contents.json	(working copy)
@@ -0,0 +1,6 @@
+{
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
\ No newline at end of file
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Contents.json	(working copy)
@@ -0,0 +1,6 @@
+{
+  "info" : {
+    "author" : "xcode",
+    "version" : 1
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/Contents.json	(working copy)
@@ -0,0 +1,6 @@
+{
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
\ No newline at end of file
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayAbout.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayAbout.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayAbout.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "info.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "info@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "info@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayAbout.imageset/info.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Gateway/GatewayAbout.imageset/info.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayAbout.imageset/info@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Gateway/GatewayAbout.imageset/info@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayAbout.imageset/info@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Gateway/GatewayAbout.imageset/info@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayAppIcon.imageset/76pt.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Gateway/GatewayAppIcon.imageset/76pt.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayAppIcon.imageset/76pt@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Gateway/GatewayAppIcon.imageset/76pt@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayAppIcon.imageset/B8DF7C1921B56A4E63C1A0698FBEEDFF.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Gateway/GatewayAppIcon.imageset/B8DF7C1921B56A4E63C1A0698FBEEDFF.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayAppIcon.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayAppIcon.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayAppIcon.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "76pt.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "76pt@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "B8DF7C1921B56A4E63C1A0698FBEEDFF.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
\ No newline at end of file
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayDelete.imageset/Close.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Gateway/GatewayDelete.imageset/Close.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayDelete.imageset/Close@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Gateway/GatewayDelete.imageset/Close@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayDelete.imageset/Close@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Gateway/GatewayDelete.imageset/Close@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayDelete.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayDelete.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayDelete.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "Close.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Close@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Close@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayEdit.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayEdit.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayEdit.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "Edit.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Edit@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Edit@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayEdit.imageset/Edit.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Gateway/GatewayEdit.imageset/Edit.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayEdit.imageset/Edit@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Gateway/GatewayEdit.imageset/Edit@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayEdit.imageset/Edit@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Gateway/GatewayEdit.imageset/Edit@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayItemAdd.imageset/Add.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Gateway/GatewayItemAdd.imageset/Add.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayItemAdd.imageset/Add@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Gateway/GatewayItemAdd.imageset/Add@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayItemAdd.imageset/Add@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Gateway/GatewayItemAdd.imageset/Add@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayItemAdd.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayItemAdd.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayItemAdd.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "Add.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Add@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Add@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayItemMore.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayItemMore.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayItemMore.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "More.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "More@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "More@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayItemMore.imageset/More.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Gateway/GatewayItemMore.imageset/More.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayItemMore.imageset/More@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Gateway/GatewayItemMore.imageset/More@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayItemMore.imageset/More@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Gateway/GatewayItemMore.imageset/More@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayLog.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayLog.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayLog.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "LogIcon.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "LogIcon@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "LogIcon@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayLog.imageset/LogIcon.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Gateway/GatewayLog.imageset/LogIcon.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayLog.imageset/LogIcon@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Gateway/GatewayLog.imageset/LogIcon@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayLog.imageset/LogIcon@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Gateway/GatewayLog.imageset/LogIcon@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayNew.imageset/Add.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Gateway/GatewayNew.imageset/Add.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayNew.imageset/Add@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Gateway/GatewayNew.imageset/Add@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayNew.imageset/Add@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Gateway/GatewayNew.imageset/Add@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayNew.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayNew.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Gateway/GatewayNew.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "Add.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Add@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Add@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/LaunchImage.imageset/1242×2208.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/LaunchImage.imageset/1242×2208.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/LaunchImage.imageset/750x1334.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/LaunchImage.imageset/750x1334.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/LaunchImage.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/LaunchImage.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/LaunchImage.imageset/Contents.json	(working copy)
@@ -0,0 +1,22 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "scale" : "1x"
+    },
+    {
+      "filename" : "750x1334.png",
+      "idiom" : "universal",
+      "scale" : "2x"
+    },
+    {
+      "filename" : "1242×2208.png",
+      "idiom" : "universal",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "author" : "xcode",
+    "version" : 1
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/1125x2436.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/1125x2436.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/1242×2208.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/1242×2208.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/1536x2008.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/1536x2008.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/1536x2048-1.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/1536x2048-1.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/1536x2048.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/1536x2048.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/320x480.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/320x480.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/640x1136-1.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/640x1136-1.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/640x1136.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/640x1136.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/640x960-1.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/640x960-1.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/640x960.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/640x960.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/750x1334.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/750x1334.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/768x1004.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/768x1004.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/768x1024-1.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/768x1024-1.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/768x1024.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/768x1024.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json	(working copy)
@@ -0,0 +1,172 @@
+{
+  "images" : [
+    {
+      "extent" : "full-screen",
+      "idiom" : "iphone",
+      "subtype" : "2436h",
+      "filename" : "1125x2436.png",
+      "minimum-system-version" : "11.0",
+      "orientation" : "portrait",
+      "scale" : "3x"
+    },
+    {
+      "orientation" : "landscape",
+      "idiom" : "iphone",
+      "extent" : "full-screen",
+      "minimum-system-version" : "11.0",
+      "subtype" : "2436h",
+      "scale" : "3x"
+    },
+    {
+      "extent" : "full-screen",
+      "idiom" : "iphone",
+      "subtype" : "736h",
+      "filename" : "1242×2208.png",
+      "minimum-system-version" : "8.0",
+      "orientation" : "portrait",
+      "scale" : "3x"
+    },
+    {
+      "orientation" : "landscape",
+      "idiom" : "iphone",
+      "extent" : "full-screen",
+      "minimum-system-version" : "8.0",
+      "subtype" : "736h",
+      "scale" : "3x"
+    },
+    {
+      "extent" : "full-screen",
+      "idiom" : "iphone",
+      "subtype" : "667h",
+      "filename" : "750x1334.png",
+      "minimum-system-version" : "8.0",
+      "orientation" : "portrait",
+      "scale" : "2x"
+    },
+    {
+      "orientation" : "portrait",
+      "idiom" : "iphone",
+      "filename" : "640x960-1.png",
+      "extent" : "full-screen",
+      "minimum-system-version" : "7.0",
+      "scale" : "2x"
+    },
+    {
+      "extent" : "full-screen",
+      "idiom" : "iphone",
+      "subtype" : "retina4",
+      "filename" : "640x1136-1.png",
+      "minimum-system-version" : "7.0",
+      "orientation" : "portrait",
+      "scale" : "2x"
+    },
+    {
+      "orientation" : "portrait",
+      "idiom" : "ipad",
+      "filename" : "768x1024.png",
+      "extent" : "full-screen",
+      "minimum-system-version" : "7.0",
+      "scale" : "1x"
+    },
+    {
+      "orientation" : "landscape",
+      "idiom" : "ipad",
+      "extent" : "full-screen",
+      "minimum-system-version" : "7.0",
+      "scale" : "1x"
+    },
+    {
+      "orientation" : "portrait",
+      "idiom" : "ipad",
+      "filename" : "1536x2048.png",
+      "extent" : "full-screen",
+      "minimum-system-version" : "7.0",
+      "scale" : "2x"
+    },
+    {
+      "orientation" : "landscape",
+      "idiom" : "ipad",
+      "extent" : "full-screen",
+      "minimum-system-version" : "7.0",
+      "scale" : "2x"
+    },
+    {
+      "orientation" : "portrait",
+      "idiom" : "iphone",
+      "filename" : "320x480.png",
+      "extent" : "full-screen",
+      "scale" : "1x"
+    },
+    {
+      "orientation" : "portrait",
+      "idiom" : "iphone",
+      "filename" : "640x960.png",
+      "extent" : "full-screen",
+      "scale" : "2x"
+    },
+    {
+      "orientation" : "portrait",
+      "idiom" : "iphone",
+      "filename" : "640x1136.png",
+      "extent" : "full-screen",
+      "subtype" : "retina4",
+      "scale" : "2x"
+    },
+    {
+      "orientation" : "portrait",
+      "idiom" : "ipad",
+      "filename" : "768x1004.png",
+      "extent" : "to-status-bar",
+      "scale" : "1x"
+    },
+    {
+      "orientation" : "portrait",
+      "idiom" : "ipad",
+      "filename" : "768x1024-1.png",
+      "extent" : "full-screen",
+      "scale" : "1x"
+    },
+    {
+      "orientation" : "landscape",
+      "idiom" : "ipad",
+      "extent" : "to-status-bar",
+      "scale" : "1x"
+    },
+    {
+      "orientation" : "landscape",
+      "idiom" : "ipad",
+      "extent" : "full-screen",
+      "scale" : "1x"
+    },
+    {
+      "orientation" : "portrait",
+      "idiom" : "ipad",
+      "filename" : "1536x2008.png",
+      "extent" : "to-status-bar",
+      "scale" : "2x"
+    },
+    {
+      "orientation" : "portrait",
+      "idiom" : "ipad",
+      "filename" : "1536x2048-1.png",
+      "extent" : "full-screen",
+      "scale" : "2x"
+    },
+    {
+      "orientation" : "landscape",
+      "idiom" : "ipad",
+      "extent" : "to-status-bar",
+      "scale" : "2x"
+    },
+    {
+      "orientation" : "landscape",
+      "idiom" : "ipad",
+      "extent" : "full-screen",
+      "scale" : "2x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
\ No newline at end of file
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/Contents.json	(working copy)
@@ -0,0 +1,6 @@
+{
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
\ No newline at end of file
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginDropArrow.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginDropArrow.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginDropArrow.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "SelectBtn.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "SelectBtn@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "SelectBtn@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginDropArrow.imageset/SelectBtn.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Login/LoginDropArrow.imageset/SelectBtn.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginDropArrow.imageset/SelectBtn@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Login/LoginDropArrow.imageset/SelectBtn@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginDropArrow.imageset/SelectBtn@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Login/LoginDropArrow.imageset/SelectBtn@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginExit.imageset/Close.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Login/LoginExit.imageset/Close.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginExit.imageset/Close@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Login/LoginExit.imageset/Close@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginExit.imageset/Close@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Login/LoginExit.imageset/Close@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginExit.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginExit.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginExit.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "Close.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Close@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Close@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginMethodName.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginMethodName.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginMethodName.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "LoginMethod.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "LoginMethod@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "LoginMethod@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginMethodName.imageset/LoginMethod.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Login/LoginMethodName.imageset/LoginMethod.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginMethodName.imageset/LoginMethod@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Login/LoginMethodName.imageset/LoginMethod@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginMethodName.imageset/LoginMethod@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Login/LoginMethodName.imageset/LoginMethod@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginPassword.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginPassword.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginPassword.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "Password.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Password@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Password@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginPassword.imageset/Password.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Login/LoginPassword.imageset/Password.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginPassword.imageset/Password@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Login/LoginPassword.imageset/Password@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginPassword.imageset/Password@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Login/LoginPassword.imageset/Password@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginSelected.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginSelected.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginSelected.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "Selected.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Selected@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Selected@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginSelected.imageset/Selected.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Login/LoginSelected.imageset/Selected.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginSelected.imageset/Selected@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Login/LoginSelected.imageset/Selected@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginSelected.imageset/Selected@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Login/LoginSelected.imageset/Selected@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginUsername.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginUsername.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginUsername.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "UserName.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "UserName@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "UserName@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginUsername.imageset/UserName.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Login/LoginUsername.imageset/UserName.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginUsername.imageset/UserName@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Login/LoginUsername.imageset/UserName@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Login/LoginUsername.imageset/UserName@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Login/LoginUsername.imageset/UserName@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/Contents.json	(working copy)
@@ -0,0 +1,6 @@
+{
+  "info" : {
+    "author" : "xcode",
+    "version" : 1
+  }
+}
\ No newline at end of file
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceAccessMode.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceAccessMode.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceAccessMode.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "link.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "link@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "link@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
\ No newline at end of file
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceAccessMode.imageset/link.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceAccessMode.imageset/link.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceAccessMode.imageset/link@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceAccessMode.imageset/link@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceAccessMode.imageset/link@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceAccessMode.imageset/link@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceAccessModeActive.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceAccessModeActive.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceAccessModeActive.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "LinkActived.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "LinkActived@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "LinkActived@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceAccessModeActive.imageset/LinkActived.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceAccessModeActive.imageset/LinkActived.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceAccessModeActive.imageset/LinkActived@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceAccessModeActive.imageset/LinkActived@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceAccessModeActive.imageset/LinkActived@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceAccessModeActive.imageset/LinkActived@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceConnectError.imageset/ConnectError.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceConnectError.imageset/ConnectError.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceConnectError.imageset/ConnectError@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceConnectError.imageset/ConnectError@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceConnectError.imageset/ConnectError@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceConnectError.imageset/ConnectError@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceConnectError.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceConnectError.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceConnectError.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "ConnectError.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "ConnectError@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "ConnectError@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceConnectSuccess.imageset/ConnectSuccess.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceConnectSuccess.imageset/ConnectSuccess.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceConnectSuccess.imageset/ConnectSuccess@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceConnectSuccess.imageset/ConnectSuccess@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceConnectSuccess.imageset/ConnectSuccess@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceConnectSuccess.imageset/ConnectSuccess@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceConnectSuccess.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceConnectSuccess.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceConnectSuccess.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "ConnectSuccess.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "ConnectSuccess@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "ConnectSuccess@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceDNSAdd.imageset/Add.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceDNSAdd.imageset/Add.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceDNSAdd.imageset/Add@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceDNSAdd.imageset/Add@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceDNSAdd.imageset/Add@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceDNSAdd.imageset/Add@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceDNSAdd.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceDNSAdd.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceDNSAdd.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "filename" : "Add.png",
+      "idiom" : "universal",
+      "scale" : "1x"
+    },
+    {
+      "filename" : "Add@2x.png",
+      "idiom" : "universal",
+      "scale" : "2x"
+    },
+    {
+      "filename" : "Add@3x.png",
+      "idiom" : "universal",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "author" : "xcode",
+    "version" : 1
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceDNSDelete.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceDNSDelete.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceDNSDelete.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "filename" : "Delete.png",
+      "idiom" : "universal",
+      "scale" : "1x"
+    },
+    {
+      "filename" : "Delete@2x.png",
+      "idiom" : "universal",
+      "scale" : "2x"
+    },
+    {
+      "filename" : "Delete@3x.png",
+      "idiom" : "universal",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "author" : "xcode",
+    "version" : 1
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceDNSDelete.imageset/Delete.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceDNSDelete.imageset/Delete.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceDNSDelete.imageset/Delete@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceDNSDelete.imageset/Delete@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceDNSDelete.imageset/Delete@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceDNSDelete.imageset/Delete@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceDesktop.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceDesktop.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceDesktop.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "Desktop.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Desktop@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Desktop@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceDesktop.imageset/Desktop.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceDesktop.imageset/Desktop.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceDesktop.imageset/Desktop@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceDesktop.imageset/Desktop@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceDesktop.imageset/Desktop@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceDesktop.imageset/Desktop@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceEmpty.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceEmpty.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceEmpty.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "Empty.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Empty@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Empty@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceEmpty.imageset/Empty.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceEmpty.imageset/Empty.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceEmpty.imageset/Empty@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceEmpty.imageset/Empty@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceEmpty.imageset/Empty@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceEmpty.imageset/Empty@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceExit.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceExit.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceExit.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "Exit.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Exit@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Exit@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceExit.imageset/Exit.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceExit.imageset/Exit.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceExit.imageset/Exit@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceExit.imageset/Exit@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceExit.imageset/Exit@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceExit.imageset/Exit@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceFolder.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceFolder.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceFolder.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "Folder.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Folder@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Folder@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceFolder.imageset/Folder.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceFolder.imageset/Folder.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceFolder.imageset/Folder@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceFolder.imageset/Folder@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceFolder.imageset/Folder@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceFolder.imageset/Folder@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceGatewaySelected.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceGatewaySelected.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceGatewaySelected.imageset/Contents.json	(working copy)
@@ -0,0 +1,26 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "GatewaySelected.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "GatewaySelected@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "GatewaySelected@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  },
+  "properties" : {
+    "template-rendering-intent" : "original"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceGatewaySelected.imageset/GatewaySelected.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceGatewaySelected.imageset/GatewaySelected.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceGatewaySelected.imageset/GatewaySelected@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceGatewaySelected.imageset/GatewaySelected@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceGatewaySelected.imageset/GatewaySelected@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceGatewaySelected.imageset/GatewaySelected@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceGatewayUnselected.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceGatewayUnselected.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceGatewayUnselected.imageset/Contents.json	(working copy)
@@ -0,0 +1,26 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "Gateway.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Gateway@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Gateway@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  },
+  "properties" : {
+    "template-rendering-intent" : "original"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceGatewayUnselected.imageset/Gateway.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceGatewayUnselected.imageset/Gateway.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceGatewayUnselected.imageset/Gateway@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceGatewayUnselected.imageset/Gateway@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceGatewayUnselected.imageset/Gateway@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceGatewayUnselected.imageset/Gateway@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceHSValuate1.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceHSValuate1.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceHSValuate1.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "HSValuate1(18x18).png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "HSValuate1(44x44).png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "HSValuate1(56x56).png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
\ No newline at end of file
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceHSValuate1.imageset/HSValuate1(18x18).png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceHSValuate1.imageset/HSValuate1(18x18).png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceHSValuate1.imageset/HSValuate1(44x44).png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceHSValuate1.imageset/HSValuate1(44x44).png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceHSValuate1.imageset/HSValuate1(56x56).png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceHSValuate1.imageset/HSValuate1(56x56).png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceHSValuate2.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceHSValuate2.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceHSValuate2.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "HSValuate2(18x18).png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "HSValuate2(44x44).png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "HSValuate2(56x56).png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
\ No newline at end of file
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceHSValuate2.imageset/HSValuate2(18x18).png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceHSValuate2.imageset/HSValuate2(18x18).png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceHSValuate2.imageset/HSValuate2(44x44).png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceHSValuate2.imageset/HSValuate2(44x44).png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceHSValuate2.imageset/HSValuate2(56x56).png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceHSValuate2.imageset/HSValuate2(56x56).png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceHTTP.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceHTTP.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceHTTP.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "http(18x18).png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "http(44x44).png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "http(56x56).png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
\ No newline at end of file
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceHTTP.imageset/http(18x18).png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceHTTP.imageset/http(18x18).png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceHTTP.imageset/http(44x44).png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceHTTP.imageset/http(44x44).png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceHTTP.imageset/http(56x56).png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceHTTP.imageset/http(56x56).png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceNativeApp.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceNativeApp.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceNativeApp.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "NativeApp.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "NativeApp@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "NativeApp@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceNativeApp.imageset/NativeApp.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceNativeApp.imageset/NativeApp.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceNativeApp.imageset/NativeApp@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceNativeApp.imageset/NativeApp@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceNativeApp.imageset/NativeApp@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceNativeApp.imageset/NativeApp@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceSettingsSelected.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceSettingsSelected.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceSettingsSelected.imageset/Contents.json	(working copy)
@@ -0,0 +1,26 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "SettingSelected.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "SettingSelected@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "SettingSelected@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  },
+  "properties" : {
+    "template-rendering-intent" : "original"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceSettingsSelected.imageset/SettingSelected.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceSettingsSelected.imageset/SettingSelected.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceSettingsSelected.imageset/SettingSelected@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceSettingsSelected.imageset/SettingSelected@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceSettingsSelected.imageset/SettingSelected@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceSettingsSelected.imageset/SettingSelected@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceSettingsUnselected.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceSettingsUnselected.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceSettingsUnselected.imageset/Contents.json	(working copy)
@@ -0,0 +1,26 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "Setting.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Setting@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Setting@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  },
+  "properties" : {
+    "template-rendering-intent" : "original"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceSettingsUnselected.imageset/Setting.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceSettingsUnselected.imageset/Setting.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceSettingsUnselected.imageset/Setting@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceSettingsUnselected.imageset/Setting@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceSettingsUnselected.imageset/Setting@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceSettingsUnselected.imageset/Setting@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceStatusSelected.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceStatusSelected.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceStatusSelected.imageset/Contents.json	(working copy)
@@ -0,0 +1,26 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "StatusSelected.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "StatusSelected@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "StatusSelected@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  },
+  "properties" : {
+    "template-rendering-intent" : "original"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceStatusSelected.imageset/StatusSelected.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceStatusSelected.imageset/StatusSelected.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceStatusSelected.imageset/StatusSelected@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceStatusSelected.imageset/StatusSelected@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceStatusSelected.imageset/StatusSelected@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceStatusSelected.imageset/StatusSelected@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceStatusUnselected.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceStatusUnselected.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceStatusUnselected.imageset/Contents.json	(working copy)
@@ -0,0 +1,26 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "Status.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Status@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Status@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  },
+  "properties" : {
+    "template-rendering-intent" : "original"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceStatusUnselected.imageset/Status.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceStatusUnselected.imageset/Status.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceStatusUnselected.imageset/Status@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceStatusUnselected.imageset/Status@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceStatusUnselected.imageset/Status@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceStatusUnselected.imageset/Status@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceWebApp.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceWebApp.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceWebApp.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "WebApp.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "WebApp@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "WebApp@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceWebApp.imageset/WebApp.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceWebApp.imageset/WebApp.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceWebApp.imageset/WebApp@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceWebApp.imageset/WebApp@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/ResourceWebApp.imageset/WebApp@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/ResourceWebApp.imageset/WebApp@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/Resourcefundclient1.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/Resourcefundclient1.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/Resourcefundclient1.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "fundclient1(18x18).png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "fundclient1(44x44).png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "fundclient1(56x56).png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
\ No newline at end of file
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/Resourcefundclient1.imageset/fundclient1(18x18).png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/Resourcefundclient1.imageset/fundclient1(18x18).png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/Resourcefundclient1.imageset/fundclient1(44x44).png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/Resourcefundclient1.imageset/fundclient1(44x44).png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/Resourcefundclient1.imageset/fundclient1(56x56).png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/Resourcefundclient1.imageset/fundclient1(56x56).png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/Resourcefundclient2.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/Resourcefundclient2.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/Resourcefundclient2.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "fundclient2(18x18).png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "fundclient2(44x44).png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "fundclient2(56x56).png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
\ No newline at end of file
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/Resourcefundclient2.imageset/fundclient2(18x18).png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/Resourcefundclient2.imageset/fundclient2(18x18).png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/Resourcefundclient2.imageset/fundclient2(44x44).png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/Resourcefundclient2.imageset/fundclient2(44x44).png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/Resource/Resourcefundclient2.imageset/fundclient2(56x56).png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/Resource/Resourcefundclient2.imageset/fundclient2(56x56).png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/SecBrowser/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/SecBrowser/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/SecBrowser/Contents.json	(working copy)
@@ -0,0 +1,6 @@
+{
+  "info" : {
+    "author" : "xcode",
+    "version" : 1
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/SecBrowser/SecBrowserAngleDown.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/SecBrowser/SecBrowserAngleDown.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/SecBrowser/SecBrowserAngleDown.imageset/Contents.json	(working copy)
@@ -0,0 +1,22 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "angle-down.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "angle-down@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
\ No newline at end of file
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/SecBrowser/SecBrowserAngleDown.imageset/angle-down.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/SecBrowser/SecBrowserAngleDown.imageset/angle-down.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/SecBrowser/SecBrowserAngleDown.imageset/angle-down@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/SecBrowser/SecBrowserAngleDown.imageset/angle-down@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/SecBrowser/SecBrowserExit.imageset/05FDE1A1ECF6159671907A2A1C4FB093.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/SecBrowser/SecBrowserExit.imageset/05FDE1A1ECF6159671907A2A1C4FB093.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/SecBrowser/SecBrowserExit.imageset/9B0E0C0F0456DB868EB20F2A63E54AA2.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/SecBrowser/SecBrowserExit.imageset/9B0E0C0F0456DB868EB20F2A63E54AA2.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/SecBrowser/SecBrowserExit.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/SecBrowser/SecBrowserExit.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/SecBrowser/SecBrowserExit.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "05FDE1A1ECF6159671907A2A1C4FB093.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "9B0E0C0F0456DB868EB20F2A63E54AA2.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "E96C9DC6BFD4EE31225ECF159CB3EEC2.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
\ No newline at end of file
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/SecBrowser/SecBrowserExit.imageset/E96C9DC6BFD4EE31225ECF159CB3EEC2.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/SecBrowser/SecBrowserExit.imageset/E96C9DC6BFD4EE31225ECF159CB3EEC2.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/SecBrowser/SecBrowserReload.imageset/Contents.json
===================================================================
--- /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/SecBrowser/SecBrowserReload.imageset/Contents.json	(nonexistent)
+++ /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/SecBrowser/SecBrowserReload.imageset/Contents.json	(working copy)
@@ -0,0 +1,23 @@
+{
+  "images" : [
+    {
+      "idiom" : "universal",
+      "filename" : "Reload.png",
+      "scale" : "1x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Reload@2x.png",
+      "scale" : "2x"
+    },
+    {
+      "idiom" : "universal",
+      "filename" : "Reload@3x.png",
+      "scale" : "3x"
+    }
+  ],
+  "info" : {
+    "version" : 1,
+    "author" : "xcode"
+  }
+}
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/SecBrowser/SecBrowserReload.imageset/Reload.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/SecBrowser/SecBrowserReload.imageset/Reload.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/SecBrowser/SecBrowserReload.imageset/Reload@2x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/SecBrowser/SecBrowserReload.imageset/Reload@2x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets/SecBrowser/SecBrowserReload.imageset/Reload@3x.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets/SecBrowser/SecBrowserReload.imageset/Reload@3x.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets_iqiyi.zip
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets_iqiyi.zip
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: /branches/ag_client_motionProGlobal_ios_new/MotionPro-iOS/Assets.xcassets_zrt.zip
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: MotionPro-iOS/Assets.xcassets_zrt.zip
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
