status_bar 0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +15 -0
 - data/.gitignore +14 -0
 - data/Gemfile +10 -0
 - data/Gemfile.lock +51 -0
 - data/Guardfile +12 -0
 - data/README.md +66 -0
 - data/Rakefile +28 -0
 - data/app/app_delegate.rb +10 -0
 - data/app/controllers/demo_controller.rb +51 -0
 - data/app/styles/demo_style.rb +88 -0
 - data/lib/project/base.rb +101 -0
 - data/lib/project/helper.rb +60 -0
 - data/lib/project/style.rb +87 -0
 - data/lib/project/view.rb +38 -0
 - data/lib/resources/error.png +0 -0
 - data/lib/resources/error@2x.png +0 -0
 - data/lib/resources/success.png +0 -0
 - data/lib/resources/success@2x.png +0 -0
 - data/lib/status_bar.rb +37 -0
 - data/resources/Default-568h@2x.png +0 -0
 - data/resources/error.png +0 -0
 - data/resources/error@2x.png +0 -0
 - data/resources/success.png +0 -0
 - data/resources/success@2x.png +0 -0
 - data/screenshots/activity.png +0 -0
 - data/screenshots/error.png +0 -0
 - data/screenshots/notice.png +0 -0
 - data/screenshots/success.png +0 -0
 - data/spec/app_delegate_spec.rb +15 -0
 - data/spec/demo_controller_spec.rb +52 -0
 - data/status_bar.gemspec +24 -0
 - data/vendor/Podfile.lock +10 -0
 - data/vendor/Pods/.build/libPods-Reachability.a +0 -0
 - data/vendor/Pods/.build/libPods.a +0 -0
 - data/vendor/Pods/BuildHeaders/Reachability/Reachability.h +109 -0
 - data/vendor/Pods/Headers/Reachability/Reachability.h +109 -0
 - data/vendor/Pods/Headers/____Pods-Reachability-prefix.h +5 -0
 - data/vendor/Pods/Headers/____Pods-environment.h +14 -0
 - data/vendor/Pods/Manifest.lock +10 -0
 - data/vendor/Pods/Pods-Reachability-Private.xcconfig +5 -0
 - data/vendor/Pods/Pods-Reachability-dummy.m +5 -0
 - data/vendor/Pods/Pods-Reachability-prefix.pch +5 -0
 - data/vendor/Pods/Pods-Reachability.xcconfig +1 -0
 - data/vendor/Pods/Pods-acknowledgements.markdown +17 -0
 - data/vendor/Pods/Pods-acknowledgements.plist +47 -0
 - data/vendor/Pods/Pods-dummy.m +5 -0
 - data/vendor/Pods/Pods-environment.h +14 -0
 - data/vendor/Pods/Pods-resources.sh +55 -0
 - data/vendor/Pods/Pods.bridgesupport +100 -0
 - data/vendor/Pods/Pods.xcconfig +4 -0
 - data/vendor/Pods/Pods.xcodeproj/project.pbxproj +960 -0
 - data/vendor/Pods/Pods.xcodeproj/xcuserdata/holgersindbaek.xcuserdatad/xcschemes/Pods-Reachability.xcscheme +59 -0
 - data/vendor/Pods/Pods.xcodeproj/xcuserdata/holgersindbaek.xcuserdatad/xcschemes/Pods.xcscheme +59 -0
 - data/vendor/Pods/Pods.xcodeproj/xcuserdata/holgersindbaek.xcuserdatad/xcschemes/xcschememanagement.plist +21 -0
 - data/vendor/Pods/Reachability/LICENCE.txt +24 -0
 - data/vendor/Pods/Reachability/README.md +65 -0
 - data/vendor/Pods/Reachability/Reachability.h +109 -0
 - data/vendor/Pods/Reachability/Reachability.m +527 -0
 - data/vendor/Pods/build-iPhoneSimulator/libPods.a +0 -0
 - metadata +175 -0
 
| 
         @@ -0,0 +1,109 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            /*
         
     | 
| 
      
 2 
     | 
    
         
            +
             Copyright (c) 2011, Tony Million.
         
     | 
| 
      
 3 
     | 
    
         
            +
             All rights reserved.
         
     | 
| 
      
 4 
     | 
    
         
            +
             
         
     | 
| 
      
 5 
     | 
    
         
            +
             Redistribution and use in source and binary forms, with or without
         
     | 
| 
      
 6 
     | 
    
         
            +
             modification, are permitted provided that the following conditions are met:
         
     | 
| 
      
 7 
     | 
    
         
            +
             
         
     | 
| 
      
 8 
     | 
    
         
            +
             1. Redistributions of source code must retain the above copyright notice, this
         
     | 
| 
      
 9 
     | 
    
         
            +
             list of conditions and the following disclaimer.
         
     | 
| 
      
 10 
     | 
    
         
            +
             
         
     | 
| 
      
 11 
     | 
    
         
            +
             2. Redistributions in binary form must reproduce the above copyright notice,
         
     | 
| 
      
 12 
     | 
    
         
            +
             this list of conditions and the following disclaimer in the documentation
         
     | 
| 
      
 13 
     | 
    
         
            +
             and/or other materials provided with the distribution.
         
     | 
| 
      
 14 
     | 
    
         
            +
             
         
     | 
| 
      
 15 
     | 
    
         
            +
             THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
         
     | 
| 
      
 16 
     | 
    
         
            +
             AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
         
     | 
| 
      
 17 
     | 
    
         
            +
             IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
         
     | 
| 
      
 18 
     | 
    
         
            +
             ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
         
     | 
| 
      
 19 
     | 
    
         
            +
             LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
         
     | 
| 
      
 20 
     | 
    
         
            +
             CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
         
     | 
| 
      
 21 
     | 
    
         
            +
             SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
         
     | 
| 
      
 22 
     | 
    
         
            +
             INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
         
     | 
| 
      
 23 
     | 
    
         
            +
             CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
         
     | 
| 
      
 24 
     | 
    
         
            +
             ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
         
     | 
| 
      
 25 
     | 
    
         
            +
             POSSIBILITY OF SUCH DAMAGE. 
         
     | 
| 
      
 26 
     | 
    
         
            +
             */
         
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
            #import <Foundation/Foundation.h>
         
     | 
| 
      
 29 
     | 
    
         
            +
            #import <SystemConfiguration/SystemConfiguration.h>
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
            #import <sys/socket.h>
         
     | 
| 
      
 32 
     | 
    
         
            +
            #import <netinet/in.h>
         
     | 
| 
      
 33 
     | 
    
         
            +
            #import <netinet6/in6.h>
         
     | 
| 
      
 34 
     | 
    
         
            +
            #import <arpa/inet.h>
         
     | 
| 
      
 35 
     | 
    
         
            +
            #import <ifaddrs.h>
         
     | 
| 
      
 36 
     | 
    
         
            +
            #import <netdb.h>
         
     | 
| 
      
 37 
     | 
    
         
            +
             
     | 
| 
      
 38 
     | 
    
         
            +
            /**
         
     | 
| 
      
 39 
     | 
    
         
            +
             * Does ARC support GCD objects?
         
     | 
| 
      
 40 
     | 
    
         
            +
             * It does if the minimum deployment target is iOS 6+ or Mac OS X 8+
         
     | 
| 
      
 41 
     | 
    
         
            +
             * 
         
     | 
| 
      
 42 
     | 
    
         
            +
             * @see http://opensource.apple.com/source/libdispatch/libdispatch-228.18/os/object.h
         
     | 
| 
      
 43 
     | 
    
         
            +
             **/
         
     | 
| 
      
 44 
     | 
    
         
            +
            #if OS_OBJECT_USE_OBJC
         
     | 
| 
      
 45 
     | 
    
         
            +
            #define NEEDS_DISPATCH_RETAIN_RELEASE 0
         
     | 
| 
      
 46 
     | 
    
         
            +
            #else
         
     | 
| 
      
 47 
     | 
    
         
            +
            #define NEEDS_DISPATCH_RETAIN_RELEASE 1
         
     | 
| 
      
 48 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 49 
     | 
    
         
            +
             
     | 
| 
      
 50 
     | 
    
         
            +
            /** 
         
     | 
| 
      
 51 
     | 
    
         
            +
             * Create NS_ENUM macro if it does not exist on the targeted version of iOS or OS X.
         
     | 
| 
      
 52 
     | 
    
         
            +
             *
         
     | 
| 
      
 53 
     | 
    
         
            +
             * @see http://nshipster.com/ns_enum-ns_options/
         
     | 
| 
      
 54 
     | 
    
         
            +
             **/
         
     | 
| 
      
 55 
     | 
    
         
            +
            #ifndef NS_ENUM
         
     | 
| 
      
 56 
     | 
    
         
            +
            #define NS_ENUM(_type, _name) enum _name : _type _name; enum _name : _type
         
     | 
| 
      
 57 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 58 
     | 
    
         
            +
             
     | 
| 
      
 59 
     | 
    
         
            +
            extern NSString *const kReachabilityChangedNotification;
         
     | 
| 
      
 60 
     | 
    
         
            +
             
     | 
| 
      
 61 
     | 
    
         
            +
            typedef NS_ENUM(NSInteger, NetworkStatus) {
         
     | 
| 
      
 62 
     | 
    
         
            +
                // Apple NetworkStatus Compatible Names.
         
     | 
| 
      
 63 
     | 
    
         
            +
                NotReachable = 0,
         
     | 
| 
      
 64 
     | 
    
         
            +
                ReachableViaWiFi = 2,
         
     | 
| 
      
 65 
     | 
    
         
            +
                ReachableViaWWAN = 1
         
     | 
| 
      
 66 
     | 
    
         
            +
            };
         
     | 
| 
      
 67 
     | 
    
         
            +
             
     | 
| 
      
 68 
     | 
    
         
            +
            @class Reachability;
         
     | 
| 
      
 69 
     | 
    
         
            +
             
     | 
| 
      
 70 
     | 
    
         
            +
            typedef void (^NetworkReachable)(Reachability * reachability);
         
     | 
| 
      
 71 
     | 
    
         
            +
            typedef void (^NetworkUnreachable)(Reachability * reachability);
         
     | 
| 
      
 72 
     | 
    
         
            +
             
     | 
| 
      
 73 
     | 
    
         
            +
            @interface Reachability : NSObject
         
     | 
| 
      
 74 
     | 
    
         
            +
             
     | 
| 
      
 75 
     | 
    
         
            +
            @property (nonatomic, copy) NetworkReachable    reachableBlock;
         
     | 
| 
      
 76 
     | 
    
         
            +
            @property (nonatomic, copy) NetworkUnreachable  unreachableBlock;
         
     | 
| 
      
 77 
     | 
    
         
            +
             
     | 
| 
      
 78 
     | 
    
         
            +
             
     | 
| 
      
 79 
     | 
    
         
            +
            @property (nonatomic, assign) BOOL reachableOnWWAN;
         
     | 
| 
      
 80 
     | 
    
         
            +
             
     | 
| 
      
 81 
     | 
    
         
            +
            +(Reachability*)reachabilityWithHostname:(NSString*)hostname;
         
     | 
| 
      
 82 
     | 
    
         
            +
            +(Reachability*)reachabilityForInternetConnection;
         
     | 
| 
      
 83 
     | 
    
         
            +
            +(Reachability*)reachabilityWithAddress:(const struct sockaddr_in*)hostAddress;
         
     | 
| 
      
 84 
     | 
    
         
            +
            +(Reachability*)reachabilityForLocalWiFi;
         
     | 
| 
      
 85 
     | 
    
         
            +
             
     | 
| 
      
 86 
     | 
    
         
            +
            -(Reachability *)initWithReachabilityRef:(SCNetworkReachabilityRef)ref;
         
     | 
| 
      
 87 
     | 
    
         
            +
             
     | 
| 
      
 88 
     | 
    
         
            +
            -(BOOL)startNotifier;
         
     | 
| 
      
 89 
     | 
    
         
            +
            -(void)stopNotifier;
         
     | 
| 
      
 90 
     | 
    
         
            +
             
     | 
| 
      
 91 
     | 
    
         
            +
            -(BOOL)isReachable;
         
     | 
| 
      
 92 
     | 
    
         
            +
            -(BOOL)isReachableViaWWAN;
         
     | 
| 
      
 93 
     | 
    
         
            +
            -(BOOL)isReachableViaWiFi;
         
     | 
| 
      
 94 
     | 
    
         
            +
             
     | 
| 
      
 95 
     | 
    
         
            +
            // WWAN may be available, but not active until a connection has been established.
         
     | 
| 
      
 96 
     | 
    
         
            +
            // WiFi may require a connection for VPN on Demand.
         
     | 
| 
      
 97 
     | 
    
         
            +
            -(BOOL)isConnectionRequired; // Identical DDG variant.
         
     | 
| 
      
 98 
     | 
    
         
            +
            -(BOOL)connectionRequired; // Apple's routine.
         
     | 
| 
      
 99 
     | 
    
         
            +
            // Dynamic, on demand connection?
         
     | 
| 
      
 100 
     | 
    
         
            +
            -(BOOL)isConnectionOnDemand;
         
     | 
| 
      
 101 
     | 
    
         
            +
            // Is user intervention required?
         
     | 
| 
      
 102 
     | 
    
         
            +
            -(BOOL)isInterventionRequired;
         
     | 
| 
      
 103 
     | 
    
         
            +
             
     | 
| 
      
 104 
     | 
    
         
            +
            -(NetworkStatus)currentReachabilityStatus;
         
     | 
| 
      
 105 
     | 
    
         
            +
            -(SCNetworkReachabilityFlags)reachabilityFlags;
         
     | 
| 
      
 106 
     | 
    
         
            +
            -(NSString*)currentReachabilityString;
         
     | 
| 
      
 107 
     | 
    
         
            +
            -(NSString*)currentReachabilityFlags;
         
     | 
| 
      
 108 
     | 
    
         
            +
             
     | 
| 
      
 109 
     | 
    
         
            +
            @end
         
     | 
| 
         @@ -0,0 +1,14 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
             
     | 
| 
      
 2 
     | 
    
         
            +
            // To check if a library is compiled with CocoaPods you
         
     | 
| 
      
 3 
     | 
    
         
            +
            // can use the `COCOAPODS` macro definition which is
         
     | 
| 
      
 4 
     | 
    
         
            +
            // defined in the xcconfigs so it is available in
         
     | 
| 
      
 5 
     | 
    
         
            +
            // headers also when they are imported in the client
         
     | 
| 
      
 6 
     | 
    
         
            +
            // project.
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            // Reachability
         
     | 
| 
      
 10 
     | 
    
         
            +
            #define COCOAPODS_POD_AVAILABLE_Reachability
         
     | 
| 
      
 11 
     | 
    
         
            +
            #define COCOAPODS_VERSION_MAJOR_Reachability 3
         
     | 
| 
      
 12 
     | 
    
         
            +
            #define COCOAPODS_VERSION_MINOR_Reachability 1
         
     | 
| 
      
 13 
     | 
    
         
            +
            #define COCOAPODS_VERSION_PATCH_Reachability 1
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
         @@ -0,0 +1,5 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            #include "Pods-Reachability.xcconfig"
         
     | 
| 
      
 2 
     | 
    
         
            +
            GCC_PREPROCESSOR_DEFINITIONS = COCOAPODS=1
         
     | 
| 
      
 3 
     | 
    
         
            +
            HEADER_SEARCH_PATHS = "${PODS_ROOT}/BuildHeaders" "${PODS_ROOT}/BuildHeaders/Reachability" "${PODS_ROOT}/Headers" "${PODS_ROOT}/Headers/Reachability"
         
     | 
| 
      
 4 
     | 
    
         
            +
            OTHER_LDFLAGS = -ObjC ${PODS_REACHABILITY_OTHER_LDFLAGS}
         
     | 
| 
      
 5 
     | 
    
         
            +
            PODS_ROOT = ${SRCROOT}
         
     | 
| 
         @@ -0,0 +1 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            PODS_REACHABILITY_OTHER_LDFLAGS = -framework SystemConfiguration
         
     | 
| 
         @@ -0,0 +1,17 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # Acknowledgements
         
     | 
| 
      
 2 
     | 
    
         
            +
            This application makes use of the following third party libraries:
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            ## Reachability
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            Copyright (c) 2011, Tony Million.
         
     | 
| 
      
 7 
     | 
    
         
            +
            All rights reserved.
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
            Generated by CocoaPods - http://cocoapods.org
         
     | 
| 
         @@ -0,0 +1,47 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
         
     | 
| 
      
 3 
     | 
    
         
            +
            <plist version="1.0">
         
     | 
| 
      
 4 
     | 
    
         
            +
            <dict>
         
     | 
| 
      
 5 
     | 
    
         
            +
            	<key>PreferenceSpecifiers</key>
         
     | 
| 
      
 6 
     | 
    
         
            +
            	<array>
         
     | 
| 
      
 7 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 8 
     | 
    
         
            +
            			<key>FooterText</key>
         
     | 
| 
      
 9 
     | 
    
         
            +
            			<string>This application makes use of the following third party libraries:</string>
         
     | 
| 
      
 10 
     | 
    
         
            +
            			<key>Title</key>
         
     | 
| 
      
 11 
     | 
    
         
            +
            			<string>Acknowledgements</string>
         
     | 
| 
      
 12 
     | 
    
         
            +
            			<key>Type</key>
         
     | 
| 
      
 13 
     | 
    
         
            +
            			<string>PSGroupSpecifier</string>
         
     | 
| 
      
 14 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 15 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 16 
     | 
    
         
            +
            			<key>FooterText</key>
         
     | 
| 
      
 17 
     | 
    
         
            +
            			<string>Copyright (c) 2011, Tony Million.
         
     | 
| 
      
 18 
     | 
    
         
            +
            All rights reserved.
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
            Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
            1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
            2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
         
     | 
| 
      
 25 
     | 
    
         
            +
             
     | 
| 
      
 26 
     | 
    
         
            +
            THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
         
     | 
| 
      
 27 
     | 
    
         
            +
            </string>
         
     | 
| 
      
 28 
     | 
    
         
            +
            			<key>Title</key>
         
     | 
| 
      
 29 
     | 
    
         
            +
            			<string>Reachability</string>
         
     | 
| 
      
 30 
     | 
    
         
            +
            			<key>Type</key>
         
     | 
| 
      
 31 
     | 
    
         
            +
            			<string>PSGroupSpecifier</string>
         
     | 
| 
      
 32 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 33 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 34 
     | 
    
         
            +
            			<key>FooterText</key>
         
     | 
| 
      
 35 
     | 
    
         
            +
            			<string>Generated by CocoaPods - http://cocoapods.org</string>
         
     | 
| 
      
 36 
     | 
    
         
            +
            			<key>Title</key>
         
     | 
| 
      
 37 
     | 
    
         
            +
            			<string></string>
         
     | 
| 
      
 38 
     | 
    
         
            +
            			<key>Type</key>
         
     | 
| 
      
 39 
     | 
    
         
            +
            			<string>PSGroupSpecifier</string>
         
     | 
| 
      
 40 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 41 
     | 
    
         
            +
            	</array>
         
     | 
| 
      
 42 
     | 
    
         
            +
            	<key>StringsTable</key>
         
     | 
| 
      
 43 
     | 
    
         
            +
            	<string>Acknowledgements</string>
         
     | 
| 
      
 44 
     | 
    
         
            +
            	<key>Title</key>
         
     | 
| 
      
 45 
     | 
    
         
            +
            	<string>Acknowledgements</string>
         
     | 
| 
      
 46 
     | 
    
         
            +
            </dict>
         
     | 
| 
      
 47 
     | 
    
         
            +
            </plist>
         
     | 
| 
         @@ -0,0 +1,14 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
             
     | 
| 
      
 2 
     | 
    
         
            +
            // To check if a library is compiled with CocoaPods you
         
     | 
| 
      
 3 
     | 
    
         
            +
            // can use the `COCOAPODS` macro definition which is
         
     | 
| 
      
 4 
     | 
    
         
            +
            // defined in the xcconfigs so it is available in
         
     | 
| 
      
 5 
     | 
    
         
            +
            // headers also when they are imported in the client
         
     | 
| 
      
 6 
     | 
    
         
            +
            // project.
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            // Reachability
         
     | 
| 
      
 10 
     | 
    
         
            +
            #define COCOAPODS_POD_AVAILABLE_Reachability
         
     | 
| 
      
 11 
     | 
    
         
            +
            #define COCOAPODS_VERSION_MAJOR_Reachability 3
         
     | 
| 
      
 12 
     | 
    
         
            +
            #define COCOAPODS_VERSION_MINOR_Reachability 1
         
     | 
| 
      
 13 
     | 
    
         
            +
            #define COCOAPODS_VERSION_PATCH_Reachability 1
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
         @@ -0,0 +1,55 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            #!/bin/sh
         
     | 
| 
      
 2 
     | 
    
         
            +
            set -e
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt
         
     | 
| 
      
 5 
     | 
    
         
            +
            > "$RESOURCES_TO_COPY"
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            install_resource()
         
     | 
| 
      
 8 
     | 
    
         
            +
            {
         
     | 
| 
      
 9 
     | 
    
         
            +
              case $1 in
         
     | 
| 
      
 10 
     | 
    
         
            +
                *.storyboard)
         
     | 
| 
      
 11 
     | 
    
         
            +
                  echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}"
         
     | 
| 
      
 12 
     | 
    
         
            +
                  ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}"
         
     | 
| 
      
 13 
     | 
    
         
            +
                  ;;
         
     | 
| 
      
 14 
     | 
    
         
            +
                *.xib)
         
     | 
| 
      
 15 
     | 
    
         
            +
                    echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}"
         
     | 
| 
      
 16 
     | 
    
         
            +
                  ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}"
         
     | 
| 
      
 17 
     | 
    
         
            +
                  ;;
         
     | 
| 
      
 18 
     | 
    
         
            +
                *.framework)
         
     | 
| 
      
 19 
     | 
    
         
            +
                  echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
         
     | 
| 
      
 20 
     | 
    
         
            +
                  mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
         
     | 
| 
      
 21 
     | 
    
         
            +
                  echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
         
     | 
| 
      
 22 
     | 
    
         
            +
                  rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
         
     | 
| 
      
 23 
     | 
    
         
            +
                  ;;
         
     | 
| 
      
 24 
     | 
    
         
            +
                *.xcdatamodel)
         
     | 
| 
      
 25 
     | 
    
         
            +
                  echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\""
         
     | 
| 
      
 26 
     | 
    
         
            +
                  xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom"
         
     | 
| 
      
 27 
     | 
    
         
            +
                  ;;
         
     | 
| 
      
 28 
     | 
    
         
            +
                *.xcdatamodeld)
         
     | 
| 
      
 29 
     | 
    
         
            +
                  echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\""
         
     | 
| 
      
 30 
     | 
    
         
            +
                  xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd"
         
     | 
| 
      
 31 
     | 
    
         
            +
                  ;;
         
     | 
| 
      
 32 
     | 
    
         
            +
                *.xcassets)
         
     | 
| 
      
 33 
     | 
    
         
            +
                  ;;
         
     | 
| 
      
 34 
     | 
    
         
            +
                /*)
         
     | 
| 
      
 35 
     | 
    
         
            +
                  echo "$1"
         
     | 
| 
      
 36 
     | 
    
         
            +
                  echo "$1" >> "$RESOURCES_TO_COPY"
         
     | 
| 
      
 37 
     | 
    
         
            +
                  ;;
         
     | 
| 
      
 38 
     | 
    
         
            +
                *)
         
     | 
| 
      
 39 
     | 
    
         
            +
                  echo "${PODS_ROOT}/$1"
         
     | 
| 
      
 40 
     | 
    
         
            +
                  echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY"
         
     | 
| 
      
 41 
     | 
    
         
            +
                  ;;
         
     | 
| 
      
 42 
     | 
    
         
            +
              esac
         
     | 
| 
      
 43 
     | 
    
         
            +
            }
         
     | 
| 
      
 44 
     | 
    
         
            +
             
     | 
| 
      
 45 
     | 
    
         
            +
            rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
         
     | 
| 
      
 46 
     | 
    
         
            +
            if [[ "${ACTION}" == "install" ]]; then
         
     | 
| 
      
 47 
     | 
    
         
            +
              rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
         
     | 
| 
      
 48 
     | 
    
         
            +
            fi
         
     | 
| 
      
 49 
     | 
    
         
            +
            rm -f "$RESOURCES_TO_COPY"
         
     | 
| 
      
 50 
     | 
    
         
            +
             
     | 
| 
      
 51 
     | 
    
         
            +
            if [ `find . -name '*.xcassets' | wc -l` -ne 0 ]
         
     | 
| 
      
 52 
     | 
    
         
            +
            then
         
     | 
| 
      
 53 
     | 
    
         
            +
              DEVICE=`if [ "${TARGETED_DEVICE_FAMILY}" -eq 1 ]; then echo "iphone"; else echo "ipad"; fi`
         
     | 
| 
      
 54 
     | 
    
         
            +
              find "${PWD}" -name "*.xcassets" -print0 | xargs -0 actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" --target-device "${DEVICE}" --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.${WRAPPER_EXTENSION}"
         
     | 
| 
      
 55 
     | 
    
         
            +
            fi
         
     | 
| 
         @@ -0,0 +1,100 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version='1.0'?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <signatures version='1.0'>
         
     | 
| 
      
 3 
     | 
    
         
            +
            <constant const='true' declared_type='NSString*' name='kReachabilityChangedNotification' type='@'/>
         
     | 
| 
      
 4 
     | 
    
         
            +
            <enum value='0' name='NEEDS_DISPATCH_RETAIN_RELEASE'/>
         
     | 
| 
      
 5 
     | 
    
         
            +
            <enum value='0' name='NotReachable'/>
         
     | 
| 
      
 6 
     | 
    
         
            +
            <enum value='1' name='ReachableViaWWAN'/>
         
     | 
| 
      
 7 
     | 
    
         
            +
            <enum value='2' name='ReachableViaWiFi'/>
         
     | 
| 
      
 8 
     | 
    
         
            +
            <class name='Reachability'>
         
     | 
| 
      
 9 
     | 
    
         
            +
            <method selector='connectionRequired'>
         
     | 
| 
      
 10 
     | 
    
         
            +
            <retval declared_type='BOOL' type='B'/>
         
     | 
| 
      
 11 
     | 
    
         
            +
            </method>
         
     | 
| 
      
 12 
     | 
    
         
            +
            <method selector='currentReachabilityFlags'>
         
     | 
| 
      
 13 
     | 
    
         
            +
            <retval declared_type='NSString*' type='@'/>
         
     | 
| 
      
 14 
     | 
    
         
            +
            </method>
         
     | 
| 
      
 15 
     | 
    
         
            +
            <method selector='currentReachabilityStatus'>
         
     | 
| 
      
 16 
     | 
    
         
            +
            <retval declared_type='NetworkStatus' type='i' type64='q'/>
         
     | 
| 
      
 17 
     | 
    
         
            +
            </method>
         
     | 
| 
      
 18 
     | 
    
         
            +
            <method selector='currentReachabilityString'>
         
     | 
| 
      
 19 
     | 
    
         
            +
            <retval declared_type='NSString*' type='@'/>
         
     | 
| 
      
 20 
     | 
    
         
            +
            </method>
         
     | 
| 
      
 21 
     | 
    
         
            +
            <method selector='initWithReachabilityRef:'>
         
     | 
| 
      
 22 
     | 
    
         
            +
            <arg declared_type='SCNetworkReachabilityRef' name='ref' type='^{__SCNetworkReachability=}' index='0'/>
         
     | 
| 
      
 23 
     | 
    
         
            +
            <retval declared_type='Reachability*' type='@'/>
         
     | 
| 
      
 24 
     | 
    
         
            +
            </method>
         
     | 
| 
      
 25 
     | 
    
         
            +
            <method selector='isConnectionOnDemand'>
         
     | 
| 
      
 26 
     | 
    
         
            +
            <retval declared_type='BOOL' type='B'/>
         
     | 
| 
      
 27 
     | 
    
         
            +
            </method>
         
     | 
| 
      
 28 
     | 
    
         
            +
            <method selector='isConnectionRequired'>
         
     | 
| 
      
 29 
     | 
    
         
            +
            <retval declared_type='BOOL' type='B'/>
         
     | 
| 
      
 30 
     | 
    
         
            +
            </method>
         
     | 
| 
      
 31 
     | 
    
         
            +
            <method selector='isInterventionRequired'>
         
     | 
| 
      
 32 
     | 
    
         
            +
            <retval declared_type='BOOL' type='B'/>
         
     | 
| 
      
 33 
     | 
    
         
            +
            </method>
         
     | 
| 
      
 34 
     | 
    
         
            +
            <method selector='isReachable'>
         
     | 
| 
      
 35 
     | 
    
         
            +
            <retval declared_type='BOOL' type='B'/>
         
     | 
| 
      
 36 
     | 
    
         
            +
            </method>
         
     | 
| 
      
 37 
     | 
    
         
            +
            <method selector='isReachableViaWWAN'>
         
     | 
| 
      
 38 
     | 
    
         
            +
            <retval declared_type='BOOL' type='B'/>
         
     | 
| 
      
 39 
     | 
    
         
            +
            </method>
         
     | 
| 
      
 40 
     | 
    
         
            +
            <method selector='isReachableViaWiFi'>
         
     | 
| 
      
 41 
     | 
    
         
            +
            <retval declared_type='BOOL' type='B'/>
         
     | 
| 
      
 42 
     | 
    
         
            +
            </method>
         
     | 
| 
      
 43 
     | 
    
         
            +
            <method selector='reachabilityFlags'>
         
     | 
| 
      
 44 
     | 
    
         
            +
            <retval declared_type='SCNetworkReachabilityFlags' type='I'/>
         
     | 
| 
      
 45 
     | 
    
         
            +
            </method>
         
     | 
| 
      
 46 
     | 
    
         
            +
            <method class_method='true' selector='reachabilityForInternetConnection'>
         
     | 
| 
      
 47 
     | 
    
         
            +
            <retval declared_type='Reachability*' type='@'/>
         
     | 
| 
      
 48 
     | 
    
         
            +
            </method>
         
     | 
| 
      
 49 
     | 
    
         
            +
            <method class_method='true' selector='reachabilityForLocalWiFi'>
         
     | 
| 
      
 50 
     | 
    
         
            +
            <retval declared_type='Reachability*' type='@'/>
         
     | 
| 
      
 51 
     | 
    
         
            +
            </method>
         
     | 
| 
      
 52 
     | 
    
         
            +
            <method class_method='true' selector='reachabilityWithAddress:'>
         
     | 
| 
      
 53 
     | 
    
         
            +
            <arg const='true' declared_type='struct sockaddr_in*' name='hostAddress' type='^{sockaddr_in=CCS{in_addr=I}[8c]}' index='0'/>
         
     | 
| 
      
 54 
     | 
    
         
            +
            <retval declared_type='Reachability*' type='@'/>
         
     | 
| 
      
 55 
     | 
    
         
            +
            </method>
         
     | 
| 
      
 56 
     | 
    
         
            +
            <method class_method='true' selector='reachabilityWithHostname:'>
         
     | 
| 
      
 57 
     | 
    
         
            +
            <arg declared_type='NSString*' name='hostname' type='@' index='0'/>
         
     | 
| 
      
 58 
     | 
    
         
            +
            <retval declared_type='Reachability*' type='@'/>
         
     | 
| 
      
 59 
     | 
    
         
            +
            </method>
         
     | 
| 
      
 60 
     | 
    
         
            +
            <method selector='reachableBlock'>
         
     | 
| 
      
 61 
     | 
    
         
            +
            <retval function_pointer='true' declared_type='NetworkReachable' type='@?'>
         
     | 
| 
      
 62 
     | 
    
         
            +
            <arg declared_type='Reachability*' type='@'/>
         
     | 
| 
      
 63 
     | 
    
         
            +
            <retval declared_type='void' type='v'/>
         
     | 
| 
      
 64 
     | 
    
         
            +
            </retval>
         
     | 
| 
      
 65 
     | 
    
         
            +
            </method>
         
     | 
| 
      
 66 
     | 
    
         
            +
            <method selector='reachableOnWWAN'>
         
     | 
| 
      
 67 
     | 
    
         
            +
            <retval declared_type='BOOL' type='B'/>
         
     | 
| 
      
 68 
     | 
    
         
            +
            </method>
         
     | 
| 
      
 69 
     | 
    
         
            +
            <method selector='setReachableBlock:'>
         
     | 
| 
      
 70 
     | 
    
         
            +
            <arg function_pointer='true' declared_type='NetworkReachable' name='reachableBlock' type='@?' index='0'>
         
     | 
| 
      
 71 
     | 
    
         
            +
            <arg declared_type='Reachability*' type='@'/>
         
     | 
| 
      
 72 
     | 
    
         
            +
            <retval declared_type='void' type='v'/>
         
     | 
| 
      
 73 
     | 
    
         
            +
            </arg>
         
     | 
| 
      
 74 
     | 
    
         
            +
            <retval declared_type='void' type='v'/>
         
     | 
| 
      
 75 
     | 
    
         
            +
            </method>
         
     | 
| 
      
 76 
     | 
    
         
            +
            <method selector='setReachableOnWWAN:'>
         
     | 
| 
      
 77 
     | 
    
         
            +
            <arg declared_type='BOOL' name='reachableOnWWAN' type='B' index='0'/>
         
     | 
| 
      
 78 
     | 
    
         
            +
            <retval declared_type='void' type='v'/>
         
     | 
| 
      
 79 
     | 
    
         
            +
            </method>
         
     | 
| 
      
 80 
     | 
    
         
            +
            <method selector='setUnreachableBlock:'>
         
     | 
| 
      
 81 
     | 
    
         
            +
            <arg function_pointer='true' declared_type='NetworkUnreachable' name='unreachableBlock' type='@?' index='0'>
         
     | 
| 
      
 82 
     | 
    
         
            +
            <arg declared_type='Reachability*' type='@'/>
         
     | 
| 
      
 83 
     | 
    
         
            +
            <retval declared_type='void' type='v'/>
         
     | 
| 
      
 84 
     | 
    
         
            +
            </arg>
         
     | 
| 
      
 85 
     | 
    
         
            +
            <retval declared_type='void' type='v'/>
         
     | 
| 
      
 86 
     | 
    
         
            +
            </method>
         
     | 
| 
      
 87 
     | 
    
         
            +
            <method selector='startNotifier'>
         
     | 
| 
      
 88 
     | 
    
         
            +
            <retval declared_type='BOOL' type='B'/>
         
     | 
| 
      
 89 
     | 
    
         
            +
            </method>
         
     | 
| 
      
 90 
     | 
    
         
            +
            <method selector='stopNotifier'>
         
     | 
| 
      
 91 
     | 
    
         
            +
            <retval declared_type='void' type='v'/>
         
     | 
| 
      
 92 
     | 
    
         
            +
            </method>
         
     | 
| 
      
 93 
     | 
    
         
            +
            <method selector='unreachableBlock'>
         
     | 
| 
      
 94 
     | 
    
         
            +
            <retval function_pointer='true' declared_type='NetworkUnreachable' type='@?'>
         
     | 
| 
      
 95 
     | 
    
         
            +
            <arg declared_type='Reachability*' type='@'/>
         
     | 
| 
      
 96 
     | 
    
         
            +
            <retval declared_type='void' type='v'/>
         
     | 
| 
      
 97 
     | 
    
         
            +
            </retval>
         
     | 
| 
      
 98 
     | 
    
         
            +
            </method>
         
     | 
| 
      
 99 
     | 
    
         
            +
            </class>
         
     | 
| 
      
 100 
     | 
    
         
            +
            </signatures>
         
     | 
| 
         @@ -0,0 +1,960 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
         
     | 
| 
      
 3 
     | 
    
         
            +
            <plist version="1.0">
         
     | 
| 
      
 4 
     | 
    
         
            +
            <dict>
         
     | 
| 
      
 5 
     | 
    
         
            +
            	<key>archiveVersion</key>
         
     | 
| 
      
 6 
     | 
    
         
            +
            	<string>1</string>
         
     | 
| 
      
 7 
     | 
    
         
            +
            	<key>classes</key>
         
     | 
| 
      
 8 
     | 
    
         
            +
            	<dict/>
         
     | 
| 
      
 9 
     | 
    
         
            +
            	<key>objectVersion</key>
         
     | 
| 
      
 10 
     | 
    
         
            +
            	<string>46</string>
         
     | 
| 
      
 11 
     | 
    
         
            +
            	<key>objects</key>
         
     | 
| 
      
 12 
     | 
    
         
            +
            	<dict>
         
     | 
| 
      
 13 
     | 
    
         
            +
            		<key>0124EC28896A46DEA29298AF</key>
         
     | 
| 
      
 14 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 15 
     | 
    
         
            +
            			<key>buildConfigurationList</key>
         
     | 
| 
      
 16 
     | 
    
         
            +
            			<string>64E59085D29A474A97C819B8</string>
         
     | 
| 
      
 17 
     | 
    
         
            +
            			<key>buildPhases</key>
         
     | 
| 
      
 18 
     | 
    
         
            +
            			<array>
         
     | 
| 
      
 19 
     | 
    
         
            +
            				<string>99963A8ACF0342FE97BDDEE3</string>
         
     | 
| 
      
 20 
     | 
    
         
            +
            				<string>61AA497112AB470188650A9A</string>
         
     | 
| 
      
 21 
     | 
    
         
            +
            			</array>
         
     | 
| 
      
 22 
     | 
    
         
            +
            			<key>buildRules</key>
         
     | 
| 
      
 23 
     | 
    
         
            +
            			<array/>
         
     | 
| 
      
 24 
     | 
    
         
            +
            			<key>dependencies</key>
         
     | 
| 
      
 25 
     | 
    
         
            +
            			<array>
         
     | 
| 
      
 26 
     | 
    
         
            +
            				<string>BA18369DAC4149629E514100</string>
         
     | 
| 
      
 27 
     | 
    
         
            +
            			</array>
         
     | 
| 
      
 28 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 29 
     | 
    
         
            +
            			<string>PBXNativeTarget</string>
         
     | 
| 
      
 30 
     | 
    
         
            +
            			<key>name</key>
         
     | 
| 
      
 31 
     | 
    
         
            +
            			<string>Pods</string>
         
     | 
| 
      
 32 
     | 
    
         
            +
            			<key>productName</key>
         
     | 
| 
      
 33 
     | 
    
         
            +
            			<string>Pods</string>
         
     | 
| 
      
 34 
     | 
    
         
            +
            			<key>productReference</key>
         
     | 
| 
      
 35 
     | 
    
         
            +
            			<string>EB771EED6EBE4B11B3B5E016</string>
         
     | 
| 
      
 36 
     | 
    
         
            +
            			<key>productType</key>
         
     | 
| 
      
 37 
     | 
    
         
            +
            			<string>com.apple.product-type.library.static</string>
         
     | 
| 
      
 38 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 39 
     | 
    
         
            +
            		<key>0585689ABD5C46DEAADA23BB</key>
         
     | 
| 
      
 40 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 41 
     | 
    
         
            +
            			<key>explicitFileType</key>
         
     | 
| 
      
 42 
     | 
    
         
            +
            			<string>archive.ar</string>
         
     | 
| 
      
 43 
     | 
    
         
            +
            			<key>includeInIndex</key>
         
     | 
| 
      
 44 
     | 
    
         
            +
            			<string>0</string>
         
     | 
| 
      
 45 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 46 
     | 
    
         
            +
            			<string>PBXFileReference</string>
         
     | 
| 
      
 47 
     | 
    
         
            +
            			<key>path</key>
         
     | 
| 
      
 48 
     | 
    
         
            +
            			<string>libPods-Reachability.a</string>
         
     | 
| 
      
 49 
     | 
    
         
            +
            			<key>sourceTree</key>
         
     | 
| 
      
 50 
     | 
    
         
            +
            			<string>BUILT_PRODUCTS_DIR</string>
         
     | 
| 
      
 51 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 52 
     | 
    
         
            +
            		<key>08AB698FA08D4E5DA92CEC06</key>
         
     | 
| 
      
 53 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 54 
     | 
    
         
            +
            			<key>includeInIndex</key>
         
     | 
| 
      
 55 
     | 
    
         
            +
            			<string>1</string>
         
     | 
| 
      
 56 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 57 
     | 
    
         
            +
            			<string>PBXFileReference</string>
         
     | 
| 
      
 58 
     | 
    
         
            +
            			<key>lastKnownFileType</key>
         
     | 
| 
      
 59 
     | 
    
         
            +
            			<string>text.script.sh</string>
         
     | 
| 
      
 60 
     | 
    
         
            +
            			<key>path</key>
         
     | 
| 
      
 61 
     | 
    
         
            +
            			<string>Pods-resources.sh</string>
         
     | 
| 
      
 62 
     | 
    
         
            +
            			<key>sourceTree</key>
         
     | 
| 
      
 63 
     | 
    
         
            +
            			<string><group></string>
         
     | 
| 
      
 64 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 65 
     | 
    
         
            +
            		<key>1314434AED6C43339179AC2F</key>
         
     | 
| 
      
 66 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 67 
     | 
    
         
            +
            			<key>buildSettings</key>
         
     | 
| 
      
 68 
     | 
    
         
            +
            			<dict>
         
     | 
| 
      
 69 
     | 
    
         
            +
            				<key>ALWAYS_SEARCH_USER_PATHS</key>
         
     | 
| 
      
 70 
     | 
    
         
            +
            				<string>NO</string>
         
     | 
| 
      
 71 
     | 
    
         
            +
            				<key>CLANG_CXX_LANGUAGE_STANDARD</key>
         
     | 
| 
      
 72 
     | 
    
         
            +
            				<string>gnu++0x</string>
         
     | 
| 
      
 73 
     | 
    
         
            +
            				<key>CLANG_CXX_LIBRARY</key>
         
     | 
| 
      
 74 
     | 
    
         
            +
            				<string>libc++</string>
         
     | 
| 
      
 75 
     | 
    
         
            +
            				<key>CLANG_ENABLE_MODULES</key>
         
     | 
| 
      
 76 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 77 
     | 
    
         
            +
            				<key>CLANG_ENABLE_OBJC_ARC</key>
         
     | 
| 
      
 78 
     | 
    
         
            +
            				<string>NO</string>
         
     | 
| 
      
 79 
     | 
    
         
            +
            				<key>CLANG_WARN_BOOL_CONVERSION</key>
         
     | 
| 
      
 80 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 81 
     | 
    
         
            +
            				<key>CLANG_WARN_CONSTANT_CONVERSION</key>
         
     | 
| 
      
 82 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 83 
     | 
    
         
            +
            				<key>CLANG_WARN_DIRECT_OBJC_ISA_USAGE</key>
         
     | 
| 
      
 84 
     | 
    
         
            +
            				<string>YES_ERROR</string>
         
     | 
| 
      
 85 
     | 
    
         
            +
            				<key>CLANG_WARN_EMPTY_BODY</key>
         
     | 
| 
      
 86 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 87 
     | 
    
         
            +
            				<key>CLANG_WARN_ENUM_CONVERSION</key>
         
     | 
| 
      
 88 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 89 
     | 
    
         
            +
            				<key>CLANG_WARN_INT_CONVERSION</key>
         
     | 
| 
      
 90 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 91 
     | 
    
         
            +
            				<key>CLANG_WARN_OBJC_ROOT_CLASS</key>
         
     | 
| 
      
 92 
     | 
    
         
            +
            				<string>YES_ERROR</string>
         
     | 
| 
      
 93 
     | 
    
         
            +
            				<key>COPY_PHASE_STRIP</key>
         
     | 
| 
      
 94 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 95 
     | 
    
         
            +
            				<key>GCC_C_LANGUAGE_STANDARD</key>
         
     | 
| 
      
 96 
     | 
    
         
            +
            				<string>gnu99</string>
         
     | 
| 
      
 97 
     | 
    
         
            +
            				<key>GCC_DYNAMIC_NO_PIC</key>
         
     | 
| 
      
 98 
     | 
    
         
            +
            				<string>NO</string>
         
     | 
| 
      
 99 
     | 
    
         
            +
            				<key>GCC_OPTIMIZATION_LEVEL</key>
         
     | 
| 
      
 100 
     | 
    
         
            +
            				<string>0</string>
         
     | 
| 
      
 101 
     | 
    
         
            +
            				<key>GCC_PREPROCESSOR_DEFINITIONS</key>
         
     | 
| 
      
 102 
     | 
    
         
            +
            				<array>
         
     | 
| 
      
 103 
     | 
    
         
            +
            					<string>DEBUG=1</string>
         
     | 
| 
      
 104 
     | 
    
         
            +
            					<string>$(inherited)</string>
         
     | 
| 
      
 105 
     | 
    
         
            +
            				</array>
         
     | 
| 
      
 106 
     | 
    
         
            +
            				<key>GCC_SYMBOLS_PRIVATE_EXTERN</key>
         
     | 
| 
      
 107 
     | 
    
         
            +
            				<string>NO</string>
         
     | 
| 
      
 108 
     | 
    
         
            +
            				<key>GCC_WARN_64_TO_32_BIT_CONVERSION</key>
         
     | 
| 
      
 109 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 110 
     | 
    
         
            +
            				<key>GCC_WARN_ABOUT_RETURN_TYPE</key>
         
     | 
| 
      
 111 
     | 
    
         
            +
            				<string>YES_ERROR</string>
         
     | 
| 
      
 112 
     | 
    
         
            +
            				<key>GCC_WARN_UNDECLARED_SELECTOR</key>
         
     | 
| 
      
 113 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 114 
     | 
    
         
            +
            				<key>GCC_WARN_UNINITIALIZED_AUTOS</key>
         
     | 
| 
      
 115 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 116 
     | 
    
         
            +
            				<key>GCC_WARN_UNUSED_FUNCTION</key>
         
     | 
| 
      
 117 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 118 
     | 
    
         
            +
            				<key>GCC_WARN_UNUSED_VARIABLE</key>
         
     | 
| 
      
 119 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 120 
     | 
    
         
            +
            				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
         
     | 
| 
      
 121 
     | 
    
         
            +
            				<string>7.0</string>
         
     | 
| 
      
 122 
     | 
    
         
            +
            				<key>ONLY_ACTIVE_ARCH</key>
         
     | 
| 
      
 123 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 124 
     | 
    
         
            +
            				<key>STRIP_INSTALLED_PRODUCT</key>
         
     | 
| 
      
 125 
     | 
    
         
            +
            				<string>NO</string>
         
     | 
| 
      
 126 
     | 
    
         
            +
            			</dict>
         
     | 
| 
      
 127 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 128 
     | 
    
         
            +
            			<string>XCBuildConfiguration</string>
         
     | 
| 
      
 129 
     | 
    
         
            +
            			<key>name</key>
         
     | 
| 
      
 130 
     | 
    
         
            +
            			<string>Debug</string>
         
     | 
| 
      
 131 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 132 
     | 
    
         
            +
            		<key>2158CC76EE4C4BB8B5E0AFBA</key>
         
     | 
| 
      
 133 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 134 
     | 
    
         
            +
            			<key>includeInIndex</key>
         
     | 
| 
      
 135 
     | 
    
         
            +
            			<string>1</string>
         
     | 
| 
      
 136 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 137 
     | 
    
         
            +
            			<string>PBXFileReference</string>
         
     | 
| 
      
 138 
     | 
    
         
            +
            			<key>lastKnownFileType</key>
         
     | 
| 
      
 139 
     | 
    
         
            +
            			<string>text.xcconfig</string>
         
     | 
| 
      
 140 
     | 
    
         
            +
            			<key>path</key>
         
     | 
| 
      
 141 
     | 
    
         
            +
            			<string>Pods-Reachability.xcconfig</string>
         
     | 
| 
      
 142 
     | 
    
         
            +
            			<key>sourceTree</key>
         
     | 
| 
      
 143 
     | 
    
         
            +
            			<string><group></string>
         
     | 
| 
      
 144 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 145 
     | 
    
         
            +
            		<key>23871A3FED954BB49189F612</key>
         
     | 
| 
      
 146 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 147 
     | 
    
         
            +
            			<key>containerPortal</key>
         
     | 
| 
      
 148 
     | 
    
         
            +
            			<string>D07C2AA7CDE5473791D8DAC1</string>
         
     | 
| 
      
 149 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 150 
     | 
    
         
            +
            			<string>PBXContainerItemProxy</string>
         
     | 
| 
      
 151 
     | 
    
         
            +
            			<key>proxyType</key>
         
     | 
| 
      
 152 
     | 
    
         
            +
            			<string>1</string>
         
     | 
| 
      
 153 
     | 
    
         
            +
            			<key>remoteGlobalIDString</key>
         
     | 
| 
      
 154 
     | 
    
         
            +
            			<string>C9BFAE48CD614704B2368B7C</string>
         
     | 
| 
      
 155 
     | 
    
         
            +
            			<key>remoteInfo</key>
         
     | 
| 
      
 156 
     | 
    
         
            +
            			<string>Pods-Reachability</string>
         
     | 
| 
      
 157 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 158 
     | 
    
         
            +
            		<key>2B67A24239D44AA6B732162E</key>
         
     | 
| 
      
 159 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 160 
     | 
    
         
            +
            			<key>children</key>
         
     | 
| 
      
 161 
     | 
    
         
            +
            			<array>
         
     | 
| 
      
 162 
     | 
    
         
            +
            				<string>7B71B352F5584DE397445BD0</string>
         
     | 
| 
      
 163 
     | 
    
         
            +
            			</array>
         
     | 
| 
      
 164 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 165 
     | 
    
         
            +
            			<string>PBXGroup</string>
         
     | 
| 
      
 166 
     | 
    
         
            +
            			<key>name</key>
         
     | 
| 
      
 167 
     | 
    
         
            +
            			<string>Frameworks</string>
         
     | 
| 
      
 168 
     | 
    
         
            +
            			<key>sourceTree</key>
         
     | 
| 
      
 169 
     | 
    
         
            +
            			<string><group></string>
         
     | 
| 
      
 170 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 171 
     | 
    
         
            +
            		<key>2D602727FC7249B690E7CBC3</key>
         
     | 
| 
      
 172 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 173 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 174 
     | 
    
         
            +
            			<string>PBXFileReference</string>
         
     | 
| 
      
 175 
     | 
    
         
            +
            			<key>lastKnownFileType</key>
         
     | 
| 
      
 176 
     | 
    
         
            +
            			<string>wrapper.framework</string>
         
     | 
| 
      
 177 
     | 
    
         
            +
            			<key>name</key>
         
     | 
| 
      
 178 
     | 
    
         
            +
            			<string>Foundation.framework</string>
         
     | 
| 
      
 179 
     | 
    
         
            +
            			<key>path</key>
         
     | 
| 
      
 180 
     | 
    
         
            +
            			<string>Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk/System/Library/Frameworks/Foundation.framework</string>
         
     | 
| 
      
 181 
     | 
    
         
            +
            			<key>sourceTree</key>
         
     | 
| 
      
 182 
     | 
    
         
            +
            			<string>DEVELOPER_DIR</string>
         
     | 
| 
      
 183 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 184 
     | 
    
         
            +
            		<key>2DB3540E541E4999AB564A41</key>
         
     | 
| 
      
 185 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 186 
     | 
    
         
            +
            			<key>includeInIndex</key>
         
     | 
| 
      
 187 
     | 
    
         
            +
            			<string>1</string>
         
     | 
| 
      
 188 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 189 
     | 
    
         
            +
            			<string>PBXFileReference</string>
         
     | 
| 
      
 190 
     | 
    
         
            +
            			<key>lastKnownFileType</key>
         
     | 
| 
      
 191 
     | 
    
         
            +
            			<string>sourcecode.c.h</string>
         
     | 
| 
      
 192 
     | 
    
         
            +
            			<key>path</key>
         
     | 
| 
      
 193 
     | 
    
         
            +
            			<string>Pods-Reachability-prefix.pch</string>
         
     | 
| 
      
 194 
     | 
    
         
            +
            			<key>sourceTree</key>
         
     | 
| 
      
 195 
     | 
    
         
            +
            			<string><group></string>
         
     | 
| 
      
 196 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 197 
     | 
    
         
            +
            		<key>366AA7640C7241CE831D23A1</key>
         
     | 
| 
      
 198 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 199 
     | 
    
         
            +
            			<key>baseConfigurationReference</key>
         
     | 
| 
      
 200 
     | 
    
         
            +
            			<string>DC298ADD3DB847DDA332FB53</string>
         
     | 
| 
      
 201 
     | 
    
         
            +
            			<key>buildSettings</key>
         
     | 
| 
      
 202 
     | 
    
         
            +
            			<dict>
         
     | 
| 
      
 203 
     | 
    
         
            +
            				<key>ALWAYS_SEARCH_USER_PATHS</key>
         
     | 
| 
      
 204 
     | 
    
         
            +
            				<string>NO</string>
         
     | 
| 
      
 205 
     | 
    
         
            +
            				<key>COPY_PHASE_STRIP</key>
         
     | 
| 
      
 206 
     | 
    
         
            +
            				<string>NO</string>
         
     | 
| 
      
 207 
     | 
    
         
            +
            				<key>DSTROOT</key>
         
     | 
| 
      
 208 
     | 
    
         
            +
            				<string>/tmp/xcodeproj.dst</string>
         
     | 
| 
      
 209 
     | 
    
         
            +
            				<key>GCC_C_LANGUAGE_STANDARD</key>
         
     | 
| 
      
 210 
     | 
    
         
            +
            				<string>gnu99</string>
         
     | 
| 
      
 211 
     | 
    
         
            +
            				<key>GCC_DYNAMIC_NO_PIC</key>
         
     | 
| 
      
 212 
     | 
    
         
            +
            				<string>NO</string>
         
     | 
| 
      
 213 
     | 
    
         
            +
            				<key>GCC_OPTIMIZATION_LEVEL</key>
         
     | 
| 
      
 214 
     | 
    
         
            +
            				<string>0</string>
         
     | 
| 
      
 215 
     | 
    
         
            +
            				<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
         
     | 
| 
      
 216 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 217 
     | 
    
         
            +
            				<key>GCC_PREPROCESSOR_DEFINITIONS</key>
         
     | 
| 
      
 218 
     | 
    
         
            +
            				<array>
         
     | 
| 
      
 219 
     | 
    
         
            +
            					<string>DEBUG=1</string>
         
     | 
| 
      
 220 
     | 
    
         
            +
            					<string>$(inherited)</string>
         
     | 
| 
      
 221 
     | 
    
         
            +
            				</array>
         
     | 
| 
      
 222 
     | 
    
         
            +
            				<key>GCC_SYMBOLS_PRIVATE_EXTERN</key>
         
     | 
| 
      
 223 
     | 
    
         
            +
            				<string>NO</string>
         
     | 
| 
      
 224 
     | 
    
         
            +
            				<key>GCC_VERSION</key>
         
     | 
| 
      
 225 
     | 
    
         
            +
            				<string>com.apple.compilers.llvm.clang.1_0</string>
         
     | 
| 
      
 226 
     | 
    
         
            +
            				<key>INSTALL_PATH</key>
         
     | 
| 
      
 227 
     | 
    
         
            +
            				<string>$(BUILT_PRODUCTS_DIR)</string>
         
     | 
| 
      
 228 
     | 
    
         
            +
            				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
         
     | 
| 
      
 229 
     | 
    
         
            +
            				<string>7.0</string>
         
     | 
| 
      
 230 
     | 
    
         
            +
            				<key>OTHER_LDFLAGS</key>
         
     | 
| 
      
 231 
     | 
    
         
            +
            				<string></string>
         
     | 
| 
      
 232 
     | 
    
         
            +
            				<key>PRODUCT_NAME</key>
         
     | 
| 
      
 233 
     | 
    
         
            +
            				<string>$(TARGET_NAME)</string>
         
     | 
| 
      
 234 
     | 
    
         
            +
            				<key>PUBLIC_HEADERS_FOLDER_PATH</key>
         
     | 
| 
      
 235 
     | 
    
         
            +
            				<string>$(TARGET_NAME)</string>
         
     | 
| 
      
 236 
     | 
    
         
            +
            				<key>SDKROOT</key>
         
     | 
| 
      
 237 
     | 
    
         
            +
            				<string>iphoneos</string>
         
     | 
| 
      
 238 
     | 
    
         
            +
            				<key>SKIP_INSTALL</key>
         
     | 
| 
      
 239 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 240 
     | 
    
         
            +
            			</dict>
         
     | 
| 
      
 241 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 242 
     | 
    
         
            +
            			<string>XCBuildConfiguration</string>
         
     | 
| 
      
 243 
     | 
    
         
            +
            			<key>name</key>
         
     | 
| 
      
 244 
     | 
    
         
            +
            			<string>Debug</string>
         
     | 
| 
      
 245 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 246 
     | 
    
         
            +
            		<key>3FFEC3EB424A4F72B7308B30</key>
         
     | 
| 
      
 247 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 248 
     | 
    
         
            +
            			<key>baseConfigurationReference</key>
         
     | 
| 
      
 249 
     | 
    
         
            +
            			<string>F0A394D949F245F9A1E66046</string>
         
     | 
| 
      
 250 
     | 
    
         
            +
            			<key>buildSettings</key>
         
     | 
| 
      
 251 
     | 
    
         
            +
            			<dict>
         
     | 
| 
      
 252 
     | 
    
         
            +
            				<key>ALWAYS_SEARCH_USER_PATHS</key>
         
     | 
| 
      
 253 
     | 
    
         
            +
            				<string>NO</string>
         
     | 
| 
      
 254 
     | 
    
         
            +
            				<key>COPY_PHASE_STRIP</key>
         
     | 
| 
      
 255 
     | 
    
         
            +
            				<string>NO</string>
         
     | 
| 
      
 256 
     | 
    
         
            +
            				<key>DSTROOT</key>
         
     | 
| 
      
 257 
     | 
    
         
            +
            				<string>/tmp/xcodeproj.dst</string>
         
     | 
| 
      
 258 
     | 
    
         
            +
            				<key>GCC_C_LANGUAGE_STANDARD</key>
         
     | 
| 
      
 259 
     | 
    
         
            +
            				<string>gnu99</string>
         
     | 
| 
      
 260 
     | 
    
         
            +
            				<key>GCC_DYNAMIC_NO_PIC</key>
         
     | 
| 
      
 261 
     | 
    
         
            +
            				<string>NO</string>
         
     | 
| 
      
 262 
     | 
    
         
            +
            				<key>GCC_OPTIMIZATION_LEVEL</key>
         
     | 
| 
      
 263 
     | 
    
         
            +
            				<string>0</string>
         
     | 
| 
      
 264 
     | 
    
         
            +
            				<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
         
     | 
| 
      
 265 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 266 
     | 
    
         
            +
            				<key>GCC_PREFIX_HEADER</key>
         
     | 
| 
      
 267 
     | 
    
         
            +
            				<string>Pods-Reachability-prefix.pch</string>
         
     | 
| 
      
 268 
     | 
    
         
            +
            				<key>GCC_PREPROCESSOR_DEFINITIONS</key>
         
     | 
| 
      
 269 
     | 
    
         
            +
            				<array>
         
     | 
| 
      
 270 
     | 
    
         
            +
            					<string>DEBUG=1</string>
         
     | 
| 
      
 271 
     | 
    
         
            +
            					<string>$(inherited)</string>
         
     | 
| 
      
 272 
     | 
    
         
            +
            				</array>
         
     | 
| 
      
 273 
     | 
    
         
            +
            				<key>GCC_SYMBOLS_PRIVATE_EXTERN</key>
         
     | 
| 
      
 274 
     | 
    
         
            +
            				<string>NO</string>
         
     | 
| 
      
 275 
     | 
    
         
            +
            				<key>GCC_VERSION</key>
         
     | 
| 
      
 276 
     | 
    
         
            +
            				<string>com.apple.compilers.llvm.clang.1_0</string>
         
     | 
| 
      
 277 
     | 
    
         
            +
            				<key>INSTALL_PATH</key>
         
     | 
| 
      
 278 
     | 
    
         
            +
            				<string>$(BUILT_PRODUCTS_DIR)</string>
         
     | 
| 
      
 279 
     | 
    
         
            +
            				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
         
     | 
| 
      
 280 
     | 
    
         
            +
            				<string>7.0</string>
         
     | 
| 
      
 281 
     | 
    
         
            +
            				<key>OTHER_LDFLAGS</key>
         
     | 
| 
      
 282 
     | 
    
         
            +
            				<string></string>
         
     | 
| 
      
 283 
     | 
    
         
            +
            				<key>PRODUCT_NAME</key>
         
     | 
| 
      
 284 
     | 
    
         
            +
            				<string>$(TARGET_NAME)</string>
         
     | 
| 
      
 285 
     | 
    
         
            +
            				<key>PUBLIC_HEADERS_FOLDER_PATH</key>
         
     | 
| 
      
 286 
     | 
    
         
            +
            				<string>$(TARGET_NAME)</string>
         
     | 
| 
      
 287 
     | 
    
         
            +
            				<key>SDKROOT</key>
         
     | 
| 
      
 288 
     | 
    
         
            +
            				<string>iphoneos</string>
         
     | 
| 
      
 289 
     | 
    
         
            +
            				<key>SKIP_INSTALL</key>
         
     | 
| 
      
 290 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 291 
     | 
    
         
            +
            			</dict>
         
     | 
| 
      
 292 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 293 
     | 
    
         
            +
            			<string>XCBuildConfiguration</string>
         
     | 
| 
      
 294 
     | 
    
         
            +
            			<key>name</key>
         
     | 
| 
      
 295 
     | 
    
         
            +
            			<string>Debug</string>
         
     | 
| 
      
 296 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 297 
     | 
    
         
            +
            		<key>40BE14C539CE429EB803B7C8</key>
         
     | 
| 
      
 298 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 299 
     | 
    
         
            +
            			<key>fileRef</key>
         
     | 
| 
      
 300 
     | 
    
         
            +
            			<string>0585689ABD5C46DEAADA23BB</string>
         
     | 
| 
      
 301 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 302 
     | 
    
         
            +
            			<string>PBXBuildFile</string>
         
     | 
| 
      
 303 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 304 
     | 
    
         
            +
            		<key>4782C711CD09439BAF1E1314</key>
         
     | 
| 
      
 305 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 306 
     | 
    
         
            +
            			<key>baseConfigurationReference</key>
         
     | 
| 
      
 307 
     | 
    
         
            +
            			<string>DC298ADD3DB847DDA332FB53</string>
         
     | 
| 
      
 308 
     | 
    
         
            +
            			<key>buildSettings</key>
         
     | 
| 
      
 309 
     | 
    
         
            +
            			<dict>
         
     | 
| 
      
 310 
     | 
    
         
            +
            				<key>ALWAYS_SEARCH_USER_PATHS</key>
         
     | 
| 
      
 311 
     | 
    
         
            +
            				<string>NO</string>
         
     | 
| 
      
 312 
     | 
    
         
            +
            				<key>COPY_PHASE_STRIP</key>
         
     | 
| 
      
 313 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 314 
     | 
    
         
            +
            				<key>DSTROOT</key>
         
     | 
| 
      
 315 
     | 
    
         
            +
            				<string>/tmp/xcodeproj.dst</string>
         
     | 
| 
      
 316 
     | 
    
         
            +
            				<key>GCC_C_LANGUAGE_STANDARD</key>
         
     | 
| 
      
 317 
     | 
    
         
            +
            				<string>gnu99</string>
         
     | 
| 
      
 318 
     | 
    
         
            +
            				<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
         
     | 
| 
      
 319 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 320 
     | 
    
         
            +
            				<key>GCC_VERSION</key>
         
     | 
| 
      
 321 
     | 
    
         
            +
            				<string>com.apple.compilers.llvm.clang.1_0</string>
         
     | 
| 
      
 322 
     | 
    
         
            +
            				<key>INSTALL_PATH</key>
         
     | 
| 
      
 323 
     | 
    
         
            +
            				<string>$(BUILT_PRODUCTS_DIR)</string>
         
     | 
| 
      
 324 
     | 
    
         
            +
            				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
         
     | 
| 
      
 325 
     | 
    
         
            +
            				<string>7.0</string>
         
     | 
| 
      
 326 
     | 
    
         
            +
            				<key>OTHER_CFLAGS</key>
         
     | 
| 
      
 327 
     | 
    
         
            +
            				<array>
         
     | 
| 
      
 328 
     | 
    
         
            +
            					<string>-DNS_BLOCK_ASSERTIONS=1</string>
         
     | 
| 
      
 329 
     | 
    
         
            +
            					<string>$(inherited)</string>
         
     | 
| 
      
 330 
     | 
    
         
            +
            				</array>
         
     | 
| 
      
 331 
     | 
    
         
            +
            				<key>OTHER_CPLUSPLUSFLAGS</key>
         
     | 
| 
      
 332 
     | 
    
         
            +
            				<array>
         
     | 
| 
      
 333 
     | 
    
         
            +
            					<string>-DNS_BLOCK_ASSERTIONS=1</string>
         
     | 
| 
      
 334 
     | 
    
         
            +
            					<string>$(inherited)</string>
         
     | 
| 
      
 335 
     | 
    
         
            +
            				</array>
         
     | 
| 
      
 336 
     | 
    
         
            +
            				<key>OTHER_LDFLAGS</key>
         
     | 
| 
      
 337 
     | 
    
         
            +
            				<string></string>
         
     | 
| 
      
 338 
     | 
    
         
            +
            				<key>PRODUCT_NAME</key>
         
     | 
| 
      
 339 
     | 
    
         
            +
            				<string>$(TARGET_NAME)</string>
         
     | 
| 
      
 340 
     | 
    
         
            +
            				<key>PUBLIC_HEADERS_FOLDER_PATH</key>
         
     | 
| 
      
 341 
     | 
    
         
            +
            				<string>$(TARGET_NAME)</string>
         
     | 
| 
      
 342 
     | 
    
         
            +
            				<key>SDKROOT</key>
         
     | 
| 
      
 343 
     | 
    
         
            +
            				<string>iphoneos</string>
         
     | 
| 
      
 344 
     | 
    
         
            +
            				<key>SKIP_INSTALL</key>
         
     | 
| 
      
 345 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 346 
     | 
    
         
            +
            				<key>VALIDATE_PRODUCT</key>
         
     | 
| 
      
 347 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 348 
     | 
    
         
            +
            			</dict>
         
     | 
| 
      
 349 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 350 
     | 
    
         
            +
            			<string>XCBuildConfiguration</string>
         
     | 
| 
      
 351 
     | 
    
         
            +
            			<key>name</key>
         
     | 
| 
      
 352 
     | 
    
         
            +
            			<string>Release</string>
         
     | 
| 
      
 353 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 354 
     | 
    
         
            +
            		<key>4E01EA9B7F87490884FD401E</key>
         
     | 
| 
      
 355 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 356 
     | 
    
         
            +
            			<key>includeInIndex</key>
         
     | 
| 
      
 357 
     | 
    
         
            +
            			<string>1</string>
         
     | 
| 
      
 358 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 359 
     | 
    
         
            +
            			<string>PBXFileReference</string>
         
     | 
| 
      
 360 
     | 
    
         
            +
            			<key>lastKnownFileType</key>
         
     | 
| 
      
 361 
     | 
    
         
            +
            			<string>sourcecode.c.objc</string>
         
     | 
| 
      
 362 
     | 
    
         
            +
            			<key>path</key>
         
     | 
| 
      
 363 
     | 
    
         
            +
            			<string>Pods-dummy.m</string>
         
     | 
| 
      
 364 
     | 
    
         
            +
            			<key>sourceTree</key>
         
     | 
| 
      
 365 
     | 
    
         
            +
            			<string><group></string>
         
     | 
| 
      
 366 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 367 
     | 
    
         
            +
            		<key>5C0E7D9038B74D4FB2E60BA7</key>
         
     | 
| 
      
 368 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 369 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 370 
     | 
    
         
            +
            			<string>PBXFileReference</string>
         
     | 
| 
      
 371 
     | 
    
         
            +
            			<key>lastKnownFileType</key>
         
     | 
| 
      
 372 
     | 
    
         
            +
            			<string>wrapper.framework</string>
         
     | 
| 
      
 373 
     | 
    
         
            +
            			<key>name</key>
         
     | 
| 
      
 374 
     | 
    
         
            +
            			<string>SystemConfiguration.framework</string>
         
     | 
| 
      
 375 
     | 
    
         
            +
            			<key>path</key>
         
     | 
| 
      
 376 
     | 
    
         
            +
            			<string>Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk/System/Library/Frameworks/SystemConfiguration.framework</string>
         
     | 
| 
      
 377 
     | 
    
         
            +
            			<key>sourceTree</key>
         
     | 
| 
      
 378 
     | 
    
         
            +
            			<string>DEVELOPER_DIR</string>
         
     | 
| 
      
 379 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 380 
     | 
    
         
            +
            		<key>5EE448053E1F46999141C2F3</key>
         
     | 
| 
      
 381 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 382 
     | 
    
         
            +
            			<key>includeInIndex</key>
         
     | 
| 
      
 383 
     | 
    
         
            +
            			<string>1</string>
         
     | 
| 
      
 384 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 385 
     | 
    
         
            +
            			<string>PBXFileReference</string>
         
     | 
| 
      
 386 
     | 
    
         
            +
            			<key>lastKnownFileType</key>
         
     | 
| 
      
 387 
     | 
    
         
            +
            			<string>sourcecode.c.objc</string>
         
     | 
| 
      
 388 
     | 
    
         
            +
            			<key>path</key>
         
     | 
| 
      
 389 
     | 
    
         
            +
            			<string>Pods-Reachability-dummy.m</string>
         
     | 
| 
      
 390 
     | 
    
         
            +
            			<key>sourceTree</key>
         
     | 
| 
      
 391 
     | 
    
         
            +
            			<string><group></string>
         
     | 
| 
      
 392 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 393 
     | 
    
         
            +
            		<key>61AA497112AB470188650A9A</key>
         
     | 
| 
      
 394 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 395 
     | 
    
         
            +
            			<key>buildActionMask</key>
         
     | 
| 
      
 396 
     | 
    
         
            +
            			<string>2147483647</string>
         
     | 
| 
      
 397 
     | 
    
         
            +
            			<key>files</key>
         
     | 
| 
      
 398 
     | 
    
         
            +
            			<array>
         
     | 
| 
      
 399 
     | 
    
         
            +
            				<string>BD459316EE774A77AA3DB8CE</string>
         
     | 
| 
      
 400 
     | 
    
         
            +
            				<string>40BE14C539CE429EB803B7C8</string>
         
     | 
| 
      
 401 
     | 
    
         
            +
            			</array>
         
     | 
| 
      
 402 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 403 
     | 
    
         
            +
            			<string>PBXFrameworksBuildPhase</string>
         
     | 
| 
      
 404 
     | 
    
         
            +
            			<key>runOnlyForDeploymentPostprocessing</key>
         
     | 
| 
      
 405 
     | 
    
         
            +
            			<string>0</string>
         
     | 
| 
      
 406 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 407 
     | 
    
         
            +
            		<key>622603AE487441A0959FED5F</key>
         
     | 
| 
      
 408 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 409 
     | 
    
         
            +
            			<key>includeInIndex</key>
         
     | 
| 
      
 410 
     | 
    
         
            +
            			<string>1</string>
         
     | 
| 
      
 411 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 412 
     | 
    
         
            +
            			<string>PBXFileReference</string>
         
     | 
| 
      
 413 
     | 
    
         
            +
            			<key>lastKnownFileType</key>
         
     | 
| 
      
 414 
     | 
    
         
            +
            			<string>sourcecode.c.h</string>
         
     | 
| 
      
 415 
     | 
    
         
            +
            			<key>path</key>
         
     | 
| 
      
 416 
     | 
    
         
            +
            			<string>Reachability.h</string>
         
     | 
| 
      
 417 
     | 
    
         
            +
            			<key>sourceTree</key>
         
     | 
| 
      
 418 
     | 
    
         
            +
            			<string><group></string>
         
     | 
| 
      
 419 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 420 
     | 
    
         
            +
            		<key>63098EE1F60B452F81AAAD6F</key>
         
     | 
| 
      
 421 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 422 
     | 
    
         
            +
            			<key>children</key>
         
     | 
| 
      
 423 
     | 
    
         
            +
            			<array>
         
     | 
| 
      
 424 
     | 
    
         
            +
            				<string>DC298ADD3DB847DDA332FB53</string>
         
     | 
| 
      
 425 
     | 
    
         
            +
            				<string>C0AFD941B51B414E88755262</string>
         
     | 
| 
      
 426 
     | 
    
         
            +
            				<string>9E27BC4AA1C14CABA0146FD5</string>
         
     | 
| 
      
 427 
     | 
    
         
            +
            				<string>4E01EA9B7F87490884FD401E</string>
         
     | 
| 
      
 428 
     | 
    
         
            +
            				<string>725E30CFBB2D451C9B86A05C</string>
         
     | 
| 
      
 429 
     | 
    
         
            +
            				<string>08AB698FA08D4E5DA92CEC06</string>
         
     | 
| 
      
 430 
     | 
    
         
            +
            			</array>
         
     | 
| 
      
 431 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 432 
     | 
    
         
            +
            			<string>PBXGroup</string>
         
     | 
| 
      
 433 
     | 
    
         
            +
            			<key>name</key>
         
     | 
| 
      
 434 
     | 
    
         
            +
            			<string>Pods</string>
         
     | 
| 
      
 435 
     | 
    
         
            +
            			<key>sourceTree</key>
         
     | 
| 
      
 436 
     | 
    
         
            +
            			<string><group></string>
         
     | 
| 
      
 437 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 438 
     | 
    
         
            +
            		<key>6364B278B3E9412694AE341C</key>
         
     | 
| 
      
 439 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 440 
     | 
    
         
            +
            			<key>children</key>
         
     | 
| 
      
 441 
     | 
    
         
            +
            			<array>
         
     | 
| 
      
 442 
     | 
    
         
            +
            				<string>2158CC76EE4C4BB8B5E0AFBA</string>
         
     | 
| 
      
 443 
     | 
    
         
            +
            				<string>F0A394D949F245F9A1E66046</string>
         
     | 
| 
      
 444 
     | 
    
         
            +
            				<string>5EE448053E1F46999141C2F3</string>
         
     | 
| 
      
 445 
     | 
    
         
            +
            				<string>2DB3540E541E4999AB564A41</string>
         
     | 
| 
      
 446 
     | 
    
         
            +
            			</array>
         
     | 
| 
      
 447 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 448 
     | 
    
         
            +
            			<string>PBXGroup</string>
         
     | 
| 
      
 449 
     | 
    
         
            +
            			<key>name</key>
         
     | 
| 
      
 450 
     | 
    
         
            +
            			<string>Support Files</string>
         
     | 
| 
      
 451 
     | 
    
         
            +
            			<key>sourceTree</key>
         
     | 
| 
      
 452 
     | 
    
         
            +
            			<string>SOURCE_ROOT</string>
         
     | 
| 
      
 453 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 454 
     | 
    
         
            +
            		<key>64E59085D29A474A97C819B8</key>
         
     | 
| 
      
 455 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 456 
     | 
    
         
            +
            			<key>buildConfigurations</key>
         
     | 
| 
      
 457 
     | 
    
         
            +
            			<array>
         
     | 
| 
      
 458 
     | 
    
         
            +
            				<string>366AA7640C7241CE831D23A1</string>
         
     | 
| 
      
 459 
     | 
    
         
            +
            				<string>4782C711CD09439BAF1E1314</string>
         
     | 
| 
      
 460 
     | 
    
         
            +
            			</array>
         
     | 
| 
      
 461 
     | 
    
         
            +
            			<key>defaultConfigurationIsVisible</key>
         
     | 
| 
      
 462 
     | 
    
         
            +
            			<string>0</string>
         
     | 
| 
      
 463 
     | 
    
         
            +
            			<key>defaultConfigurationName</key>
         
     | 
| 
      
 464 
     | 
    
         
            +
            			<string>Release</string>
         
     | 
| 
      
 465 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 466 
     | 
    
         
            +
            			<string>XCConfigurationList</string>
         
     | 
| 
      
 467 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 468 
     | 
    
         
            +
            		<key>6DCD896FE00543D29ECC7BD7</key>
         
     | 
| 
      
 469 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 470 
     | 
    
         
            +
            			<key>children</key>
         
     | 
| 
      
 471 
     | 
    
         
            +
            			<array>
         
     | 
| 
      
 472 
     | 
    
         
            +
            				<string>622603AE487441A0959FED5F</string>
         
     | 
| 
      
 473 
     | 
    
         
            +
            				<string>A1D9B6DD4DFD496F9D7EB669</string>
         
     | 
| 
      
 474 
     | 
    
         
            +
            				<string>6364B278B3E9412694AE341C</string>
         
     | 
| 
      
 475 
     | 
    
         
            +
            			</array>
         
     | 
| 
      
 476 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 477 
     | 
    
         
            +
            			<string>PBXGroup</string>
         
     | 
| 
      
 478 
     | 
    
         
            +
            			<key>name</key>
         
     | 
| 
      
 479 
     | 
    
         
            +
            			<string>Reachability</string>
         
     | 
| 
      
 480 
     | 
    
         
            +
            			<key>path</key>
         
     | 
| 
      
 481 
     | 
    
         
            +
            			<string>Reachability</string>
         
     | 
| 
      
 482 
     | 
    
         
            +
            			<key>sourceTree</key>
         
     | 
| 
      
 483 
     | 
    
         
            +
            			<string><group></string>
         
     | 
| 
      
 484 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 485 
     | 
    
         
            +
            		<key>70272050943F42F5BCF99576</key>
         
     | 
| 
      
 486 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 487 
     | 
    
         
            +
            			<key>fileRef</key>
         
     | 
| 
      
 488 
     | 
    
         
            +
            			<string>622603AE487441A0959FED5F</string>
         
     | 
| 
      
 489 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 490 
     | 
    
         
            +
            			<string>PBXBuildFile</string>
         
     | 
| 
      
 491 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 492 
     | 
    
         
            +
            		<key>725E30CFBB2D451C9B86A05C</key>
         
     | 
| 
      
 493 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 494 
     | 
    
         
            +
            			<key>includeInIndex</key>
         
     | 
| 
      
 495 
     | 
    
         
            +
            			<string>1</string>
         
     | 
| 
      
 496 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 497 
     | 
    
         
            +
            			<string>PBXFileReference</string>
         
     | 
| 
      
 498 
     | 
    
         
            +
            			<key>lastKnownFileType</key>
         
     | 
| 
      
 499 
     | 
    
         
            +
            			<string>sourcecode.c.h</string>
         
     | 
| 
      
 500 
     | 
    
         
            +
            			<key>path</key>
         
     | 
| 
      
 501 
     | 
    
         
            +
            			<string>Pods-environment.h</string>
         
     | 
| 
      
 502 
     | 
    
         
            +
            			<key>sourceTree</key>
         
     | 
| 
      
 503 
     | 
    
         
            +
            			<string><group></string>
         
     | 
| 
      
 504 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 505 
     | 
    
         
            +
            		<key>78C7C5CE4DCB44D4839B2327</key>
         
     | 
| 
      
 506 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 507 
     | 
    
         
            +
            			<key>fileRef</key>
         
     | 
| 
      
 508 
     | 
    
         
            +
            			<string>5EE448053E1F46999141C2F3</string>
         
     | 
| 
      
 509 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 510 
     | 
    
         
            +
            			<string>PBXBuildFile</string>
         
     | 
| 
      
 511 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 512 
     | 
    
         
            +
            		<key>7B71B352F5584DE397445BD0</key>
         
     | 
| 
      
 513 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 514 
     | 
    
         
            +
            			<key>children</key>
         
     | 
| 
      
 515 
     | 
    
         
            +
            			<array>
         
     | 
| 
      
 516 
     | 
    
         
            +
            				<string>2D602727FC7249B690E7CBC3</string>
         
     | 
| 
      
 517 
     | 
    
         
            +
            				<string>5C0E7D9038B74D4FB2E60BA7</string>
         
     | 
| 
      
 518 
     | 
    
         
            +
            			</array>
         
     | 
| 
      
 519 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 520 
     | 
    
         
            +
            			<string>PBXGroup</string>
         
     | 
| 
      
 521 
     | 
    
         
            +
            			<key>name</key>
         
     | 
| 
      
 522 
     | 
    
         
            +
            			<string>iOS</string>
         
     | 
| 
      
 523 
     | 
    
         
            +
            			<key>sourceTree</key>
         
     | 
| 
      
 524 
     | 
    
         
            +
            			<string><group></string>
         
     | 
| 
      
 525 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 526 
     | 
    
         
            +
            		<key>7B9DB3DA11EB4F4E99335232</key>
         
     | 
| 
      
 527 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 528 
     | 
    
         
            +
            			<key>children</key>
         
     | 
| 
      
 529 
     | 
    
         
            +
            			<array>
         
     | 
| 
      
 530 
     | 
    
         
            +
            				<string>63098EE1F60B452F81AAAD6F</string>
         
     | 
| 
      
 531 
     | 
    
         
            +
            			</array>
         
     | 
| 
      
 532 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 533 
     | 
    
         
            +
            			<string>PBXGroup</string>
         
     | 
| 
      
 534 
     | 
    
         
            +
            			<key>name</key>
         
     | 
| 
      
 535 
     | 
    
         
            +
            			<string>Targets Support Files</string>
         
     | 
| 
      
 536 
     | 
    
         
            +
            			<key>sourceTree</key>
         
     | 
| 
      
 537 
     | 
    
         
            +
            			<string><group></string>
         
     | 
| 
      
 538 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 539 
     | 
    
         
            +
            		<key>7F578E10FA52483CAAF991EE</key>
         
     | 
| 
      
 540 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 541 
     | 
    
         
            +
            			<key>buildSettings</key>
         
     | 
| 
      
 542 
     | 
    
         
            +
            			<dict>
         
     | 
| 
      
 543 
     | 
    
         
            +
            				<key>ALWAYS_SEARCH_USER_PATHS</key>
         
     | 
| 
      
 544 
     | 
    
         
            +
            				<string>NO</string>
         
     | 
| 
      
 545 
     | 
    
         
            +
            				<key>CLANG_CXX_LANGUAGE_STANDARD</key>
         
     | 
| 
      
 546 
     | 
    
         
            +
            				<string>gnu++0x</string>
         
     | 
| 
      
 547 
     | 
    
         
            +
            				<key>CLANG_CXX_LIBRARY</key>
         
     | 
| 
      
 548 
     | 
    
         
            +
            				<string>libc++</string>
         
     | 
| 
      
 549 
     | 
    
         
            +
            				<key>CLANG_ENABLE_MODULES</key>
         
     | 
| 
      
 550 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 551 
     | 
    
         
            +
            				<key>CLANG_ENABLE_OBJC_ARC</key>
         
     | 
| 
      
 552 
     | 
    
         
            +
            				<string>NO</string>
         
     | 
| 
      
 553 
     | 
    
         
            +
            				<key>CLANG_WARN_BOOL_CONVERSION</key>
         
     | 
| 
      
 554 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 555 
     | 
    
         
            +
            				<key>CLANG_WARN_CONSTANT_CONVERSION</key>
         
     | 
| 
      
 556 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 557 
     | 
    
         
            +
            				<key>CLANG_WARN_DIRECT_OBJC_ISA_USAGE</key>
         
     | 
| 
      
 558 
     | 
    
         
            +
            				<string>YES_ERROR</string>
         
     | 
| 
      
 559 
     | 
    
         
            +
            				<key>CLANG_WARN_EMPTY_BODY</key>
         
     | 
| 
      
 560 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 561 
     | 
    
         
            +
            				<key>CLANG_WARN_ENUM_CONVERSION</key>
         
     | 
| 
      
 562 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 563 
     | 
    
         
            +
            				<key>CLANG_WARN_INT_CONVERSION</key>
         
     | 
| 
      
 564 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 565 
     | 
    
         
            +
            				<key>CLANG_WARN_OBJC_ROOT_CLASS</key>
         
     | 
| 
      
 566 
     | 
    
         
            +
            				<string>YES_ERROR</string>
         
     | 
| 
      
 567 
     | 
    
         
            +
            				<key>COPY_PHASE_STRIP</key>
         
     | 
| 
      
 568 
     | 
    
         
            +
            				<string>NO</string>
         
     | 
| 
      
 569 
     | 
    
         
            +
            				<key>ENABLE_NS_ASSERTIONS</key>
         
     | 
| 
      
 570 
     | 
    
         
            +
            				<string>NO</string>
         
     | 
| 
      
 571 
     | 
    
         
            +
            				<key>GCC_C_LANGUAGE_STANDARD</key>
         
     | 
| 
      
 572 
     | 
    
         
            +
            				<string>gnu99</string>
         
     | 
| 
      
 573 
     | 
    
         
            +
            				<key>GCC_WARN_64_TO_32_BIT_CONVERSION</key>
         
     | 
| 
      
 574 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 575 
     | 
    
         
            +
            				<key>GCC_WARN_ABOUT_RETURN_TYPE</key>
         
     | 
| 
      
 576 
     | 
    
         
            +
            				<string>YES_ERROR</string>
         
     | 
| 
      
 577 
     | 
    
         
            +
            				<key>GCC_WARN_UNDECLARED_SELECTOR</key>
         
     | 
| 
      
 578 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 579 
     | 
    
         
            +
            				<key>GCC_WARN_UNINITIALIZED_AUTOS</key>
         
     | 
| 
      
 580 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 581 
     | 
    
         
            +
            				<key>GCC_WARN_UNUSED_FUNCTION</key>
         
     | 
| 
      
 582 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 583 
     | 
    
         
            +
            				<key>GCC_WARN_UNUSED_VARIABLE</key>
         
     | 
| 
      
 584 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 585 
     | 
    
         
            +
            				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
         
     | 
| 
      
 586 
     | 
    
         
            +
            				<string>7.0</string>
         
     | 
| 
      
 587 
     | 
    
         
            +
            				<key>STRIP_INSTALLED_PRODUCT</key>
         
     | 
| 
      
 588 
     | 
    
         
            +
            				<string>NO</string>
         
     | 
| 
      
 589 
     | 
    
         
            +
            				<key>VALIDATE_PRODUCT</key>
         
     | 
| 
      
 590 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 591 
     | 
    
         
            +
            			</dict>
         
     | 
| 
      
 592 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 593 
     | 
    
         
            +
            			<string>XCBuildConfiguration</string>
         
     | 
| 
      
 594 
     | 
    
         
            +
            			<key>name</key>
         
     | 
| 
      
 595 
     | 
    
         
            +
            			<string>Release</string>
         
     | 
| 
      
 596 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 597 
     | 
    
         
            +
            		<key>80B0843CFC2849B2806FF69A</key>
         
     | 
| 
      
 598 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 599 
     | 
    
         
            +
            			<key>fileRef</key>
         
     | 
| 
      
 600 
     | 
    
         
            +
            			<string>A1D9B6DD4DFD496F9D7EB669</string>
         
     | 
| 
      
 601 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 602 
     | 
    
         
            +
            			<string>PBXBuildFile</string>
         
     | 
| 
      
 603 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 604 
     | 
    
         
            +
            		<key>86C8C73F659A4030959DF679</key>
         
     | 
| 
      
 605 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 606 
     | 
    
         
            +
            			<key>buildConfigurations</key>
         
     | 
| 
      
 607 
     | 
    
         
            +
            			<array>
         
     | 
| 
      
 608 
     | 
    
         
            +
            				<string>1314434AED6C43339179AC2F</string>
         
     | 
| 
      
 609 
     | 
    
         
            +
            				<string>7F578E10FA52483CAAF991EE</string>
         
     | 
| 
      
 610 
     | 
    
         
            +
            			</array>
         
     | 
| 
      
 611 
     | 
    
         
            +
            			<key>defaultConfigurationIsVisible</key>
         
     | 
| 
      
 612 
     | 
    
         
            +
            			<string>0</string>
         
     | 
| 
      
 613 
     | 
    
         
            +
            			<key>defaultConfigurationName</key>
         
     | 
| 
      
 614 
     | 
    
         
            +
            			<string>Release</string>
         
     | 
| 
      
 615 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 616 
     | 
    
         
            +
            			<string>XCConfigurationList</string>
         
     | 
| 
      
 617 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 618 
     | 
    
         
            +
            		<key>94B567CF321C4A01A756F3FB</key>
         
     | 
| 
      
 619 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 620 
     | 
    
         
            +
            			<key>children</key>
         
     | 
| 
      
 621 
     | 
    
         
            +
            			<array>
         
     | 
| 
      
 622 
     | 
    
         
            +
            				<string>EB771EED6EBE4B11B3B5E016</string>
         
     | 
| 
      
 623 
     | 
    
         
            +
            				<string>0585689ABD5C46DEAADA23BB</string>
         
     | 
| 
      
 624 
     | 
    
         
            +
            			</array>
         
     | 
| 
      
 625 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 626 
     | 
    
         
            +
            			<string>PBXGroup</string>
         
     | 
| 
      
 627 
     | 
    
         
            +
            			<key>name</key>
         
     | 
| 
      
 628 
     | 
    
         
            +
            			<string>Products</string>
         
     | 
| 
      
 629 
     | 
    
         
            +
            			<key>sourceTree</key>
         
     | 
| 
      
 630 
     | 
    
         
            +
            			<string><group></string>
         
     | 
| 
      
 631 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 632 
     | 
    
         
            +
            		<key>99963A8ACF0342FE97BDDEE3</key>
         
     | 
| 
      
 633 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 634 
     | 
    
         
            +
            			<key>buildActionMask</key>
         
     | 
| 
      
 635 
     | 
    
         
            +
            			<string>2147483647</string>
         
     | 
| 
      
 636 
     | 
    
         
            +
            			<key>files</key>
         
     | 
| 
      
 637 
     | 
    
         
            +
            			<array>
         
     | 
| 
      
 638 
     | 
    
         
            +
            				<string>B7007E6DDB87447D85F1C834</string>
         
     | 
| 
      
 639 
     | 
    
         
            +
            			</array>
         
     | 
| 
      
 640 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 641 
     | 
    
         
            +
            			<string>PBXSourcesBuildPhase</string>
         
     | 
| 
      
 642 
     | 
    
         
            +
            			<key>runOnlyForDeploymentPostprocessing</key>
         
     | 
| 
      
 643 
     | 
    
         
            +
            			<string>0</string>
         
     | 
| 
      
 644 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 645 
     | 
    
         
            +
            		<key>9C69C9950335432380DE906C</key>
         
     | 
| 
      
 646 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 647 
     | 
    
         
            +
            			<key>buildConfigurations</key>
         
     | 
| 
      
 648 
     | 
    
         
            +
            			<array>
         
     | 
| 
      
 649 
     | 
    
         
            +
            				<string>3FFEC3EB424A4F72B7308B30</string>
         
     | 
| 
      
 650 
     | 
    
         
            +
            				<string>E56C99B6FD854CA39D3D3A60</string>
         
     | 
| 
      
 651 
     | 
    
         
            +
            			</array>
         
     | 
| 
      
 652 
     | 
    
         
            +
            			<key>defaultConfigurationIsVisible</key>
         
     | 
| 
      
 653 
     | 
    
         
            +
            			<string>0</string>
         
     | 
| 
      
 654 
     | 
    
         
            +
            			<key>defaultConfigurationName</key>
         
     | 
| 
      
 655 
     | 
    
         
            +
            			<string>Release</string>
         
     | 
| 
      
 656 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 657 
     | 
    
         
            +
            			<string>XCConfigurationList</string>
         
     | 
| 
      
 658 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 659 
     | 
    
         
            +
            		<key>9E27BC4AA1C14CABA0146FD5</key>
         
     | 
| 
      
 660 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 661 
     | 
    
         
            +
            			<key>includeInIndex</key>
         
     | 
| 
      
 662 
     | 
    
         
            +
            			<string>1</string>
         
     | 
| 
      
 663 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 664 
     | 
    
         
            +
            			<string>PBXFileReference</string>
         
     | 
| 
      
 665 
     | 
    
         
            +
            			<key>lastKnownFileType</key>
         
     | 
| 
      
 666 
     | 
    
         
            +
            			<string>text.plist.xml</string>
         
     | 
| 
      
 667 
     | 
    
         
            +
            			<key>path</key>
         
     | 
| 
      
 668 
     | 
    
         
            +
            			<string>Pods-acknowledgements.plist</string>
         
     | 
| 
      
 669 
     | 
    
         
            +
            			<key>sourceTree</key>
         
     | 
| 
      
 670 
     | 
    
         
            +
            			<string><group></string>
         
     | 
| 
      
 671 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 672 
     | 
    
         
            +
            		<key>A1D9B6DD4DFD496F9D7EB669</key>
         
     | 
| 
      
 673 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 674 
     | 
    
         
            +
            			<key>includeInIndex</key>
         
     | 
| 
      
 675 
     | 
    
         
            +
            			<string>1</string>
         
     | 
| 
      
 676 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 677 
     | 
    
         
            +
            			<string>PBXFileReference</string>
         
     | 
| 
      
 678 
     | 
    
         
            +
            			<key>lastKnownFileType</key>
         
     | 
| 
      
 679 
     | 
    
         
            +
            			<string>sourcecode.c.objc</string>
         
     | 
| 
      
 680 
     | 
    
         
            +
            			<key>path</key>
         
     | 
| 
      
 681 
     | 
    
         
            +
            			<string>Reachability.m</string>
         
     | 
| 
      
 682 
     | 
    
         
            +
            			<key>sourceTree</key>
         
     | 
| 
      
 683 
     | 
    
         
            +
            			<string><group></string>
         
     | 
| 
      
 684 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 685 
     | 
    
         
            +
            		<key>B7007E6DDB87447D85F1C834</key>
         
     | 
| 
      
 686 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 687 
     | 
    
         
            +
            			<key>fileRef</key>
         
     | 
| 
      
 688 
     | 
    
         
            +
            			<string>4E01EA9B7F87490884FD401E</string>
         
     | 
| 
      
 689 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 690 
     | 
    
         
            +
            			<string>PBXBuildFile</string>
         
     | 
| 
      
 691 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 692 
     | 
    
         
            +
            		<key>BA18369DAC4149629E514100</key>
         
     | 
| 
      
 693 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 694 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 695 
     | 
    
         
            +
            			<string>PBXTargetDependency</string>
         
     | 
| 
      
 696 
     | 
    
         
            +
            			<key>target</key>
         
     | 
| 
      
 697 
     | 
    
         
            +
            			<string>C9BFAE48CD614704B2368B7C</string>
         
     | 
| 
      
 698 
     | 
    
         
            +
            			<key>targetProxy</key>
         
     | 
| 
      
 699 
     | 
    
         
            +
            			<string>23871A3FED954BB49189F612</string>
         
     | 
| 
      
 700 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 701 
     | 
    
         
            +
            		<key>BD459316EE774A77AA3DB8CE</key>
         
     | 
| 
      
 702 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 703 
     | 
    
         
            +
            			<key>fileRef</key>
         
     | 
| 
      
 704 
     | 
    
         
            +
            			<string>2D602727FC7249B690E7CBC3</string>
         
     | 
| 
      
 705 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 706 
     | 
    
         
            +
            			<string>PBXBuildFile</string>
         
     | 
| 
      
 707 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 708 
     | 
    
         
            +
            		<key>BD5D7B6CFD1142579918C190</key>
         
     | 
| 
      
 709 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 710 
     | 
    
         
            +
            			<key>children</key>
         
     | 
| 
      
 711 
     | 
    
         
            +
            			<array>
         
     | 
| 
      
 712 
     | 
    
         
            +
            				<string>2B67A24239D44AA6B732162E</string>
         
     | 
| 
      
 713 
     | 
    
         
            +
            				<string>E832C137560444869B2B8151</string>
         
     | 
| 
      
 714 
     | 
    
         
            +
            				<string>94B567CF321C4A01A756F3FB</string>
         
     | 
| 
      
 715 
     | 
    
         
            +
            				<string>7B9DB3DA11EB4F4E99335232</string>
         
     | 
| 
      
 716 
     | 
    
         
            +
            			</array>
         
     | 
| 
      
 717 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 718 
     | 
    
         
            +
            			<string>PBXGroup</string>
         
     | 
| 
      
 719 
     | 
    
         
            +
            			<key>sourceTree</key>
         
     | 
| 
      
 720 
     | 
    
         
            +
            			<string><group></string>
         
     | 
| 
      
 721 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 722 
     | 
    
         
            +
            		<key>C0AFD941B51B414E88755262</key>
         
     | 
| 
      
 723 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 724 
     | 
    
         
            +
            			<key>includeInIndex</key>
         
     | 
| 
      
 725 
     | 
    
         
            +
            			<string>1</string>
         
     | 
| 
      
 726 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 727 
     | 
    
         
            +
            			<string>PBXFileReference</string>
         
     | 
| 
      
 728 
     | 
    
         
            +
            			<key>lastKnownFileType</key>
         
     | 
| 
      
 729 
     | 
    
         
            +
            			<string>text</string>
         
     | 
| 
      
 730 
     | 
    
         
            +
            			<key>path</key>
         
     | 
| 
      
 731 
     | 
    
         
            +
            			<string>Pods-acknowledgements.markdown</string>
         
     | 
| 
      
 732 
     | 
    
         
            +
            			<key>sourceTree</key>
         
     | 
| 
      
 733 
     | 
    
         
            +
            			<string><group></string>
         
     | 
| 
      
 734 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 735 
     | 
    
         
            +
            		<key>C9BFAE48CD614704B2368B7C</key>
         
     | 
| 
      
 736 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 737 
     | 
    
         
            +
            			<key>buildConfigurationList</key>
         
     | 
| 
      
 738 
     | 
    
         
            +
            			<string>9C69C9950335432380DE906C</string>
         
     | 
| 
      
 739 
     | 
    
         
            +
            			<key>buildPhases</key>
         
     | 
| 
      
 740 
     | 
    
         
            +
            			<array>
         
     | 
| 
      
 741 
     | 
    
         
            +
            				<string>F8017AB7A3B147C9B47429AE</string>
         
     | 
| 
      
 742 
     | 
    
         
            +
            				<string>DA48933C0D9A4FBABCC477F3</string>
         
     | 
| 
      
 743 
     | 
    
         
            +
            				<string>DA6B4A370E01420DAA429A9B</string>
         
     | 
| 
      
 744 
     | 
    
         
            +
            			</array>
         
     | 
| 
      
 745 
     | 
    
         
            +
            			<key>buildRules</key>
         
     | 
| 
      
 746 
     | 
    
         
            +
            			<array/>
         
     | 
| 
      
 747 
     | 
    
         
            +
            			<key>dependencies</key>
         
     | 
| 
      
 748 
     | 
    
         
            +
            			<array/>
         
     | 
| 
      
 749 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 750 
     | 
    
         
            +
            			<string>PBXNativeTarget</string>
         
     | 
| 
      
 751 
     | 
    
         
            +
            			<key>name</key>
         
     | 
| 
      
 752 
     | 
    
         
            +
            			<string>Pods-Reachability</string>
         
     | 
| 
      
 753 
     | 
    
         
            +
            			<key>productName</key>
         
     | 
| 
      
 754 
     | 
    
         
            +
            			<string>Pods-Reachability</string>
         
     | 
| 
      
 755 
     | 
    
         
            +
            			<key>productReference</key>
         
     | 
| 
      
 756 
     | 
    
         
            +
            			<string>0585689ABD5C46DEAADA23BB</string>
         
     | 
| 
      
 757 
     | 
    
         
            +
            			<key>productType</key>
         
     | 
| 
      
 758 
     | 
    
         
            +
            			<string>com.apple.product-type.library.static</string>
         
     | 
| 
      
 759 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 760 
     | 
    
         
            +
            		<key>D07C2AA7CDE5473791D8DAC1</key>
         
     | 
| 
      
 761 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 762 
     | 
    
         
            +
            			<key>attributes</key>
         
     | 
| 
      
 763 
     | 
    
         
            +
            			<dict>
         
     | 
| 
      
 764 
     | 
    
         
            +
            				<key>LastUpgradeCheck</key>
         
     | 
| 
      
 765 
     | 
    
         
            +
            				<string>0500</string>
         
     | 
| 
      
 766 
     | 
    
         
            +
            			</dict>
         
     | 
| 
      
 767 
     | 
    
         
            +
            			<key>buildConfigurationList</key>
         
     | 
| 
      
 768 
     | 
    
         
            +
            			<string>86C8C73F659A4030959DF679</string>
         
     | 
| 
      
 769 
     | 
    
         
            +
            			<key>compatibilityVersion</key>
         
     | 
| 
      
 770 
     | 
    
         
            +
            			<string>Xcode 3.2</string>
         
     | 
| 
      
 771 
     | 
    
         
            +
            			<key>developmentRegion</key>
         
     | 
| 
      
 772 
     | 
    
         
            +
            			<string>English</string>
         
     | 
| 
      
 773 
     | 
    
         
            +
            			<key>hasScannedForEncodings</key>
         
     | 
| 
      
 774 
     | 
    
         
            +
            			<string>0</string>
         
     | 
| 
      
 775 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 776 
     | 
    
         
            +
            			<string>PBXProject</string>
         
     | 
| 
      
 777 
     | 
    
         
            +
            			<key>knownRegions</key>
         
     | 
| 
      
 778 
     | 
    
         
            +
            			<array>
         
     | 
| 
      
 779 
     | 
    
         
            +
            				<string>en</string>
         
     | 
| 
      
 780 
     | 
    
         
            +
            			</array>
         
     | 
| 
      
 781 
     | 
    
         
            +
            			<key>mainGroup</key>
         
     | 
| 
      
 782 
     | 
    
         
            +
            			<string>BD5D7B6CFD1142579918C190</string>
         
     | 
| 
      
 783 
     | 
    
         
            +
            			<key>productRefGroup</key>
         
     | 
| 
      
 784 
     | 
    
         
            +
            			<string>94B567CF321C4A01A756F3FB</string>
         
     | 
| 
      
 785 
     | 
    
         
            +
            			<key>projectDirPath</key>
         
     | 
| 
      
 786 
     | 
    
         
            +
            			<string></string>
         
     | 
| 
      
 787 
     | 
    
         
            +
            			<key>projectReferences</key>
         
     | 
| 
      
 788 
     | 
    
         
            +
            			<array/>
         
     | 
| 
      
 789 
     | 
    
         
            +
            			<key>projectRoot</key>
         
     | 
| 
      
 790 
     | 
    
         
            +
            			<string></string>
         
     | 
| 
      
 791 
     | 
    
         
            +
            			<key>targets</key>
         
     | 
| 
      
 792 
     | 
    
         
            +
            			<array>
         
     | 
| 
      
 793 
     | 
    
         
            +
            				<string>0124EC28896A46DEA29298AF</string>
         
     | 
| 
      
 794 
     | 
    
         
            +
            				<string>C9BFAE48CD614704B2368B7C</string>
         
     | 
| 
      
 795 
     | 
    
         
            +
            			</array>
         
     | 
| 
      
 796 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 797 
     | 
    
         
            +
            		<key>D21F9A154BB041918A255B11</key>
         
     | 
| 
      
 798 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 799 
     | 
    
         
            +
            			<key>fileRef</key>
         
     | 
| 
      
 800 
     | 
    
         
            +
            			<string>5C0E7D9038B74D4FB2E60BA7</string>
         
     | 
| 
      
 801 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 802 
     | 
    
         
            +
            			<string>PBXBuildFile</string>
         
     | 
| 
      
 803 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 804 
     | 
    
         
            +
            		<key>DA48933C0D9A4FBABCC477F3</key>
         
     | 
| 
      
 805 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 806 
     | 
    
         
            +
            			<key>buildActionMask</key>
         
     | 
| 
      
 807 
     | 
    
         
            +
            			<string>2147483647</string>
         
     | 
| 
      
 808 
     | 
    
         
            +
            			<key>files</key>
         
     | 
| 
      
 809 
     | 
    
         
            +
            			<array>
         
     | 
| 
      
 810 
     | 
    
         
            +
            				<string>DD096E140B1241DDBDD8AF5D</string>
         
     | 
| 
      
 811 
     | 
    
         
            +
            				<string>D21F9A154BB041918A255B11</string>
         
     | 
| 
      
 812 
     | 
    
         
            +
            			</array>
         
     | 
| 
      
 813 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 814 
     | 
    
         
            +
            			<string>PBXFrameworksBuildPhase</string>
         
     | 
| 
      
 815 
     | 
    
         
            +
            			<key>runOnlyForDeploymentPostprocessing</key>
         
     | 
| 
      
 816 
     | 
    
         
            +
            			<string>0</string>
         
     | 
| 
      
 817 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 818 
     | 
    
         
            +
            		<key>DA6B4A370E01420DAA429A9B</key>
         
     | 
| 
      
 819 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 820 
     | 
    
         
            +
            			<key>buildActionMask</key>
         
     | 
| 
      
 821 
     | 
    
         
            +
            			<string>2147483647</string>
         
     | 
| 
      
 822 
     | 
    
         
            +
            			<key>files</key>
         
     | 
| 
      
 823 
     | 
    
         
            +
            			<array>
         
     | 
| 
      
 824 
     | 
    
         
            +
            				<string>70272050943F42F5BCF99576</string>
         
     | 
| 
      
 825 
     | 
    
         
            +
            			</array>
         
     | 
| 
      
 826 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 827 
     | 
    
         
            +
            			<string>PBXHeadersBuildPhase</string>
         
     | 
| 
      
 828 
     | 
    
         
            +
            			<key>runOnlyForDeploymentPostprocessing</key>
         
     | 
| 
      
 829 
     | 
    
         
            +
            			<string>0</string>
         
     | 
| 
      
 830 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 831 
     | 
    
         
            +
            		<key>DC298ADD3DB847DDA332FB53</key>
         
     | 
| 
      
 832 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 833 
     | 
    
         
            +
            			<key>includeInIndex</key>
         
     | 
| 
      
 834 
     | 
    
         
            +
            			<string>1</string>
         
     | 
| 
      
 835 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 836 
     | 
    
         
            +
            			<string>PBXFileReference</string>
         
     | 
| 
      
 837 
     | 
    
         
            +
            			<key>lastKnownFileType</key>
         
     | 
| 
      
 838 
     | 
    
         
            +
            			<string>text.xcconfig</string>
         
     | 
| 
      
 839 
     | 
    
         
            +
            			<key>path</key>
         
     | 
| 
      
 840 
     | 
    
         
            +
            			<string>Pods.xcconfig</string>
         
     | 
| 
      
 841 
     | 
    
         
            +
            			<key>sourceTree</key>
         
     | 
| 
      
 842 
     | 
    
         
            +
            			<string><group></string>
         
     | 
| 
      
 843 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 844 
     | 
    
         
            +
            		<key>DD096E140B1241DDBDD8AF5D</key>
         
     | 
| 
      
 845 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 846 
     | 
    
         
            +
            			<key>fileRef</key>
         
     | 
| 
      
 847 
     | 
    
         
            +
            			<string>2D602727FC7249B690E7CBC3</string>
         
     | 
| 
      
 848 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 849 
     | 
    
         
            +
            			<string>PBXBuildFile</string>
         
     | 
| 
      
 850 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 851 
     | 
    
         
            +
            		<key>E56C99B6FD854CA39D3D3A60</key>
         
     | 
| 
      
 852 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 853 
     | 
    
         
            +
            			<key>baseConfigurationReference</key>
         
     | 
| 
      
 854 
     | 
    
         
            +
            			<string>F0A394D949F245F9A1E66046</string>
         
     | 
| 
      
 855 
     | 
    
         
            +
            			<key>buildSettings</key>
         
     | 
| 
      
 856 
     | 
    
         
            +
            			<dict>
         
     | 
| 
      
 857 
     | 
    
         
            +
            				<key>ALWAYS_SEARCH_USER_PATHS</key>
         
     | 
| 
      
 858 
     | 
    
         
            +
            				<string>NO</string>
         
     | 
| 
      
 859 
     | 
    
         
            +
            				<key>COPY_PHASE_STRIP</key>
         
     | 
| 
      
 860 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 861 
     | 
    
         
            +
            				<key>DSTROOT</key>
         
     | 
| 
      
 862 
     | 
    
         
            +
            				<string>/tmp/xcodeproj.dst</string>
         
     | 
| 
      
 863 
     | 
    
         
            +
            				<key>GCC_C_LANGUAGE_STANDARD</key>
         
     | 
| 
      
 864 
     | 
    
         
            +
            				<string>gnu99</string>
         
     | 
| 
      
 865 
     | 
    
         
            +
            				<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
         
     | 
| 
      
 866 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 867 
     | 
    
         
            +
            				<key>GCC_PREFIX_HEADER</key>
         
     | 
| 
      
 868 
     | 
    
         
            +
            				<string>Pods-Reachability-prefix.pch</string>
         
     | 
| 
      
 869 
     | 
    
         
            +
            				<key>GCC_VERSION</key>
         
     | 
| 
      
 870 
     | 
    
         
            +
            				<string>com.apple.compilers.llvm.clang.1_0</string>
         
     | 
| 
      
 871 
     | 
    
         
            +
            				<key>INSTALL_PATH</key>
         
     | 
| 
      
 872 
     | 
    
         
            +
            				<string>$(BUILT_PRODUCTS_DIR)</string>
         
     | 
| 
      
 873 
     | 
    
         
            +
            				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
         
     | 
| 
      
 874 
     | 
    
         
            +
            				<string>7.0</string>
         
     | 
| 
      
 875 
     | 
    
         
            +
            				<key>OTHER_CFLAGS</key>
         
     | 
| 
      
 876 
     | 
    
         
            +
            				<array>
         
     | 
| 
      
 877 
     | 
    
         
            +
            					<string>-DNS_BLOCK_ASSERTIONS=1</string>
         
     | 
| 
      
 878 
     | 
    
         
            +
            					<string>$(inherited)</string>
         
     | 
| 
      
 879 
     | 
    
         
            +
            				</array>
         
     | 
| 
      
 880 
     | 
    
         
            +
            				<key>OTHER_CPLUSPLUSFLAGS</key>
         
     | 
| 
      
 881 
     | 
    
         
            +
            				<array>
         
     | 
| 
      
 882 
     | 
    
         
            +
            					<string>-DNS_BLOCK_ASSERTIONS=1</string>
         
     | 
| 
      
 883 
     | 
    
         
            +
            					<string>$(inherited)</string>
         
     | 
| 
      
 884 
     | 
    
         
            +
            				</array>
         
     | 
| 
      
 885 
     | 
    
         
            +
            				<key>OTHER_LDFLAGS</key>
         
     | 
| 
      
 886 
     | 
    
         
            +
            				<string></string>
         
     | 
| 
      
 887 
     | 
    
         
            +
            				<key>PRODUCT_NAME</key>
         
     | 
| 
      
 888 
     | 
    
         
            +
            				<string>$(TARGET_NAME)</string>
         
     | 
| 
      
 889 
     | 
    
         
            +
            				<key>PUBLIC_HEADERS_FOLDER_PATH</key>
         
     | 
| 
      
 890 
     | 
    
         
            +
            				<string>$(TARGET_NAME)</string>
         
     | 
| 
      
 891 
     | 
    
         
            +
            				<key>SDKROOT</key>
         
     | 
| 
      
 892 
     | 
    
         
            +
            				<string>iphoneos</string>
         
     | 
| 
      
 893 
     | 
    
         
            +
            				<key>SKIP_INSTALL</key>
         
     | 
| 
      
 894 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 895 
     | 
    
         
            +
            				<key>VALIDATE_PRODUCT</key>
         
     | 
| 
      
 896 
     | 
    
         
            +
            				<string>YES</string>
         
     | 
| 
      
 897 
     | 
    
         
            +
            			</dict>
         
     | 
| 
      
 898 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 899 
     | 
    
         
            +
            			<string>XCBuildConfiguration</string>
         
     | 
| 
      
 900 
     | 
    
         
            +
            			<key>name</key>
         
     | 
| 
      
 901 
     | 
    
         
            +
            			<string>Release</string>
         
     | 
| 
      
 902 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 903 
     | 
    
         
            +
            		<key>E832C137560444869B2B8151</key>
         
     | 
| 
      
 904 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 905 
     | 
    
         
            +
            			<key>children</key>
         
     | 
| 
      
 906 
     | 
    
         
            +
            			<array>
         
     | 
| 
      
 907 
     | 
    
         
            +
            				<string>6DCD896FE00543D29ECC7BD7</string>
         
     | 
| 
      
 908 
     | 
    
         
            +
            			</array>
         
     | 
| 
      
 909 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 910 
     | 
    
         
            +
            			<string>PBXGroup</string>
         
     | 
| 
      
 911 
     | 
    
         
            +
            			<key>name</key>
         
     | 
| 
      
 912 
     | 
    
         
            +
            			<string>Pods</string>
         
     | 
| 
      
 913 
     | 
    
         
            +
            			<key>sourceTree</key>
         
     | 
| 
      
 914 
     | 
    
         
            +
            			<string><group></string>
         
     | 
| 
      
 915 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 916 
     | 
    
         
            +
            		<key>EB771EED6EBE4B11B3B5E016</key>
         
     | 
| 
      
 917 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 918 
     | 
    
         
            +
            			<key>explicitFileType</key>
         
     | 
| 
      
 919 
     | 
    
         
            +
            			<string>archive.ar</string>
         
     | 
| 
      
 920 
     | 
    
         
            +
            			<key>includeInIndex</key>
         
     | 
| 
      
 921 
     | 
    
         
            +
            			<string>0</string>
         
     | 
| 
      
 922 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 923 
     | 
    
         
            +
            			<string>PBXFileReference</string>
         
     | 
| 
      
 924 
     | 
    
         
            +
            			<key>path</key>
         
     | 
| 
      
 925 
     | 
    
         
            +
            			<string>libPods.a</string>
         
     | 
| 
      
 926 
     | 
    
         
            +
            			<key>sourceTree</key>
         
     | 
| 
      
 927 
     | 
    
         
            +
            			<string>BUILT_PRODUCTS_DIR</string>
         
     | 
| 
      
 928 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 929 
     | 
    
         
            +
            		<key>F0A394D949F245F9A1E66046</key>
         
     | 
| 
      
 930 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 931 
     | 
    
         
            +
            			<key>includeInIndex</key>
         
     | 
| 
      
 932 
     | 
    
         
            +
            			<string>1</string>
         
     | 
| 
      
 933 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 934 
     | 
    
         
            +
            			<string>PBXFileReference</string>
         
     | 
| 
      
 935 
     | 
    
         
            +
            			<key>lastKnownFileType</key>
         
     | 
| 
      
 936 
     | 
    
         
            +
            			<string>text.xcconfig</string>
         
     | 
| 
      
 937 
     | 
    
         
            +
            			<key>path</key>
         
     | 
| 
      
 938 
     | 
    
         
            +
            			<string>Pods-Reachability-Private.xcconfig</string>
         
     | 
| 
      
 939 
     | 
    
         
            +
            			<key>sourceTree</key>
         
     | 
| 
      
 940 
     | 
    
         
            +
            			<string><group></string>
         
     | 
| 
      
 941 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 942 
     | 
    
         
            +
            		<key>F8017AB7A3B147C9B47429AE</key>
         
     | 
| 
      
 943 
     | 
    
         
            +
            		<dict>
         
     | 
| 
      
 944 
     | 
    
         
            +
            			<key>buildActionMask</key>
         
     | 
| 
      
 945 
     | 
    
         
            +
            			<string>2147483647</string>
         
     | 
| 
      
 946 
     | 
    
         
            +
            			<key>files</key>
         
     | 
| 
      
 947 
     | 
    
         
            +
            			<array>
         
     | 
| 
      
 948 
     | 
    
         
            +
            				<string>78C7C5CE4DCB44D4839B2327</string>
         
     | 
| 
      
 949 
     | 
    
         
            +
            				<string>80B0843CFC2849B2806FF69A</string>
         
     | 
| 
      
 950 
     | 
    
         
            +
            			</array>
         
     | 
| 
      
 951 
     | 
    
         
            +
            			<key>isa</key>
         
     | 
| 
      
 952 
     | 
    
         
            +
            			<string>PBXSourcesBuildPhase</string>
         
     | 
| 
      
 953 
     | 
    
         
            +
            			<key>runOnlyForDeploymentPostprocessing</key>
         
     | 
| 
      
 954 
     | 
    
         
            +
            			<string>0</string>
         
     | 
| 
      
 955 
     | 
    
         
            +
            		</dict>
         
     | 
| 
      
 956 
     | 
    
         
            +
            	</dict>
         
     | 
| 
      
 957 
     | 
    
         
            +
            	<key>rootObject</key>
         
     | 
| 
      
 958 
     | 
    
         
            +
            	<string>D07C2AA7CDE5473791D8DAC1</string>
         
     | 
| 
      
 959 
     | 
    
         
            +
            </dict>
         
     | 
| 
      
 960 
     | 
    
         
            +
            </plist>
         
     |