From 4bc1a24935412d88b1834e246bb47c356455bd40 Mon Sep 17 00:00:00 2001 From: Yuuki Nishiyama Date: Wed, 3 Jul 2019 01:54:20 +0900 Subject: [PATCH] Fix a minor bug on AWARECore --- AWAREFramework.podspec | 2 +- .../AWARE_v7.xcdatamodel/contents | 2 +- AWAREFramework/Classes/Core/AWARECore.m | 4 +- .../Classes/Core/Storage/AWAREStorage.h | 5 + .../Classes/Core/Storage/AWAREStorage.m | 12 + .../Core/Storage/SQLite/SQLiteStorage.m | 77 +- .../AWAREFramework.xcodeproj/project.pbxproj | 122 ++ Example/Podfile | 4 + Example/Podfile.lock | 28 +- .../Source/GTMSessionFetcher.h | 16 +- .../Source/GTMSessionFetcher.m | 4 + .../Source/GTMSessionFetcherService.m | 8 +- .../Source/GTMSessionUploadFetcher.m | 37 +- .../DebugUtils/GTMDebugSelectorValidation.h | 1 + .../AWAREFramework.podspec.json | 4 +- Example/Pods/Manifest.lock | 28 +- Example/Pods/Pods.xcodeproj/project.pbxproj | 1210 ++++++++++------- Example/Tests/Tests.swift | 42 + 18 files changed, 1078 insertions(+), 528 deletions(-) diff --git a/AWAREFramework.podspec b/AWAREFramework.podspec index 7cd4d41..a44215c 100644 --- a/AWAREFramework.podspec +++ b/AWAREFramework.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = 'AWAREFramework' - s.version = '1.4.15' + s.version = '1.4.16' s.summary = 'AWARE: An Open-source Context Instrumentation Framework' # This description is used to generate tags and improve search results. diff --git a/AWAREFramework/Assets/AWARE.xcdatamodeld/AWARE_v7.xcdatamodel/contents b/AWAREFramework/Assets/AWARE.xcdatamodeld/AWARE_v7.xcdatamodel/contents index 1045e49..d350c88 100644 --- a/AWAREFramework/Assets/AWARE.xcdatamodeld/AWARE_v7.xcdatamodel/contents +++ b/AWAREFramework/Assets/AWARE.xcdatamodeld/AWARE_v7.xcdatamodel/contents @@ -1,5 +1,5 @@ - + diff --git a/AWAREFramework/Classes/Core/AWARECore.m b/AWAREFramework/Classes/Core/AWARECore.m index 8e8fa84..846788b 100644 --- a/AWAREFramework/Classes/Core/AWARECore.m +++ b/AWAREFramework/Classes/Core/AWARECore.m @@ -283,8 +283,10 @@ - (void) requestPermissionForBackgroundSensingWithCompletion:(LocationAPIAuthori [_sharedLocationManager requestAlwaysAuthorization]; } }else{ + if (self->completionHandler != nil) { + self->completionHandler(); + } self->completionHandler = nil; - completionHandler(); } } diff --git a/AWAREFramework/Classes/Core/Storage/AWAREStorage.h b/AWAREFramework/Classes/Core/Storage/AWAREStorage.h index d1f36e4..96cb9b8 100644 --- a/AWAREFramework/Classes/Core/Storage/AWAREStorage.h +++ b/AWAREFramework/Classes/Core/Storage/AWAREStorage.h @@ -20,6 +20,7 @@ NS_ASSUME_NONNULL_BEGIN typedef void (^SyncProcessCallBack)(NSString * _Nonnull name, double progress, NSError * _Nullable error); typedef void (^FetchDataHandler)(NSString * _Nonnull name, NSArray * results, NSDate * start, NSDate * end, NSError * _Nullable error); +typedef void (^LimitedDataFetchHandler)(NSString * _Nonnull name, NSArray * _Nullable results, NSDate * _Nonnull from, NSDate * _Nonnull to, BOOL isEnd, NSError * _Nullable error); //////////////////// General ////////////////////// @@ -82,6 +83,10 @@ typedef void (^FetchDataHandler)(NSString * _Nonnull name, NSArray * results, NS - (NSArray *) fetchDataBetweenStart:(NSDate *)start andEnd:(NSDate *)end; - (void) fetchDataBetweenStart:(NSDate *)start andEnd:(NSDate *)end withHandler:(FetchDataHandler)handler; + +- (NSArray *) fetchDataFrom:(NSDate *)from to:(NSDate *)to; +- (void) fetchDataFrom:(NSDate *)from to:(NSDate *)to handler:(FetchDataHandler)handler; +- (void) fetchDataFrom:(NSDate *)from to:(NSDate *)to limit:(int)limit all:(bool)all handler:(LimitedDataFetchHandler)handler; - (NSDate *) getToday; NS_ASSUME_NONNULL_END diff --git a/AWAREFramework/Classes/Core/Storage/AWAREStorage.m b/AWAREFramework/Classes/Core/Storage/AWAREStorage.m index c197c95..411e4d6 100644 --- a/AWAREFramework/Classes/Core/Storage/AWAREStorage.m +++ b/AWAREFramework/Classes/Core/Storage/AWAREStorage.m @@ -302,6 +302,18 @@ - (void) fetchDataBetweenStart:(NSDate *)start andEnd:(NSDate *)end withHandler: NSLog(@"Please overwrite -fetchDataBetweenStart:andEnd:withHandler method"); } +- (NSArray *)fetchDataFrom:(NSDate *)from to:(NSDate *)to{ + NSLog(@"Please overwrite -fetchDataFrom:to method"); + return @[]; +} + +- (void) fetchDataFrom:(NSDate *)from to:(NSDate *)to handler:(FetchDataHandler)handler{ + NSLog(@"This storage which you are using does not support this method. Please overwrite -fetchDataFrom:to:handler method"); +} + +- (void)fetchDataFrom:(NSDate *)from to:(NSDate *)to limit:(int)limit all:(bool)all handler:(LimitedDataFetchHandler)handler{ + NSLog(@"This storage which you are using does not support this method. Please overwrite -fetchDataFrom:to:limit:all:handler method"); +} - (NSDate *) getToday { NSCalendar* calendar = [NSCalendar currentCalendar]; diff --git a/AWAREFramework/Classes/Core/Storage/SQLite/SQLiteStorage.m b/AWAREFramework/Classes/Core/Storage/SQLite/SQLiteStorage.m index 04f518a..b342b95 100644 --- a/AWAREFramework/Classes/Core/Storage/SQLite/SQLiteStorage.m +++ b/AWAREFramework/Classes/Core/Storage/SQLite/SQLiteStorage.m @@ -588,9 +588,12 @@ -(NSArray *)fetchTodaysData{ } - (NSArray *)fetchDataBetweenStart:(NSDate *)start andEnd:(NSDate *)end{ - - NSNumber * startNum = [AWAREUtils getUnixTimestamp:start]; - NSNumber * endNum = [AWAREUtils getUnixTimestamp:end]; + return [self fetchDataFrom:start to:end]; +} + +- (NSArray *)fetchDataFrom:(NSDate *)from to:(NSDate *)to{ + NSNumber * startNum = [AWAREUtils getUnixTimestamp:from]; + NSNumber * endNum = [AWAREUtils getUnixTimestamp:to]; NSManagedObjectContext *moc = coreDataHandler.managedObjectContext; NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:entityName]; @@ -606,19 +609,22 @@ - (NSArray *)fetchDataBetweenStart:(NSDate *)start andEnd:(NSDate *)end{ return results; } - - (void)fetchTodaysDataWithHandler:(FetchDataHandler)handler{ NSDate * today = [self getToday]; - [self fetchDataBetweenStart:today andEnd:[today dateByAddingTimeInterval:60*60*24] withHandler:handler]; + [self fetchDataFrom:today to:[today dateByAddingTimeInterval:60*60*24] handler:handler]; } - (void)fetchDataBetweenStart:(NSDate *)start andEnd:(NSDate *)end withHandler:(FetchDataHandler)handler{ + [self fetchDataFrom:start to:end handler:handler]; +} + +- (void)fetchDataFrom:(NSDate *)from to:(NSDate *)to handler:(FetchDataHandler)handler{ NSManagedObjectContext *private = [[NSManagedObjectContext alloc] initWithConcurrencyType:NSPrivateQueueConcurrencyType]; [private setParentContext:self.mainQueueManagedObjectContext]; [private performBlock:^{ - NSNumber * startNum = [AWAREUtils getUnixTimestamp:start]; - NSNumber * endNum = [AWAREUtils getUnixTimestamp:end]; + NSNumber * startNum = [AWAREUtils getUnixTimestamp:from]; + NSNumber * endNum = [AWAREUtils getUnixTimestamp:to]; NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] initWithEntityName:self->entityName]; [fetchRequest setEntity:[NSEntityDescription entityForName:self->entityName inManagedObjectContext:self.mainQueueManagedObjectContext]]; @@ -643,7 +649,62 @@ - (void)fetchDataBetweenStart:(NSDate *)start andEnd:(NSDate *)end withHandler:( NSLog(@"[%@] %@", self.sensorName, error.debugDescription); } if (handler != nil) { - handler(self.sensorName, results, start, end, error); + handler(self.sensorName, results, from, to, error); + } + }]; +} + +- (void)fetchDataFrom:(NSDate *)from to:(NSDate *)to limit:(int)limit all:(bool)all handler:(LimitedDataFetchHandler)handler{ + NSManagedObjectContext *private = [[NSManagedObjectContext alloc] initWithConcurrencyType:NSPrivateQueueConcurrencyType]; + [private setParentContext:self.mainQueueManagedObjectContext]; + [private performBlock:^{ + + NSNumber * startNum = [AWAREUtils getUnixTimestamp:from]; + NSNumber * endNum = [AWAREUtils getUnixTimestamp:to]; + + NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] initWithEntityName:self->entityName]; + [fetchRequest setEntity:[NSEntityDescription entityForName:self->entityName inManagedObjectContext:self.mainQueueManagedObjectContext]]; + [fetchRequest setIncludesSubentities:NO]; + [fetchRequest setResultType:NSDictionaryResultType]; + if([self->entityName isEqualToString:@"EntityESMAnswer"] ){ + [fetchRequest setPredicate:[NSPredicate predicateWithFormat:@"double_esm_user_answer_timestamp >= %@ AND double_esm_user_answer_timestamp =< %@", + startNum, endNum]]; + }else{ + [fetchRequest setPredicate:[NSPredicate predicateWithFormat:@"timestamp >= %@ AND timestamp <= %@", startNum, endNum]]; + } + + [fetchRequest setFetchLimit:limit]; + + //Set sort option + NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"timestamp" ascending:YES]; + NSArray *sortDescriptors = [[NSArray alloc] initWithObjects:sortDescriptor, nil]; + [fetchRequest setSortDescriptors:sortDescriptors]; + + //Get NSManagedObject from managedObjectContext by using fetch setting + NSError * error = nil; + NSArray *results = [private executeFetchRequest:fetchRequest error:&error]; + + if (error!=nil) { + NSLog(@"[%@] %@", self.sensorName, error.debugDescription); + } + if (handler != nil) { + if (results.count < limit || all) { + handler(self.sensorName, results, from, to, true, error); + }else{ + handler(self.sensorName, results, from, to, false, error); + NSDictionary * dict = results.lastObject; + if (dict != nil) { + NSNumber * timestamp = dict[@"timestamp"]; + if (timestamp != nil) { + NSDate * date = [NSDate dateWithTimeIntervalSince1970:timestamp.doubleValue/1000]; + [self fetchDataFrom:date to:to limit:limit all:all handler:handler]; + }else{ + handler(self.sensorName, results, from, to, true, error); + } + }else{ + handler(self.sensorName, results, from, to, true, error); + } + } } }]; } diff --git a/Example/AWAREFramework.xcodeproj/project.pbxproj b/Example/AWAREFramework.xcodeproj/project.pbxproj index 43f1be9..e723ba6 100644 --- a/Example/AWAREFramework.xcodeproj/project.pbxproj +++ b/Example/AWAREFramework.xcodeproj/project.pbxproj @@ -7,6 +7,7 @@ objects = { /* Begin PBXBuildFile section */ + 0D303B0B61C3F9C3EB90F027 /* Pods_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9CFA0EC3E39ACC1F91EE00C1 /* Pods_Tests.framework */; }; 0D665A94C1F63BB4CCBC840C /* Pods_AWARE_CustomESM.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C525406897B2E8A519DEA8A /* Pods_AWARE_CustomESM.framework */; }; 1D1A0F5AD9D07AC808A2E31B /* Pods_AWARE_CustomSensor.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 695D0CD2E062C0A3F8B9B833 /* Pods_AWARE_CustomSensor.framework */; }; 4F3914DB224CE6B300CEE77E /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F3914DA224CE6B300CEE77E /* AppDelegate.swift */; }; @@ -98,6 +99,23 @@ EE160ED441A1706C77E2212B /* Pods_AWARE_AmbientNoise.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 49CD74AD8474E5B939B11A01 /* Pods_AWARE_AmbientNoise.framework */; }; /* End PBXBuildFile section */ +/* Begin PBXContainerItemProxy section */ + 4F76BE8C22C7F4490022F060 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 6003F582195388D10070C39A /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4F391543224FE45D00CEE77E; + remoteInfo = "AWARE-SimpleClient"; + }; + 4F76BE8E22C7F4550022F060 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 6003F582195388D10070C39A /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4F39150D224D692500CEE77E; + remoteInfo = "AWARE-SensingApp"; + }; +/* End PBXContainerItemProxy section */ + /* Begin PBXFileReference section */ 00D5AFD49B034316168D6945 /* Pods-AWARE-DynamicESM.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AWARE-DynamicESM.release.xcconfig"; path = "Pods/Target Support Files/Pods-AWARE-DynamicESM/Pods-AWARE-DynamicESM.release.xcconfig"; sourceTree = ""; }; 0A05C8E1AAF2A2E7285944BF /* Pods-AWARE-GoogleLogin.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AWARE-GoogleLogin.debug.xcconfig"; path = "Pods/Target Support Files/Pods-AWARE-GoogleLogin/Pods-AWARE-GoogleLogin.debug.xcconfig"; sourceTree = ""; }; @@ -106,10 +124,12 @@ 183973A5BCDE7AAAD2D9C11F /* Pods-AWARE-SensingApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AWARE-SensingApp.debug.xcconfig"; path = "Pods/Target Support Files/Pods-AWARE-SensingApp/Pods-AWARE-SensingApp.debug.xcconfig"; sourceTree = ""; }; 192C18A45184EE9ABB84099C /* Pods-AWARE-SensingApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AWARE-SensingApp.release.xcconfig"; path = "Pods/Target Support Files/Pods-AWARE-SensingApp/Pods-AWARE-SensingApp.release.xcconfig"; sourceTree = ""; }; 1CE9BC599B311C542830C1ED /* Pods-AWARE-AmbientNoise.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AWARE-AmbientNoise.debug.xcconfig"; path = "Pods/Target Support Files/Pods-AWARE-AmbientNoise/Pods-AWARE-AmbientNoise.debug.xcconfig"; sourceTree = ""; }; + 1F06E267AB155D23C1B0CC50 /* Pods-Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig"; sourceTree = ""; }; 22C0E2CC8D63A2ED97EBF101 /* Pods-AWAREFramework_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AWAREFramework_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-AWAREFramework_Tests/Pods-AWAREFramework_Tests.release.xcconfig"; sourceTree = ""; }; 29D477EE22E199489CB11EF5 /* Pods-AWARE-ConfigURLESM.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AWARE-ConfigURLESM.debug.xcconfig"; path = "Pods/Target Support Files/Pods-AWARE-ConfigURLESM/Pods-AWARE-ConfigURLESM.debug.xcconfig"; sourceTree = ""; }; 2C525406897B2E8A519DEA8A /* Pods_AWARE_CustomESM.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_AWARE_CustomESM.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 4059B633DB39E76C033AF630 /* Pods-AWARE-Visualization.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AWARE-Visualization.release.xcconfig"; path = "Pods/Target Support Files/Pods-AWARE-Visualization/Pods-AWARE-Visualization.release.xcconfig"; sourceTree = ""; }; + 4120DE55A05DF8E38F841DE7 /* Pods-Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig"; sourceTree = ""; }; 49CD74AD8474E5B939B11A01 /* Pods_AWARE_AmbientNoise.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_AWARE_AmbientNoise.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 4F128055206E672C00AE4E44 /* AWAREFramework_Example.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = AWAREFramework_Example.entitlements; sourceTree = ""; }; 4F251D8220CAB8A7006443FC /* AWAREFramework.podspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = AWAREFramework.podspec; path = ../AWAREFramework.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; @@ -237,6 +257,7 @@ 8BBEF4912FF45EC441F46733 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 8FAA6C1DC7275608F735C9C1 /* Pods-AWARE-ScheduleESM.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AWARE-ScheduleESM.release.xcconfig"; path = "Pods/Target Support Files/Pods-AWARE-ScheduleESM/Pods-AWARE-ScheduleESM.release.xcconfig"; sourceTree = ""; }; 93B4080391ED0C1999C702F8 /* Pods-AWARE-DynamicESM.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AWARE-DynamicESM.debug.xcconfig"; path = "Pods/Target Support Files/Pods-AWARE-DynamicESM/Pods-AWARE-DynamicESM.debug.xcconfig"; sourceTree = ""; }; + 9CFA0EC3E39ACC1F91EE00C1 /* Pods_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; A1819A44516594A9076ADDCF /* Pods-AWAREFramework_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AWAREFramework_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-AWAREFramework_Tests/Pods-AWAREFramework_Tests.debug.xcconfig"; sourceTree = ""; }; A1A5A0C915BD4102D3F2B241 /* Pods_AWARE_SimpleClient.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_AWARE_SimpleClient.framework; sourceTree = BUILT_PRODUCTS_DIR; }; AA54FA71B25EA4E69D7BC69E /* Pods-AWARE-CustomSensor.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AWARE-CustomSensor.release.xcconfig"; path = "Pods/Target Support Files/Pods-AWARE-CustomSensor/Pods-AWARE-CustomSensor.release.xcconfig"; sourceTree = ""; }; @@ -353,6 +374,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 0D303B0B61C3F9C3EB90F027 /* Pods_Tests.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -400,6 +422,8 @@ ECC14885264A6A2F1C735787 /* Pods-AWARE-InteractiveESM.release.xcconfig */, 1CE9BC599B311C542830C1ED /* Pods-AWARE-AmbientNoise.debug.xcconfig */, C0504D9D79ACE989DD0D3769 /* Pods-AWARE-AmbientNoise.release.xcconfig */, + 4120DE55A05DF8E38F841DE7 /* Pods-Tests.debug.xcconfig */, + 1F06E267AB155D23C1B0CC50 /* Pods-Tests.release.xcconfig */, ); name = Pods; sourceTree = ""; @@ -662,6 +686,7 @@ C40F670952C3669962E867F3 /* Pods_AWARE_ConfigURLESM.framework */, 76BBA1A68D2ADA1B9175FB09 /* Pods_AWARE_InteractiveESM.framework */, 49CD74AD8474E5B939B11A01 /* Pods_AWARE_AmbientNoise.framework */, + 9CFA0EC3E39ACC1F91EE00C1 /* Pods_Tests.framework */, ); name = Frameworks; sourceTree = ""; @@ -903,13 +928,18 @@ isa = PBXNativeTarget; buildConfigurationList = 4FC7EF5822560B8400136D05 /* Build configuration list for PBXNativeTarget "Tests" */; buildPhases = ( + F3C429B35BFD4F162580BD5A /* [CP] Check Pods Manifest.lock */, 4FC7EF4F22560B8400136D05 /* Sources */, 4FC7EF5022560B8400136D05 /* Frameworks */, 4FC7EF5122560B8400136D05 /* Resources */, + 6BAC00C2BAA22C8504EBEE49 /* [CP] Embed Pods Frameworks */, + BCBEF1FE09F41612BE3CBADE /* [CP] Copy Pods Resources */, ); buildRules = ( ); dependencies = ( + 4F76BE8D22C7F4490022F060 /* PBXTargetDependency */, + 4F76BE8F22C7F4550022F060 /* PBXTargetDependency */, ); name = Tests; productName = Tests; @@ -1076,6 +1106,7 @@ CreatedOnToolsVersion = 10.2; DevelopmentTeam = FH352PYMNC; ProvisioningStyle = Automatic; + TestTargetID = 4F39150D224D692500CEE77E; }; 4FC7EF6F225B6DD100136D05 = { CreatedOnToolsVersion = 10.2; @@ -1684,6 +1715,36 @@ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-AWARE-InteractiveESM/Pods-AWARE-InteractiveESM-frameworks.sh\"\n"; showEnvVarsInLog = 0; }; + 6BAC00C2BAA22C8504EBEE49 /* [CP] Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-Tests/Pods-Tests-frameworks.sh", + "${PODS_ROOT}/../../AWAREFramework/Frameworks/StudentLifeAudio.framework", + "${BUILT_PRODUCTS_DIR}/CocoaAsyncSocket/CocoaAsyncSocket.framework", + "${BUILT_PRODUCTS_DIR}/GTMSessionFetcher/GTMSessionFetcher.framework", + "${BUILT_PRODUCTS_DIR}/GoogleToolboxForMac/GoogleToolboxForMac.framework", + "${BUILT_PRODUCTS_DIR}/SCNetworkReachability/SCNetworkReachability.framework", + "${BUILT_PRODUCTS_DIR}/TPCircularBuffer/TPCircularBuffer.framework", + "${BUILT_PRODUCTS_DIR}/ios-ntp/ios_ntp.framework", + ); + name = "[CP] Embed Pods Frameworks"; + outputPaths = ( + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/StudentLifeAudio.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CocoaAsyncSocket.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GTMSessionFetcher.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GoogleToolboxForMac.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SCNetworkReachability.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/TPCircularBuffer.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ios_ntp.framework", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Tests/Pods-Tests-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; 6DAC77E9B0668EBE04AF6D9E /* [CP] Embed Pods Frameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -1958,6 +2019,28 @@ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; showEnvVarsInLog = 0; }; + BCBEF1FE09F41612BE3CBADE /* [CP] Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-Tests/Pods-Tests-resources.sh", + "${PODS_ROOT}/../../AWAREFramework/Assets/AWARE.xcdatamodeld", + "${PODS_CONFIGURATION_BUILD_DIR}/AWAREFramework/AWAREFramework.bundle", + "${PODS_ROOT}/GoogleSignIn/Resources/GoogleSignIn.bundle", + ); + name = "[CP] Copy Pods Resources"; + outputPaths = ( + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AWARE.momd", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AWAREFramework.bundle", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/GoogleSignIn.bundle", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Tests/Pods-Tests-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; BEDA59ADEDA238863BD8639F /* [CP] Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -2136,6 +2219,28 @@ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-AWARE-DynamicESM/Pods-AWARE-DynamicESM-frameworks.sh\"\n"; showEnvVarsInLog = 0; }; + F3C429B35BFD4F162580BD5A /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-Tests-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ @@ -2272,6 +2377,19 @@ }; /* End PBXSourcesBuildPhase section */ +/* Begin PBXTargetDependency section */ + 4F76BE8D22C7F4490022F060 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 4F391543224FE45D00CEE77E /* AWARE-SimpleClient */; + targetProxy = 4F76BE8C22C7F4490022F060 /* PBXContainerItemProxy */; + }; + 4F76BE8F22C7F4550022F060 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 4F39150D224D692500CEE77E /* AWARE-SensingApp */; + targetProxy = 4F76BE8E22C7F4550022F060 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + /* Begin PBXVariantGroup section */ 4F3914DE224CE6B300CEE77E /* Main.storyboard */ = { isa = PBXVariantGroup; @@ -3372,6 +3490,7 @@ }; 4FC7EF5922560B8400136D05 /* Debug */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 4120DE55A05DF8E38F841DE7 /* Pods-Tests.debug.xcconfig */; buildSettings = { CLANG_ANALYZER_NONNULL = YES; CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; @@ -3408,11 +3527,13 @@ SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/AWARE-SensingApp.app/AWARE-SensingApp"; }; name = Debug; }; 4FC7EF5A22560B8400136D05 /* Release */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 1F06E267AB155D23C1B0CC50 /* Pods-Tests.release.xcconfig */; buildSettings = { CLANG_ANALYZER_NONNULL = YES; CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; @@ -3449,6 +3570,7 @@ SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/AWARE-SensingApp.app/AWARE-SensingApp"; }; name = Release; }; diff --git a/Example/Podfile b/Example/Podfile index 85f8055..2206431 100644 --- a/Example/Podfile +++ b/Example/Podfile @@ -11,6 +11,10 @@ platform :ios, '10.0' # end #end +target 'Tests' do + pod 'AWAREFramework', :path => '../' +end + target 'AWARE-DynamicESM' do pod 'AWAREFramework', :path => '../' end diff --git a/Example/Podfile.lock b/Example/Podfile.lock index a0a0298..6f034a7 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -1,5 +1,5 @@ PODS: - - AWAREFramework (1.4.15): + - AWAREFramework (1.4.16): - GoogleSignIn - ios-ntp - SCNetworkReachability @@ -12,15 +12,15 @@ PODS: - "GoogleToolboxForMac/NSDictionary+URLArguments (~> 2.1)" - "GoogleToolboxForMac/NSString+URLArguments (~> 2.1)" - GTMSessionFetcher/Core (~> 1.1) - - GoogleToolboxForMac/DebugUtils (2.2.0): - - GoogleToolboxForMac/Defines (= 2.2.0) - - GoogleToolboxForMac/Defines (2.2.0) - - "GoogleToolboxForMac/NSDictionary+URLArguments (2.2.0)": - - GoogleToolboxForMac/DebugUtils (= 2.2.0) - - GoogleToolboxForMac/Defines (= 2.2.0) - - "GoogleToolboxForMac/NSString+URLArguments (= 2.2.0)" - - "GoogleToolboxForMac/NSString+URLArguments (2.2.0)" - - GTMSessionFetcher/Core (1.2.1) + - GoogleToolboxForMac/DebugUtils (2.2.1): + - GoogleToolboxForMac/Defines (= 2.2.1) + - GoogleToolboxForMac/Defines (2.2.1) + - "GoogleToolboxForMac/NSDictionary+URLArguments (2.2.1)": + - GoogleToolboxForMac/DebugUtils (= 2.2.1) + - GoogleToolboxForMac/Defines (= 2.2.1) + - "GoogleToolboxForMac/NSString+URLArguments (= 2.2.1)" + - "GoogleToolboxForMac/NSString+URLArguments (2.2.1)" + - GTMSessionFetcher/Core (1.2.2) - ios-ntp (1.1.9): - CocoaAsyncSocket - macros_blocks (0.0.4): @@ -53,17 +53,17 @@ EXTERNAL SOURCES: :path: "../" SPEC CHECKSUMS: - AWAREFramework: 4247dd4238891afd63079a659ade2f876047466f + AWAREFramework: 2ce6dc798382079c5e6e112640717a770a59a9fe Charts: 680c8328bd5e90cb14f67e00d2176f3113d19141 CocoaAsyncSocket: eafaa68a7e0ec99ead0a7b35015e0bf25d2c8987 GoogleSignIn: 7ff245e1a7b26d379099d3243a562f5747e23d39 - GoogleToolboxForMac: ff31605b7d66400dcec09bed5861689aebadda4d - GTMSessionFetcher: 32aeca0aa144acea523e1c8e053089dec2cb98ca + GoogleToolboxForMac: b3553629623a3b1bff17f555e736cd5a6d95ad55 + GTMSessionFetcher: 61bb0f61a4cb560030f1222021178008a5727a23 ios-ntp: 49a4ef0866aee5343627710c1c7de71d7c064417 macros_blocks: cf3ff5810b798f462def9f1e3999817dc45cf2df SCNetworkReachability: dbb0150b1a7a4579e148420132da19e718b955ce TPCircularBuffer: c13243556527551c4d320709c7b14a6d20cdc30a -PODFILE CHECKSUM: 808d5f2de37da62eeb68a876969a73ee22f2ecaf +PODFILE CHECKSUM: 8a866f04e51459587cd14294f9b40f753013e1b6 COCOAPODS: 1.7.0.beta.3 diff --git a/Example/Pods/GTMSessionFetcher/Source/GTMSessionFetcher.h b/Example/Pods/GTMSessionFetcher/Source/GTMSessionFetcher.h index 7f5fcda..73193f6 100644 --- a/Example/Pods/GTMSessionFetcher/Source/GTMSessionFetcher.h +++ b/Example/Pods/GTMSessionFetcher/Source/GTMSessionFetcher.h @@ -631,7 +631,7 @@ NSData * GTM_NULLABLE_TYPE GTMDataFromInputStream(NSInputStream *inputStream, NS - (GTM_NULLABLE NSDate *)stoppedAllFetchersDate; // Methods for compatibility with the old GTMHTTPFetcher. -@property(readonly, strong, GTM_NULLABLE) NSOperationQueue *delegateQueue; +@property(atomic, readonly, strong, GTM_NULLABLE) NSOperationQueue *delegateQueue; @end // @protocol GTMSessionFetcherServiceProtocol @@ -653,25 +653,25 @@ NSData * GTM_NULLABLE_TYPE GTMDataFromInputStream(NSInputStream *inputStream, NS - (BOOL)isAuthorizedRequest:(NSURLRequest *)request; -@property(strong, readonly, GTM_NULLABLE) NSString *userEmail; +@property(atomic, strong, readonly, GTM_NULLABLE) NSString *userEmail; @optional // Indicate if authorization may be attempted. Even if this succeeds, // authorization may fail if the user's permissions have been revoked. -@property(readonly) BOOL canAuthorize; +@property(atomic, readonly) BOOL canAuthorize; // For development only, allow authorization of non-SSL requests, allowing // transmission of the bearer token unencrypted. -@property(assign) BOOL shouldAuthorizeAllRequests; +@property(atomic, assign) BOOL shouldAuthorizeAllRequests; - (void)authorizeRequest:(GTM_NULLABLE NSMutableURLRequest *)request completionHandler:(void (^)(NSError * GTM_NULLABLE_TYPE error))handler; #if GTM_USE_SESSION_FETCHER -@property (weak, GTM_NULLABLE) id fetcherService; +@property(atomic, weak, GTM_NULLABLE) id fetcherService; #else -@property (weak, GTM_NULLABLE) id fetcherService; +@property(atomic, weak, GTM_NULLABLE) id fetcherService; #endif - (BOOL)primeForRefresh; @@ -728,7 +728,7 @@ NSData * GTM_NULLABLE_TYPE GTMDataFromInputStream(NSInputStream *inputStream, NS // The fetcher's request. This may not be set after beginFetch has been invoked. The request // may change due to redirects. -@property(strong, GTM_NULLABLE) NSURLRequest *request; +@property(atomic, strong, GTM_NULLABLE) NSURLRequest *request; // Set a header field value on the request. Header field value changes will not // affect a fetch after the fetch has begun. @@ -819,7 +819,7 @@ NSData * GTM_NULLABLE_TYPE GTMDataFromInputStream(NSInputStream *inputStream, NS // "Background Session Task state persistence" // https://forums.developer.apple.com/thread/11554 // -@property(assign) BOOL useBackgroundSession; +@property(atomic, assign) BOOL useBackgroundSession; // Indicates if the fetcher was started using a background session. @property(atomic, readonly, getter=isUsingBackgroundSession) BOOL usingBackgroundSession; diff --git a/Example/Pods/GTMSessionFetcher/Source/GTMSessionFetcher.m b/Example/Pods/GTMSessionFetcher/Source/GTMSessionFetcher.m index f61d9d7..8ba2a31 100644 --- a/Example/Pods/GTMSessionFetcher/Source/GTMSessionFetcher.m +++ b/Example/Pods/GTMSessionFetcher/Source/GTMSessionFetcher.m @@ -2275,6 +2275,10 @@ + (GTM_NULLABLE NSURL *)redirectURLWithOriginalRequestURL:(GTM_NULLABLE NSURL *) (originalScheme != nil && [originalScheme caseInsensitiveCompare:@"http"] == NSOrderedSame && redirectScheme != nil && [redirectScheme caseInsensitiveCompare:@"https"] == NSOrderedSame); + // This can't really be nil for the inputs, but to keep the analyzer happy + // for the -caseInsensitiveCompare: call below, give it a value if it were. + if (!originalScheme) originalScheme = @"https"; + // Check for changes to the scheme and disallow any changes except for http to https. if (!insecureToSecureRedirect && (redirectScheme.length != originalScheme.length || diff --git a/Example/Pods/GTMSessionFetcher/Source/GTMSessionFetcherService.m b/Example/Pods/GTMSessionFetcher/Source/GTMSessionFetcherService.m index ad0c4bd..bd44787 100644 --- a/Example/Pods/GTMSessionFetcher/Source/GTMSessionFetcherService.m +++ b/Example/Pods/GTMSessionFetcher/Source/GTMSessionFetcherService.m @@ -374,14 +374,18 @@ - (void)startFetcher:(GTMSessionFetcher *)fetcher { } // Internal utility. Returns a fetcher's delegate if it's a dispatcher, or nil if the fetcher -// is its own delegate and has no dispatcher. +// is its own delegate (possibly via proxy) and has no dispatcher. - (GTMSessionFetcherSessionDelegateDispatcher *)delegateDispatcherForFetcher:(GTMSessionFetcher *)fetcher { GTMSessionCheckNotSynchronized(self); NSURLSession *fetcherSession = fetcher.session; if (fetcherSession) { id fetcherDelegate = fetcherSession.delegate; - BOOL hasDispatcher = (fetcherDelegate != nil && fetcherDelegate != fetcher); + // If the delegate is non-nil and claims to be a GTMSessionFetcher, there is no dispatcher; + // assume the fetcher is the delegate or has been proxied (some third-party frameworks + // are known to swizzle NSURLSession to proxy its delegate). + BOOL hasDispatcher = (fetcherDelegate != nil && + ![fetcherDelegate isKindOfClass:[GTMSessionFetcher class]]); if (hasDispatcher) { GTMSESSION_ASSERT_DEBUG([fetcherDelegate isKindOfClass:[GTMSessionFetcherSessionDelegateDispatcher class]], @"Fetcher delegate class: %@", [fetcherDelegate class]); diff --git a/Example/Pods/GTMSessionFetcher/Source/GTMSessionUploadFetcher.m b/Example/Pods/GTMSessionFetcher/Source/GTMSessionUploadFetcher.m index 9ac51ba..7a43c67 100644 --- a/Example/Pods/GTMSessionFetcher/Source/GTMSessionUploadFetcher.m +++ b/Example/Pods/GTMSessionFetcher/Source/GTMSessionUploadFetcher.m @@ -268,18 +268,21 @@ + (instancetype)uploadFetcherForSessionIdentifier:(NSString *)sessionIdentifier } + (NSArray *)uploadFetchersForBackgroundSessions { - // Collect the background session upload fetchers that are still in memory. - NSPointerArray *uploadFetcherPointerArray = [self uploadFetcherPointerArrayForBackgroundSessions]; - [uploadFetcherPointerArray compact]; NSMutableSet *restoredSessionIdentifiers = [[NSMutableSet alloc] init]; NSMutableArray *uploadFetchers = [[NSMutableArray alloc] init]; - for (GTMSessionUploadFetcher *uploadFetcher in uploadFetcherPointerArray) { - NSString *sessionIdentifier = uploadFetcher.chunkFetcher.sessionIdentifier; - if (sessionIdentifier) { - [restoredSessionIdentifiers addObject:sessionIdentifier]; - [uploadFetchers addObject:uploadFetcher]; + NSPointerArray *uploadFetcherPointerArray = [self uploadFetcherPointerArrayForBackgroundSessions]; + + // Collect the background session upload fetchers that are still in memory. + @synchronized(uploadFetcherPointerArray) { + [uploadFetcherPointerArray compact]; + for (GTMSessionUploadFetcher *uploadFetcher in uploadFetcherPointerArray) { + NSString *sessionIdentifier = uploadFetcher.chunkFetcher.sessionIdentifier; + if (sessionIdentifier) { + [restoredSessionIdentifiers addObject:sessionIdentifier]; + [uploadFetchers addObject:uploadFetcher]; + } } - } + } // @synchronized(uploadFetcherPointerArray) // The system may have other ongoing background upload sessions. Restore upload fetchers for those // too. @@ -1785,14 +1788,16 @@ - (void)setUseBackgroundSession:(BOOL)useBackgroundSession { _useBackgroundSessionOnChunkFetchers = useBackgroundSession; NSPointerArray *uploadFetcherPointerArrayForBackgroundSessions = [[self class] uploadFetcherPointerArrayForBackgroundSessions]; - if (_useBackgroundSessionOnChunkFetchers) { - [uploadFetcherPointerArrayForBackgroundSessions addPointer:(__bridge void *)self]; - } else { - [[self class] removePointer:(__bridge void *)self - fromPointerArray:uploadFetcherPointerArrayForBackgroundSessions]; - } + @synchronized(uploadFetcherPointerArrayForBackgroundSessions) { + if (_useBackgroundSessionOnChunkFetchers) { + [uploadFetcherPointerArrayForBackgroundSessions addPointer:(__bridge void *)self]; + } else { + [[self class] removePointer:(__bridge void *)self + fromPointerArray:uploadFetcherPointerArrayForBackgroundSessions]; + } + } // @synchronized(uploadFetcherPointerArrayForBackgroundSessions) } - } // @synchronized(self + } // @synchronized(self) } - (BOOL)canFetchWithBackgroundSession { diff --git a/Example/Pods/GoogleToolboxForMac/DebugUtils/GTMDebugSelectorValidation.h b/Example/Pods/GoogleToolboxForMac/DebugUtils/GTMDebugSelectorValidation.h index c90caeb..0c4c4da 100644 --- a/Example/Pods/GoogleToolboxForMac/DebugUtils/GTMDebugSelectorValidation.h +++ b/Example/Pods/GoogleToolboxForMac/DebugUtils/GTMDebugSelectorValidation.h @@ -31,6 +31,7 @@ #if DEBUG #import +#import #import "GTMDefines.h" static void GTMAssertSelectorNilOrImplementedWithReturnTypeAndArguments(id obj, SEL sel, const char *retType, ...) { diff --git a/Example/Pods/Local Podspecs/AWAREFramework.podspec.json b/Example/Pods/Local Podspecs/AWAREFramework.podspec.json index 501d03c..0d205be 100644 --- a/Example/Pods/Local Podspecs/AWAREFramework.podspec.json +++ b/Example/Pods/Local Podspecs/AWAREFramework.podspec.json @@ -1,6 +1,6 @@ { "name": "AWAREFramework", - "version": "1.4.15", + "version": "1.4.16", "summary": "AWARE: An Open-source Context Instrumentation Framework", "description": "AWARE is an Android and iOS framework dedicated to instrument, infer, log and share mobile context information, for application developers, researchers and smartphone users. AWARE captures hardware-, software-, and human-based data. They transform data into information you can understand.", "homepage": "https://github.com/tetujin/AWAREFramework-iOS", @@ -13,7 +13,7 @@ }, "source": { "git": "https://github.com/tetujin/AWAREFramework-iOS.git", - "tag": "1.4.15" + "tag": "1.4.16" }, "platforms": { "ios": "10" diff --git a/Example/Pods/Manifest.lock b/Example/Pods/Manifest.lock index a0a0298..6f034a7 100644 --- a/Example/Pods/Manifest.lock +++ b/Example/Pods/Manifest.lock @@ -1,5 +1,5 @@ PODS: - - AWAREFramework (1.4.15): + - AWAREFramework (1.4.16): - GoogleSignIn - ios-ntp - SCNetworkReachability @@ -12,15 +12,15 @@ PODS: - "GoogleToolboxForMac/NSDictionary+URLArguments (~> 2.1)" - "GoogleToolboxForMac/NSString+URLArguments (~> 2.1)" - GTMSessionFetcher/Core (~> 1.1) - - GoogleToolboxForMac/DebugUtils (2.2.0): - - GoogleToolboxForMac/Defines (= 2.2.0) - - GoogleToolboxForMac/Defines (2.2.0) - - "GoogleToolboxForMac/NSDictionary+URLArguments (2.2.0)": - - GoogleToolboxForMac/DebugUtils (= 2.2.0) - - GoogleToolboxForMac/Defines (= 2.2.0) - - "GoogleToolboxForMac/NSString+URLArguments (= 2.2.0)" - - "GoogleToolboxForMac/NSString+URLArguments (2.2.0)" - - GTMSessionFetcher/Core (1.2.1) + - GoogleToolboxForMac/DebugUtils (2.2.1): + - GoogleToolboxForMac/Defines (= 2.2.1) + - GoogleToolboxForMac/Defines (2.2.1) + - "GoogleToolboxForMac/NSDictionary+URLArguments (2.2.1)": + - GoogleToolboxForMac/DebugUtils (= 2.2.1) + - GoogleToolboxForMac/Defines (= 2.2.1) + - "GoogleToolboxForMac/NSString+URLArguments (= 2.2.1)" + - "GoogleToolboxForMac/NSString+URLArguments (2.2.1)" + - GTMSessionFetcher/Core (1.2.2) - ios-ntp (1.1.9): - CocoaAsyncSocket - macros_blocks (0.0.4): @@ -53,17 +53,17 @@ EXTERNAL SOURCES: :path: "../" SPEC CHECKSUMS: - AWAREFramework: 4247dd4238891afd63079a659ade2f876047466f + AWAREFramework: 2ce6dc798382079c5e6e112640717a770a59a9fe Charts: 680c8328bd5e90cb14f67e00d2176f3113d19141 CocoaAsyncSocket: eafaa68a7e0ec99ead0a7b35015e0bf25d2c8987 GoogleSignIn: 7ff245e1a7b26d379099d3243a562f5747e23d39 - GoogleToolboxForMac: ff31605b7d66400dcec09bed5861689aebadda4d - GTMSessionFetcher: 32aeca0aa144acea523e1c8e053089dec2cb98ca + GoogleToolboxForMac: b3553629623a3b1bff17f555e736cd5a6d95ad55 + GTMSessionFetcher: 61bb0f61a4cb560030f1222021178008a5727a23 ios-ntp: 49a4ef0866aee5343627710c1c7de71d7c064417 macros_blocks: cf3ff5810b798f462def9f1e3999817dc45cf2df SCNetworkReachability: dbb0150b1a7a4579e148420132da19e718b955ce TPCircularBuffer: c13243556527551c4d320709c7b14a6d20cdc30a -PODFILE CHECKSUM: 808d5f2de37da62eeb68a876969a73ee22f2ecaf +PODFILE CHECKSUM: 8a866f04e51459587cd14294f9b40f753013e1b6 COCOAPODS: 1.7.0.beta.3 diff --git a/Example/Pods/Pods.xcodeproj/project.pbxproj b/Example/Pods/Pods.xcodeproj/project.pbxproj index 08fcf75..1c6e7bc 100644 --- a/Example/Pods/Pods.xcodeproj/project.pbxproj +++ b/Example/Pods/Pods.xcodeproj/project.pbxproj @@ -48,7 +48,7 @@ 076CFD53E583B3A8D0D1A13A9E779427 /* EntityBluetooth+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = 123ACA4E0722247C1CD6F0BBCF2DF480 /* EntityBluetooth+CoreDataProperties.m */; }; 07B16D751CD637C8967E118ED9FA0226 /* EntityRotation.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D65DC9AFC4ECDE56D888B059C2F270F /* EntityRotation.m */; }; 07F7F4EA805AFDC69F89122471073A0E /* 9_2.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 64FBB7D99FB42F533C89F6D59D3FFD9C /* 9_2.jpg */; }; - 081328671658CC1F2F2A84AF0F51C505 /* Pods-AWARE-SimpleClient-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DB906218DDEA810697F457B4B4ACDA81 /* Pods-AWARE-SimpleClient-dummy.m */; }; + 081328671658CC1F2F2A84AF0F51C505 /* Pods-AWARE-SimpleClient-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B28540CF71D47A6F42F6E1E880C7758 /* Pods-AWARE-SimpleClient-dummy.m */; }; 0814EEA8966AFE5CD39EC83E2573CA8D /* EntityESMSchedule+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = 6307EBF3E6424F615E805AB8DFECEA71 /* EntityESMSchedule+CoreDataClass.m */; }; 08734D49E856C0E5CF7BA051D6AAAFE3 /* 4_3.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 438FF59F7234A0CC5E4718A4DAF0E99C /* 4_3.jpg */; }; 08A97579AF2B8DD48D29857FFF9E814E /* ESMClockTimePickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7538DE22224A8263F572CE3604A550A /* ESMClockTimePickerView.m */; }; @@ -69,7 +69,7 @@ 0E5E68A50685E91D916DB1C1CDFB1F98 /* AWAREDebugMessageLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BAEEDF4C99118E9D3F1A6349C1783F7 /* AWAREDebugMessageLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; 0E6AAC373BA4DA9593322C7853EEDA88 /* BaseESMView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CC0A65E3AF7839E9B311B33D97CB1DD /* BaseESMView.m */; }; 0EB995EE58E6CF51E8E43DD2FDAB9160 /* EntityFitbitData+CoreDataClass.h in Headers */ = {isa = PBXBuildFile; fileRef = ED16E27922EC6D8D4FFEA71922694839 /* EntityFitbitData+CoreDataClass.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0F1D70384FC147F3031300CF6353C94A /* Pods-AWARE-InteractiveESM-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 71178D30B2DB7BD36B6E9E72AE80DF8D /* Pods-AWARE-InteractiveESM-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0F1D70384FC147F3031300CF6353C94A /* Pods-AWARE-InteractiveESM-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 37765CA08EB14D5BC9607FB7C868C253 /* Pods-AWARE-InteractiveESM-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 0FB3CD3A85CBCD99947C1A32F0461D06 /* ESMItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 690A6092B86D5AB450A49C8C31ED2F87 /* ESMItem.m */; }; 0FF8C5EFFD61FF6AD408BB58F9F4FFA0 /* ESMAudioView.m in Sources */ = {isa = PBXBuildFile; fileRef = FAD4705493A7B345F5F4690FF7051B0E /* ESMAudioView.m */; }; 1050421403A361DDB8AD80E96830E135 /* AWAREStudy.h in Headers */ = {isa = PBXBuildFile; fileRef = CBF11335697FA15586E6A53E0748C112 /* AWAREStudy.h */; settings = {ATTRIBUTES = (Public, ); }; }; @@ -120,11 +120,11 @@ 21DFE51CD856330B30123ACC44937839 /* EntityAccelerometer+CoreDataProperties.h in Headers */ = {isa = PBXBuildFile; fileRef = 93AE207F3D3E88FEF0436723D34911C9 /* EntityAccelerometer+CoreDataProperties.h */; settings = {ATTRIBUTES = (Public, ); }; }; 2378EC9A9DCA665416B574D148535A42 /* SCReachabilityFlagsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = BF5CFDF39304776473FB46F4795525B9 /* SCReachabilityFlagsParser.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; 23CC1D504FF2156A3D378D1BF6479B88 /* EntityCalendar+CoreDataClass.h in Headers */ = {isa = PBXBuildFile; fileRef = 551C7B5EA8FE224A4E69AE99743D853C /* EntityCalendar+CoreDataClass.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 23E98D1CE66189533E5FBC89B08C20E0 /* Pods-AWARE-GoogleLogin-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C874ED00F93501B83E053EA031BAC70 /* Pods-AWARE-GoogleLogin-dummy.m */; }; + 23E98D1CE66189533E5FBC89B08C20E0 /* Pods-AWARE-GoogleLogin-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 63D8134C6F007644C49926D8CB7FCF2A /* Pods-AWARE-GoogleLogin-dummy.m */; }; 24B770A3918BE7F61380FF7E16305E8A /* ESMCheckBoxView.m in Sources */ = {isa = PBXBuildFile; fileRef = EF61EA533A97D70E95D08AC79332D701 /* ESMCheckBoxView.m */; }; 250BCD58F8560044551B12A609284769 /* Conversation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B02F98E4B123BA1EC8C7AA21F25FF53 /* Conversation.m */; }; 25187A7EEE9D1618E0AE2EA3FFF87D07 /* WiFiDeviceClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 52AEFD68C96D0075C7D117E5CB5905CA /* WiFiDeviceClient.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 262E74534DE9BBA4CDBF0F4CB1990587 /* Pods-AWARE-CustomESM-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B4D6429940BEE3FDFDCF9B90090E019A /* Pods-AWARE-CustomESM-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 262E74534DE9BBA4CDBF0F4CB1990587 /* Pods-AWARE-CustomESM-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F5C9571AEE018F15A832ADEA5A4EB5BF /* Pods-AWARE-CustomESM-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 272405292B334337B6DDFA405BDE072F /* GTMSessionFetcherLogging.m in Sources */ = {isa = PBXBuildFile; fileRef = 55C3C068694199AD9F2788E91C9FC47F /* GTMSessionFetcherLogging.m */; }; 272AFF69762FD5EB11B7646AAE5F983D /* IBarChartDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39E0CDA8E06CDE24B276A3A0CA059EF1 /* IBarChartDataSet.swift */; }; 27876F7AF17091D620E283A3182A2706 /* EntitySensorWifi+CoreDataClass.h in Headers */ = {isa = PBXBuildFile; fileRef = 17594FD9A01E66CC61DD56973C698457 /* EntitySensorWifi+CoreDataClass.h */; settings = {ATTRIBUTES = (Public, ); }; }; @@ -140,7 +140,7 @@ 29FD495919D7DC06050D88C36B5CB85F /* EZAudioPlot.h in Headers */ = {isa = PBXBuildFile; fileRef = 375D9E757AB4338DDFDD1C1241970E3E /* EZAudioPlot.h */; settings = {ATTRIBUTES = (Public, ); }; }; 2A17CED53AC3FB075915534743A007F9 /* EntityLinearAccelerometer.m in Sources */ = {isa = PBXBuildFile; fileRef = 08A8A62C941CCC990657016EBBA49417 /* EntityLinearAccelerometer.m */; }; 2B940CF0E0154BDB43DFE284762522CD /* LineChartDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8A423F74E058F18E92E5B8CC85B75E8 /* LineChartDataSet.swift */; }; - 2B9F0D42B283549F44DBF0975AFA647D /* Pods-AWARE-AmbientNoise-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 72CF49006212B407D71405CC64F7357E /* Pods-AWARE-AmbientNoise-dummy.m */; }; + 2B9F0D42B283549F44DBF0975AFA647D /* Pods-AWARE-AmbientNoise-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EF98929B96DB6C82AF890C8DBBEDBFC /* Pods-AWARE-AmbientNoise-dummy.m */; }; 2BD1E9FDBA6BCB33757F38318239F5B7 /* EntityESM+CoreDataClass.h in Headers */ = {isa = PBXBuildFile; fileRef = 483A502B5DECDFB6357B1E6105D8171D /* EntityESM+CoreDataClass.h */; settings = {ATTRIBUTES = (Public, ); }; }; 2C167CD9070E23F9DA11BB50616AEA60 /* AWARESensorManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CF3C92C16FE2E78781C1CA366BDABF9 /* AWARESensorManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; 2C4E5ABE26D578DE2692BFE500D917CF /* AudioAnalysis.m in Sources */ = {isa = PBXBuildFile; fileRef = C547E4654BEFEDBEBD5ED30A91F1CD8B /* AudioAnalysis.m */; }; @@ -158,7 +158,7 @@ 30FDE0EA4FCEC4E77ABACEDFCFEAB2DC /* ESMScrollViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E9A87F9FB25AEB4EC946997ABF8032AE /* ESMScrollViewController.m */; }; 31A153EB7AC155687395C9DBB7849EEE /* EntityWifi+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = C798827BE66C19A7DA4FBEB57B4A7CE8 /* EntityWifi+CoreDataProperties.m */; }; 326F0FAC84EF816099B6105423C0BDED /* GoogleToolboxForMac-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 20B7856671DB1DB68193539A713AA43D /* GoogleToolboxForMac-dummy.m */; }; - 32A266D60DC1A298B8AA98F130BB0AEA /* Pods-AWARE-SimpleClient-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 078DE71602568760414DDB89BB6E5599 /* Pods-AWARE-SimpleClient-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 32A266D60DC1A298B8AA98F130BB0AEA /* Pods-AWARE-SimpleClient-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7523BD91910A932D0DBF2BD15CEBC66C /* Pods-AWARE-SimpleClient-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 337453712A450DA037DF3D4393FADBCE /* GCDAsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CF3ADCBED822ACDBD56D9786148DB81 /* GCDAsyncSocket.h */; settings = {ATTRIBUTES = (Public, ); }; }; 33ED2727B66055DAC9F517571E7AEB85 /* EntityProximity.m in Sources */ = {isa = PBXBuildFile; fileRef = 22AF365C16BFDA484E0EDA303F538250 /* EntityProximity.m */; }; 3461A9CF6849178D992B6FBD74013DCA /* BLEHeartRate.m in Sources */ = {isa = PBXBuildFile; fileRef = DC2CE2CA41A04AC5CC0240E1D5FBDC4E /* BLEHeartRate.m */; }; @@ -194,12 +194,14 @@ 4528ACB0E722CA44677A56DEBC457F81 /* AWARESensors.m in Sources */ = {isa = PBXBuildFile; fileRef = 5593E1A08B19C094666F9B3307820D56 /* AWARESensors.m */; }; 45FA2A6C4CC2E97AEFA2D2A3AC2A7EE1 /* BarHighlighter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92F92E323F799C7555EA5D4B982BB7B2 /* BarHighlighter.swift */; }; 4626AAF8449E70E48AC67C00791535D7 /* HorizontalBarChartRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = E880DA85A702D8C4F6B18B47288EADDF /* HorizontalBarChartRenderer.swift */; }; + 467165337768691CE04108A1836E7D65 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E99EEA0FB47AA565C0B4DC8BE6AE6C33 /* Foundation.framework */; }; 467E7C04BC6389AC0EA81E4C1D47A38D /* EntityDebug+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F742700819FE031AF3800D17F506A01D /* EntityDebug+CoreDataProperties.m */; }; 4720AF25D139B6B1217DEE2FAE4BD0C2 /* 12_3.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 92AB65B42B58AFD92721A32B0918317A /* 12_3.jpg */; }; 479E45981161B173931DD26EE32287B2 /* MarkerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = ACA94A3D50F88BF4CF4EBF06E7717E45 /* MarkerView.swift */; }; 47F7D5B6AE5B4B21180A0162EE684B96 /* 12_1.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 2F788ECA6D24F942DD6B9E410ACFE7EA /* 12_1.jpg */; }; 4854CB4796718AF7150D1F5C16FA142E /* BarChartDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D73C2C570BA3F932CDF5303C6588BCE /* BarChartDataProvider.swift */; }; 487E425C842EBEE4665301D7116C6E19 /* XAxisRendererRadarChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA025745601C95BD2754BEA428F39E03 /* XAxisRendererRadarChart.swift */; }; + 48BC77AB654B9F02EB07C4D0BCE9CFB9 /* Pods-Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 182BB719D7E2E2FF0EA284DB7AD504C4 /* Pods-Tests-dummy.m */; }; 48C4EEB4B728F52BA61F7840B166F386 /* EntityNTPTime.h in Headers */ = {isa = PBXBuildFile; fileRef = 209FA294F59F1E169AD4610BAC07B482 /* EntityNTPTime.h */; settings = {ATTRIBUTES = (Public, ); }; }; 48D822BFA8A81D2FE4ADFC2600B61AF5 /* PieChartRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74FEA1E66BBBFC401D38EAAB2A239811 /* PieChartRenderer.swift */; }; 49041FAC1A3A75A5ABB58F327F520882 /* ESMScheduleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B8D450FD8E37F0583186DACCA6BEED16 /* ESMScheduleManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; @@ -229,6 +231,7 @@ 51A04A56271D35866FDD809BE8D2C691 /* Wifi.h in Headers */ = {isa = PBXBuildFile; fileRef = C0B3976406AB7A354E8C3016A5F9A847 /* Wifi.h */; settings = {ATTRIBUTES = (Public, ); }; }; 51E7AA8BB20AB714ABAF3D370C759B6E /* 11_1.jpg in Resources */ = {isa = PBXBuildFile; fileRef = B8D190AB4001597FCCA984151B67443B /* 11_1.jpg */; }; 52A7D684492BB74B03976DDA9A2E8581 /* EntityProcessor+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DB74C1AB2264A1B2504E230B6003B5C /* EntityProcessor+CoreDataProperties.m */; }; + 52D1DACEFBBDD6E2A36001480A5A961F /* Pods-Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D22062DAE258FD21F3ECD8DF2BE4237 /* Pods-Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 52E1B204227882E280CE5C31A0F11B99 /* AWAREGoogleLoginViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E6B88F79AE08182878F0E9BF0589827 /* AWAREGoogleLoginViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; 5319F22C095A9CBDA9DA24C53A49456E /* EntityAmbientNoise+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = 99ADAF28390F16CD8B119448AAFECD7C /* EntityAmbientNoise+CoreDataClass.m */; }; 54117703E6645F50DA7C348064EBAA6B /* SCNetworkReachability-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3734AC4720AA99C5194AAC9EFA55F66E /* SCNetworkReachability-dummy.m */; }; @@ -272,7 +275,7 @@ 61921D4A3FA704BCEE219DFEB45A980B /* EntityScreen+CoreDataProperties.h in Headers */ = {isa = PBXBuildFile; fileRef = CAE9574118094443EBB2A2FE23672CF9 /* EntityScreen+CoreDataProperties.h */; settings = {ATTRIBUTES = (Public, ); }; }; 619A27F7A9D5FBFCF4701B7F36CB1652 /* EntitySensorWifi+CoreDataProperties.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CB7FAB03B106E9DD341C4A80AB318DD /* EntitySensorWifi+CoreDataProperties.h */; settings = {ATTRIBUTES = (Public, ); }; }; 61CCD8E10483129D573D0655A45752FD /* BasicSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BDCA1E5E01F8E965D4F148B08727796 /* BasicSettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 61E548712F06F38F6988E0C6344FD4F8 /* Pods-AWARE-GoogleLogin-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 38E181D3174842B77D4384631F99108D /* Pods-AWARE-GoogleLogin-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 61E548712F06F38F6988E0C6344FD4F8 /* Pods-AWARE-GoogleLogin-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B43BEDE3BB38F48F065ED7B26F7CADC /* Pods-AWARE-GoogleLogin-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 62103240AD4F953A57F4020DCF14E763 /* JSONStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EBE9F520C84C482037A9264B31AEF33 /* JSONStorage.h */; settings = {ATTRIBUTES = (Public, ); }; }; 6214665F704FF68236F3629E75D96507 /* EZRecorder.m in Sources */ = {isa = PBXBuildFile; fileRef = E902497F99B822872D03619311FB0234 /* EZRecorder.m */; }; 63222DEABE75B86E1534603A2B59B0C6 /* ViewPortJob.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E715F801B7364F6860E2F5A3F2A0E5A /* ViewPortJob.swift */; }; @@ -289,7 +292,7 @@ 69CD45442AA7FB0A6873C4250E086123 /* AWAREKeys.m in Sources */ = {isa = PBXBuildFile; fileRef = 5706643F215EB71668CFE506159BFB23 /* AWAREKeys.m */; }; 6A433CBE59361B4EE843D9C14F3A9654 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E99EEA0FB47AA565C0B4DC8BE6AE6C33 /* Foundation.framework */; }; 6A98EBD76481E5B55DD2EBE954897FA7 /* DefaultFillFormatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4ADEEE9A72D523911C0C29BA79B5A8F /* DefaultFillFormatter.swift */; }; - 6B8303994AD75F4C447F46A3D1920C33 /* Pods-AWARE-InteractiveESM-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E40D4553ED2973CD648E61200FD2609C /* Pods-AWARE-InteractiveESM-dummy.m */; }; + 6B8303994AD75F4C447F46A3D1920C33 /* Pods-AWARE-InteractiveESM-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 980624DD5CB712AC26E9D66D2D7BDB54 /* Pods-AWARE-InteractiveESM-dummy.m */; }; 6D13AEF21CF087201210B660D1FA8E18 /* AWAREMotionSensor.h in Headers */ = {isa = PBXBuildFile; fileRef = BEABA1C51877D2529DC9B728FC060382 /* AWAREMotionSensor.h */; settings = {ATTRIBUTES = (Public, ); }; }; 6D6CA5773D278DEB89902EE0DB270FF8 /* EntityMemory+CoreDataProperties.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B191DFD46DB24CF34BBE46346BF9AF6 /* EntityMemory+CoreDataProperties.h */; settings = {ATTRIBUTES = (Public, ); }; }; 6DE10BD08EC1A7A474DBD43D63295B11 /* EntityConversation+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = 30DDFA0179556EEA360282DDCFC91E68 /* EntityConversation+CoreDataClass.m */; }; @@ -333,7 +336,7 @@ 79D8B1B1076261A3F09B8CF00027A051 /* CalEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E09DAB5783549CA88D6189C30CC0BC1 /* CalEvent.h */; settings = {ATTRIBUTES = (Public, ); }; }; 7A93D22C36BE7793CB5F6D8E926A1B69 /* EZRecorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 95F86F000696BE6F16C4689935A6E480 /* EZRecorder.h */; settings = {ATTRIBUTES = (Public, ); }; }; 7B404920D4F3C9D0708B2D1184F15061 /* 5_2.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 35C885FE295E6E28A4C72F0B083B7BDC /* 5_2.jpg */; }; - 7B42719269BFF2E12BE4D352E43BA617 /* Pods-AWARE-DynamicESM-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C3C5E4FACD2B85F138F71BE8A69029BC /* Pods-AWARE-DynamicESM-dummy.m */; }; + 7B42719269BFF2E12BE4D352E43BA617 /* Pods-AWARE-DynamicESM-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C18C075467771C8F6D623E13AF675F6E /* Pods-AWARE-DynamicESM-dummy.m */; }; 7BB42D96D0997B8275E4EEC417FE6DDC /* 1_1.jpg in Resources */ = {isa = PBXBuildFile; fileRef = AD36B3589155A8AD69827A6CD703542B /* 1_1.jpg */; }; 7C78514A400CB914CE164A5B0D036703 /* HorizontalBarChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A53DDEC19BCB68670065BA3550EDFD5 /* HorizontalBarChartView.swift */; }; 7C9199CDB4314C92D28720B229A947D9 /* EntityMagnetometer+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = B0382B1074F316B1804CF3B1744C9B5D /* EntityMagnetometer+CoreDataProperties.m */; }; @@ -350,7 +353,7 @@ 807415493C9EC10C4D6B7E39366EB78C /* EZAudioPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = BF45B27247E4BD80E11ED89430F19852 /* EZAudioPlayer.m */; }; 80A4171406D881DA9D742C69B4921C7A /* CombinedChartData.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDFF5735CDF76D4E33F643E43547F7E0 /* CombinedChartData.swift */; }; 812A607DB8B5582528C46E5D501CFE04 /* CrossShapeRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE36F96E67F214179AB02BB2B2B4DA26 /* CrossShapeRenderer.swift */; }; - 815342A3F1A29414F7AA0CD095742561 /* Pods-AWARE-CustomSensor-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B9E69786F122019FABE4AAAD82DB63FE /* Pods-AWARE-CustomSensor-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 815342A3F1A29414F7AA0CD095742561 /* Pods-AWARE-CustomSensor-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0243203CD2AD78E5A3637ADBC773A532 /* Pods-AWARE-CustomSensor-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 820E53741F2470284B767C53DCB8307F /* ChartViewBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6E4C252DBBDB0A3BBC2DA2EBC7D842E /* ChartViewBase.swift */; }; 821A61C5C70E1BD2FF45B3BC67AF9E19 /* Barometer.m in Sources */ = {isa = PBXBuildFile; fileRef = 04EEA13C872D423CE5373771A15F0F00 /* Barometer.m */; }; 8261A969B95ECAF2569B3E9CB2EB6BF5 /* LineRadarRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB78705730C38B9688F721B1FA56F5FD /* LineRadarRenderer.swift */; }; @@ -401,7 +404,7 @@ 93208D9B0C143AE0AF3944ACBFC0BFCC /* Wifi.m in Sources */ = {isa = PBXBuildFile; fileRef = 5609215BA44E01F2C8567308834E75B5 /* Wifi.m */; }; 937F36B7E91440CE0029B7ED9EA6ABEB /* FitbitData.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B6BC8FF9C1DB113E247FC208B3D21DB /* FitbitData.h */; settings = {ATTRIBUTES = (Public, ); }; }; 940FDFCDC044ACAB3659049610CF97F4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E99EEA0FB47AA565C0B4DC8BE6AE6C33 /* Foundation.framework */; }; - 941672B618C77DC3D4ED6F06816CFCC5 /* Pods-AWARE-Visualizer-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A792934039A6CB095ADC5C6C9F9C32D /* Pods-AWARE-Visualizer-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 941672B618C77DC3D4ED6F06816CFCC5 /* Pods-AWARE-Visualizer-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6168DA4A6513A5F746C0A45E53487F7C /* Pods-AWARE-Visualizer-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 944755C7C837A97AEA828BCD270FE642 /* IHighlighter.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE94FDF885644E39B564DAD8248BE748 /* IHighlighter.swift */; }; 94F23797D72283457BF2AE74BEC6CDC2 /* IOSActivityRecognition.m in Sources */ = {isa = PBXBuildFile; fileRef = 16CF65B5EAFF83DF7164CC47DBD6F62D /* IOSActivityRecognition.m */; }; 94F4D81A21860D46977CF4330CA02F2F /* EntityNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A153AEB4ABF444333D1D1BC0B62981E /* EntityNetwork.h */; settings = {ATTRIBUTES = (Public, ); }; }; @@ -412,7 +415,7 @@ 97D62C4AD2E2EF46C3D2D2D9F062DB36 /* EntityGravity.h in Headers */ = {isa = PBXBuildFile; fileRef = 15C476F913CB7D5BCEF2963F1DE18649 /* EntityGravity.h */; settings = {ATTRIBUTES = (Public, ); }; }; 983726F153B23704E469ED30EC15D1A2 /* PushNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B363A18DC6C5D45E0AE4D5BC4193BD1 /* PushNotification.h */; settings = {ATTRIBUTES = (Public, ); }; }; 98BC42FB4597DC601CA9BE9A21E14F31 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E99EEA0FB47AA565C0B4DC8BE6AE6C33 /* Foundation.framework */; }; - 990D7EB363554FAC0A22817EF4D17E03 /* Pods-AWARE-AmbientNoise-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 33AF7E47DE10694A5DC5428B827EC0EE /* Pods-AWARE-AmbientNoise-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 990D7EB363554FAC0A22817EF4D17E03 /* Pods-AWARE-AmbientNoise-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B9E9738D0FD4A53984DC81B8DD7E5DC1 /* Pods-AWARE-AmbientNoise-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 99335D7C35A7F392F11AF497AE340983 /* GTMNSString+URLArguments.h in Headers */ = {isa = PBXBuildFile; fileRef = A74C3208B2D24B81241F73347A0B8063 /* GTMNSString+URLArguments.h */; settings = {ATTRIBUTES = (Public, ); }; }; 99CB7B6B6B4B46899A30C454A035BFF2 /* AmbientNoise.m in Sources */ = {isa = PBXBuildFile; fileRef = 229E2DDD506E3174B1C33ADEDAEC3F26 /* AmbientNoise.m */; }; 9A0ECA5BE4B851FCD868DEB30E4646DE /* 5_3.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 8523FB45DEDF655173DF36CE773ADBC3 /* 5_3.jpg */; }; @@ -434,7 +437,7 @@ 9E7A377606604D1A0300BC57402FBEA1 /* Network.h in Headers */ = {isa = PBXBuildFile; fileRef = DFE65AC017C515F33A238F026BD1644E /* Network.h */; settings = {ATTRIBUTES = (Public, ); }; }; 9EE338EDE1C1BB815F1252403D729F14 /* ESMNumberView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5EB2B25B82E63CB5E542842D86A0BFBF /* ESMNumberView.m */; }; 9F1A6CF01FC5E6266CB477FA30E8F44F /* NSDate+NetworkClock.h in Headers */ = {isa = PBXBuildFile; fileRef = CA773E4FC4AF3458E557E26885146AE7 /* NSDate+NetworkClock.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9F67B5A77B8C8B93E06483599160A662 /* Pods-AWARE-ScheduleESM-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ABE81B1E61A112AAB27E83CD3C23B5A /* Pods-AWARE-ScheduleESM-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9F67B5A77B8C8B93E06483599160A662 /* Pods-AWARE-ScheduleESM-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 82344DF048DBAED8DB2B0EF592363DE2 /* Pods-AWARE-ScheduleESM-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 9FDE427791704F2DEC7791060EE9DBB2 /* EZAudioPlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 49F55C4F6919F3891DB068CFC0A999C9 /* EZAudioPlayer.h */; settings = {ATTRIBUTES = (Public, ); }; }; 9FF72851EE976141E04CC48EE61CE86D /* ESMDateTimePickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B1635D6665CAEE4D778F38BB151F59C /* ESMDateTimePickerView.h */; settings = {ATTRIBUTES = (Public, ); }; }; A031BE2A0F20E0D80063C2D661A0109B /* SyncExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F3A374B804E72768CBBFC3B3C23E021 /* SyncExecutor.h */; settings = {ATTRIBUTES = (Public, ); }; }; @@ -460,8 +463,8 @@ A5C717D9962EE03FF19E2C7D0268B6E9 /* GCDAsyncSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 5373E8536262FAB8F52FAD7156C4764C /* GCDAsyncSocket.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; A5F51A93E79D82146DD0617FBA890D7B /* LegendEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE82B2716993B167BEC0FB1B7B2632A7 /* LegendEntry.swift */; }; A75EA5BD7574CB99DBC10D2A72496602 /* JSONStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 14F986A4B07327156A9BAA4959134B72 /* JSONStorage.m */; }; - A7CFF2BA9E472828A932BFCACF67B829 /* Pods-AWARE-Fitbit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 45A4B0290B449A04ED8BB8F6FEBC5AB0 /* Pods-AWARE-Fitbit-dummy.m */; }; - A93527E6F512B813D9451E47DD09EC35 /* Pods-AWARE-ConfigURLESM-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 36344710D678A6877EEDF9B326B8269E /* Pods-AWARE-ConfigURLESM-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A7CFF2BA9E472828A932BFCACF67B829 /* Pods-AWARE-Fitbit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E4BEE0E4139D496B2E226A600964155 /* Pods-AWARE-Fitbit-dummy.m */; }; + A93527E6F512B813D9451E47DD09EC35 /* Pods-AWARE-ConfigURLESM-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0687FE385853626F5CC213F30E8184F4 /* Pods-AWARE-ConfigURLESM-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; A97C61A8A25471C815A0BD467102AE3B /* Transformer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FADAF05F75DBA3CA0E408E04250336C /* Transformer.swift */; }; A9A9E620AE56CED06F08020A9FC603C0 /* EntityCall.m in Sources */ = {isa = PBXBuildFile; fileRef = 1354E5E4DEC3017C06ECAE3237BEEB2F /* EntityCall.m */; }; A9FAE4B589555B4E3CFD649ED4D26BBF /* EntityHealthKitQuantity+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = 89ABBA1D57D58E7A17F8AA758BEFF77C /* EntityHealthKitQuantity+CoreDataClass.m */; }; @@ -470,7 +473,7 @@ ABD07C03DC7539D42667DB302C5A370C /* EntityDeviceUsage+CoreDataProperties.h in Headers */ = {isa = PBXBuildFile; fileRef = 823DFEE0C95BE4788395213E764B5B76 /* EntityDeviceUsage+CoreDataProperties.h */; settings = {ATTRIBUTES = (Public, ); }; }; AC0D81543A2B4B67C08B047D83C1868B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E99EEA0FB47AA565C0B4DC8BE6AE6C33 /* Foundation.framework */; }; AC59FDC1E6D5C56D67CADF1CBA992D0C /* AWAREUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C6AE82337842F732BCAEB6F8DDD58C19 /* AWAREUtils.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AC8FAB63F75F37D6F3629ACDD19F01C3 /* Pods-AWARE-Visualizer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 48FCB6314C9A30775B5CFE1246978398 /* Pods-AWARE-Visualizer-dummy.m */; }; + AC8FAB63F75F37D6F3629ACDD19F01C3 /* Pods-AWARE-Visualizer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B294F083D60C70DA49482FA2675325D1 /* Pods-AWARE-Visualizer-dummy.m */; }; AD07D7B08E6753E27BBAD9C511D9FF05 /* Platform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A1654F24CA305A8215195B0A363CAD5 /* Platform.swift */; }; ADB420FC23893844796F6E4C9DCA071F /* IValueFormatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDC2DDB163FA9CFDD88787ED5D5A8AC6 /* IValueFormatter.swift */; }; AE69E2D8483A819181C1CA7A4DEAB86F /* SensorWifi.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F37436685F48F7BEB58610B1E9EBDF /* SensorWifi.m */; }; @@ -513,7 +516,7 @@ BCB6793C82F106D2CBFC1B6D84C0A2C8 /* EntityCall+CoreDataProperties.h in Headers */ = {isa = PBXBuildFile; fileRef = CDC2C40B9E9221AE7CD1BE535F99EF61 /* EntityCall+CoreDataProperties.h */; settings = {ATTRIBUTES = (Public, ); }; }; BCF0988AE503864231BBE9F014BC098B /* CoreDataHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 73915DA2DC5F4E6C644A9EBEE7E34092 /* CoreDataHandler.m */; }; BD10127079D644D10B75845303BB57AB /* EntityBattery.h in Headers */ = {isa = PBXBuildFile; fileRef = A6602EC64C60EC47E2795F4DCEA7237E /* EntityBattery.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BE476A329B6958E9AD4F2C28F9BA768E /* Pods-AWARE-ConfigURLESM-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C124C8A3888E0F275386825DAD7B6834 /* Pods-AWARE-ConfigURLESM-dummy.m */; }; + BE476A329B6958E9AD4F2C28F9BA768E /* Pods-AWARE-ConfigURLESM-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 54F045B26D3220A33D80E7E9D0076FCE /* Pods-AWARE-ConfigURLESM-dummy.m */; }; BE545C7BC695C48A25895EC2A5CA728C /* EntityWifi.m in Sources */ = {isa = PBXBuildFile; fileRef = AA63CD58A9AC72B7ADA0E90858AFC2F3 /* EntityWifi.m */; }; BE8E6C028838E2D07E3503AEA5CFE16F /* IShapeRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F67682281AED571DFAD94D1EDA30EB1F /* IShapeRenderer.swift */; }; BECCA4566C4062461A5CC068441EDC3B /* 10_2.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 8FCB0A712DA3F6DED5A9261332EEFDBD /* 10_2.jpg */; }; @@ -532,7 +535,7 @@ C332FFE6E05ED34D31CD9102D4A8EC2C /* EntityGyroscope+CoreDataProperties.h in Headers */ = {isa = PBXBuildFile; fileRef = F61F9DE913E1761DC9C0C9DF45B8B8B3 /* EntityGyroscope+CoreDataProperties.h */; settings = {ATTRIBUTES = (Public, ); }; }; C359EFE65B7553E42225D421B27E7FD6 /* Range.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8C68AAD0F0A992DBF1DCE57EF0A59BC /* Range.swift */; }; C503E0AB8B5740EA172F046DE32D1728 /* EZAudioUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 633C5AD42FF9562749423DC68FB83F53 /* EZAudioUtilities.m */; }; - C56F5516EB5450B42E6F6D2B5FAF8FC9 /* Pods-AWARE-CustomSensor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BC48DC5759F58F29AF2B73EA47C5E13 /* Pods-AWARE-CustomSensor-dummy.m */; }; + C56F5516EB5450B42E6F6D2B5FAF8FC9 /* Pods-AWARE-CustomSensor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F7697CD8F9DFA2359034C23CDA8B8B6E /* Pods-AWARE-CustomSensor-dummy.m */; }; C5A7BF362558DA4C74433E0C960FFE8D /* LinearAccelerometer.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D8BB5168516B0CF6253B1166597772D /* LinearAccelerometer.m */; }; C657336CF5D02F6B7D9DB87D9BB7F491 /* OpenWeather.m in Sources */ = {isa = PBXBuildFile; fileRef = 77AAA8BFD382CF7090DD0502904C12AF /* OpenWeather.m */; }; C69302CDA63A1B2D3E4EEFFBAFB2AC37 /* EntityESM+CoreDataProperties.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F7A43BCA07BEC05D1BFEF6C2DEF101D /* EntityESM+CoreDataProperties.h */; settings = {ATTRIBUTES = (Public, ); }; }; @@ -567,7 +570,7 @@ CF6E757EFEB94F6520213A9C9D9B7BCC /* YAxisRendererHorizontalBarChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = F232EC6FC7F3B6FC3DA03700F2A0C6A9 /* YAxisRendererHorizontalBarChart.swift */; }; D0279A8D12A6C786D887011F4A861D33 /* ScatterChartDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF97DDD1C0DBD25BF57906DD0803574E /* ScatterChartDataSet.swift */; }; D049790F058318082EFB64CD621D5147 /* ESMWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 598FD330AD7760878B9B8D50F165BFB2 /* ESMWebView.m */; }; - D0D8676F0F66D4E252FAE4D8D7FA22CD /* Pods-AWARE-ScheduleESM-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B6359661F82B6014947FE7676F4752F /* Pods-AWARE-ScheduleESM-dummy.m */; }; + D0D8676F0F66D4E252FAE4D8D7FA22CD /* Pods-AWARE-ScheduleESM-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FF0301A7A8512505819069355FFF621 /* Pods-AWARE-ScheduleESM-dummy.m */; }; D14EF5F362DD9BE2DF3E6EEC889145AC /* 15_2.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C57AC9E37DD5D5BC60EB71751B7C8D6C /* 15_2.jpg */; }; D1E897CB79786593E115E9EE56DC8FCF /* BasicSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CC3803DAFD68F792E8F6594996EBCA9 /* BasicSettings.m */; }; D1FD5A564C8B68AB2A302F88F210520D /* 10_1.jpg in Resources */ = {isa = PBXBuildFile; fileRef = F4982E81CF34D5D7FBEBE1C0AE889682 /* 10_1.jpg */; }; @@ -626,7 +629,7 @@ E0828FCFAB72BB29021CC0BC940D53C4 /* RadarChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6F6C303775723468640BB04BADA2814 /* RadarChartView.swift */; }; E1E2CD5DC96689F5180D6293A868773D /* LineChartData.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF905BB6208125F777F0F1F65793A38E /* LineChartData.swift */; }; E224E05A029F87F9FB496FE5610CF748 /* EZAudioDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 27DFC1DBCEC2E4901343A3EF6F04481C /* EZAudioDisplayLink.m */; }; - E2429A7795E3018B5F3D4108DC906D39 /* Pods-AWARE-CustomESM-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E604AC6D0064E9ED28CFB5AD8A0F0F27 /* Pods-AWARE-CustomESM-dummy.m */; }; + E2429A7795E3018B5F3D4108DC906D39 /* Pods-AWARE-CustomESM-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 05E2C4D48DA8AC2766429478FA480E6A /* Pods-AWARE-CustomESM-dummy.m */; }; E2E5349D7863382F65F20AB9746D7CF1 /* EZMicrophone.m in Sources */ = {isa = PBXBuildFile; fileRef = F6C7143410229A5C0E31604F9C1AEAB4 /* EZMicrophone.m */; }; E34E16FD2C69F4FC07300CD446B1F04E /* 1_3.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 766B8EF5E1386EE445D56C78C9E0D7BD /* 1_3.jpg */; }; E45676252508F65BE6BD704BCDE429DF /* Platform+Accessibility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1CF31E899D69EC363F0F1E19BA763EF /* Platform+Accessibility.swift */; }; @@ -652,7 +655,7 @@ E8D5709BA3B2BE12CE1793FAB9E8087B /* XAxisRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = A2032087DD192CFF1CB0FA124144111B /* XAxisRenderer.swift */; }; E91DD2D074A5B66D0201A6C45C8CD849 /* DefaultAxisValueFormatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E4909C78EBCDD5F67916E6368D29620 /* DefaultAxisValueFormatter.swift */; }; E9936B43BFECE944856A9DE90B3A9D5F /* EntityContact+CoreDataProperties.h in Headers */ = {isa = PBXBuildFile; fileRef = 0922FEB55647F11DCCBD8D824EC5142F /* EntityContact+CoreDataProperties.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E9E16E21AA9939F9705AA94D5361D8D3 /* Pods-AWARE-DynamicESM-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 92FA4BDE34B298D5D9325884687EDECB /* Pods-AWARE-DynamicESM-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E9E16E21AA9939F9705AA94D5361D8D3 /* Pods-AWARE-DynamicESM-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FC53CE29A9BD9C07CC8D780E62F97F1 /* Pods-AWARE-DynamicESM-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; E9F5BADF17DD08FE49B4CBEFA8D371CA /* Calls.m in Sources */ = {isa = PBXBuildFile; fileRef = 776DA71A2DFA5C3453854CF0E3D997B6 /* Calls.m */; }; EA0C95206C2C7DA582879692FD889A53 /* EntityOpenWeather+CoreDataProperties.h in Headers */ = {isa = PBXBuildFile; fileRef = 983E8A19E88F367ED833690E14F0FA08 /* EntityOpenWeather+CoreDataProperties.h */; settings = {ATTRIBUTES = (Public, ); }; }; EA83C401DABF85FF0892FC837794BB7E /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = BC949B5CBE5E0199314B3446CF0CA182 /* Orientation.m */; }; @@ -706,8 +709,8 @@ FBC177F421159488CD2DE827E01C85E6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E99EEA0FB47AA565C0B4DC8BE6AE6C33 /* Foundation.framework */; }; FBC4750C1D3B6D8FC63793836E672B97 /* EntityFitbitDevice+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = C003A3CE4A8A65707F1651929A1D01A8 /* EntityFitbitDevice+CoreDataProperties.m */; }; FBCAFB6D2E249CC242C5D1692E35F30B /* ntp-log.h in Headers */ = {isa = PBXBuildFile; fileRef = 32C0725F7D11B2D68CC87BD8C10827A2 /* ntp-log.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FC0C6E5B65AC0BA91D3333F2F284B15D /* Pods-AWARE-Fitbit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A4BACDFCD9F3150F1C71F13FC18EB5D4 /* Pods-AWARE-Fitbit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FC0D70C52B07EF378CA711775278983C /* Pods-AWARE-SensingApp-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1926A6D6BEB9B32D81C96BE348FA0B59 /* Pods-AWARE-SensingApp-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FC0C6E5B65AC0BA91D3333F2F284B15D /* Pods-AWARE-Fitbit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 28703270CFB531501A0BABBB21B80E4B /* Pods-AWARE-Fitbit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FC0D70C52B07EF378CA711775278983C /* Pods-AWARE-SensingApp-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 28B5FE73DE3B7CD0810E5FBDDF0B175A /* Pods-AWARE-SensingApp-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; FC13CEC2E92775AED45E6112D5AF307D /* TransformerHorizontalBarChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7949F3ADE2F78E95FC18A121AA821FCF /* TransformerHorizontalBarChart.swift */; }; FC402A40643FB5246B6A0A7B00A550AD /* EntityBatteryCharge+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = 031FEE3FDB03DB94B0C65BD880E69F05 /* EntityBatteryCharge+CoreDataProperties.m */; }; FCE173CF422DB94790B28DE60E32CBE9 /* EntityESMAnswer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A80B7121621A50B22B028857B414ADD /* EntityESMAnswer.h */; settings = {ATTRIBUTES = (Public, ); }; }; @@ -721,7 +724,7 @@ FEAD203FDD91F018D5243F5B30437C6E /* 7_3.jpg in Resources */ = {isa = PBXBuildFile; fileRef = EB7C37D72A654EE360E78329A6DE21A2 /* 7_3.jpg */; }; FEB435068E23CD2918EBFD11AA39CDF4 /* IBubbleChartDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9C79AD7C90E6A966CF6F611ADDA83F3 /* IBubbleChartDataSet.swift */; }; FED6095DC0077F65D22FA9E8486E810A /* PieRadarChartViewBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 121F02213F233962EA738341685FB618 /* PieRadarChartViewBase.swift */; }; - FEE2976B5B7CB5F6646EBB2C188D3DDF /* Pods-AWARE-SensingApp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FF63D616F6718B7D191071A89A028BFE /* Pods-AWARE-SensingApp-dummy.m */; }; + FEE2976B5B7CB5F6646EBB2C188D3DDF /* Pods-AWARE-SensingApp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C539FDC5B51E4D37BC84EBCED26CA729 /* Pods-AWARE-SensingApp-dummy.m */; }; FEE3E670C7EF0C6633543DDF7CEF47C3 /* EntityProcessor+CoreDataProperties.h in Headers */ = {isa = PBXBuildFile; fileRef = D41666093A1F679A1457529BA3009A43 /* EntityProcessor+CoreDataProperties.h */; settings = {ATTRIBUTES = (Public, ); }; }; FFEA2013A439985406453DBD15BB0FB0 /* CocoaAsyncSocket-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BD5C89EF86A5649EE487589047029F6B /* CocoaAsyncSocket-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; /* End PBXBuildFile section */ @@ -1112,6 +1115,13 @@ remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; remoteInfo = CocoaAsyncSocket; }; + 669C96A2609958C51DF055E180C0A69C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3F366479BDFA5B8FDA48D0F34F864DBB; + remoteInfo = TPCircularBuffer; + }; 695CDDE645990AB35FF0647B1914112B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1210,6 +1220,13 @@ remoteGlobalIDString = 76809CB18A35B091EE6A515B2DDF455D; remoteInfo = macros_blocks; }; + 79DDEBC754E742E536DEC59A0639D094 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D47C581D39D227080F83B16A22A56664; + remoteInfo = GoogleToolboxForMac; + }; 818F5813183F505C0DC3783EC31A698A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1252,6 +1269,13 @@ remoteGlobalIDString = 2497F7F40FD4DB2B6A8E13C7CA1F63FF; remoteInfo = AWAREFramework; }; + 93A938C128F907BA323BD2A6AE73FB89 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CAD3534FC55B0333104E5117C0A9A324; + remoteInfo = GoogleSignIn; + }; 96C8CD5BE9F5948FF3A329C5746F72E9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1273,6 +1297,13 @@ remoteGlobalIDString = D676E21115185671D7258A56944ABE98; remoteInfo = GTMSessionFetcher; }; + A78C467EE6B9A0EE33B8AF74782D04D7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D676E21115185671D7258A56944ABE98; + remoteInfo = GTMSessionFetcher; + }; A9484137EE3E729ED623017012513949 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1308,6 +1339,13 @@ remoteGlobalIDString = CAD3534FC55B0333104E5117C0A9A324; remoteInfo = GoogleSignIn; }; + B71CDC9FC4B10316378780C9C19B42ED /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 76809CB18A35B091EE6A515B2DDF455D; + remoteInfo = macros_blocks; + }; B8DAE77F870C37FAE48D1129C03A512D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1511,6 +1549,13 @@ remoteGlobalIDString = CAD3534FC55B0333104E5117C0A9A324; remoteInfo = GoogleSignIn; }; + EBA0DBA982604B50D84B319637F60EDF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; + }; EF1BFE583FEA1AE249D60E94E79A6740 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1525,6 +1570,13 @@ remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; remoteInfo = CocoaAsyncSocket; }; + F1E887DD145BD95D84E42BA53AA41E4E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D6B1218838F0BEC16F3BC1C07F4EE1E4; + remoteInfo = "ios-ntp"; + }; F393C86BB8003AA8CAE53F11A31F1C66 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1553,6 +1605,20 @@ remoteGlobalIDString = D6B1218838F0BEC16F3BC1C07F4EE1E4; remoteInfo = "ios-ntp"; }; + FB81FE6C3419D594A6A9FBA299DEA0E1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2497F7F40FD4DB2B6A8E13C7CA1F63FF; + remoteInfo = AWAREFramework; + }; + FD409CD8E3F4587FE5C25E15A15ACE1C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D29FE46C3F13E990CE27A204B2A5F981; + remoteInfo = SCNetworkReachability; + }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ @@ -1561,37 +1627,36 @@ 00758180D130F8DED9762D6BBE5F18E8 /* GTMNSDictionary+URLArguments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GTMNSDictionary+URLArguments.h"; path = "Foundation/GTMNSDictionary+URLArguments.h"; sourceTree = ""; }; 00A0C45604EB8F464F83C9E31A31778E /* EZPlot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EZPlot.h; sourceTree = ""; }; 00CD16B3C0989A485786F2BB829202FD /* EntityDeviceUsage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EntityDeviceUsage.h; sourceTree = ""; }; + 00ECE1DA6568102ACDF6B3D1525F3176 /* Pods-AWARE-ConfigURLESM-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-ConfigURLESM-frameworks.sh"; sourceTree = ""; }; 01C75284C626D835BB098D56E7B17C77 /* GTMSessionFetcher-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GTMSessionFetcher-prefix.pch"; sourceTree = ""; }; 01EDE4DB16FDF1C3325762B7151225F2 /* 14_1.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 14_1.jpg; sourceTree = ""; }; - 0204034D3CEEC9DC7B32E702882A5016 /* Pods_AWARE_InteractiveESM.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AWARE_InteractiveESM.framework; path = "Pods-AWARE-InteractiveESM.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 0220C102AF6CC66A57D19D975A60F7EC /* Bluetooth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bluetooth.m; sourceTree = ""; }; 0223FD3CE046A25FA9D22DC791BB23EA /* ZoomViewJob.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZoomViewJob.swift; path = Source/Charts/Jobs/ZoomViewJob.swift; sourceTree = ""; }; + 0243203CD2AD78E5A3637ADBC773A532 /* Pods-AWARE-CustomSensor-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AWARE-CustomSensor-umbrella.h"; sourceTree = ""; }; 02A3D15FC9BA637123BE6F6790A80CBC /* Contacts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Contacts.h; sourceTree = ""; }; + 02EE9255A642CAA8C5BBF65A297A8EA2 /* Pods-AWARE-SensingApp.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AWARE-SensingApp.modulemap"; sourceTree = ""; }; 031FEE3FDB03DB94B0C65BD880E69F05 /* EntityBatteryCharge+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityBatteryCharge+CoreDataProperties.m"; sourceTree = ""; }; 0369912383927BE794D66394E53A3C8C /* EntityMemory+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityMemory+CoreDataProperties.m"; sourceTree = ""; }; 03A0027FA4D78494ED569957732C0644 /* ios-ntp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ios-ntp.h"; path = "ios-ntp-lib/ios-ntp.h"; sourceTree = ""; }; - 046E3F7AB6516634D641117139DB8FA7 /* Pods_AWARE_AmbientNoise.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AWARE_AmbientNoise.framework; path = "Pods-AWARE-AmbientNoise.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + 0412007BEC0D1E5804DC9B03FC615585 /* Pods-AWARE-DynamicESM.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-DynamicESM.release.xcconfig"; sourceTree = ""; }; 04EEA13C872D423CE5373771A15F0F00 /* Barometer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Barometer.m; sourceTree = ""; }; - 050FC26F43FA8F440969DF96275950D7 /* Pods-AWARE-ScheduleESM-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-ScheduleESM-Info.plist"; sourceTree = ""; }; - 05239242548A0DB762E4C9025C012F69 /* Pods-AWARE-Visualizer.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AWARE-Visualizer.modulemap"; sourceTree = ""; }; 056393FB48AA27F899FFD3449115C37B /* GTMSessionFetcherService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcherService.m; path = Source/GTMSessionFetcherService.m; sourceTree = ""; }; - 056545928C62E9481766998F940E2B0C /* Pods-AWARE-CustomESM-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-CustomESM-resources.sh"; sourceTree = ""; }; - 05B871564E1CA1C76BC6A736A9822C33 /* Charts.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Charts.framework; path = Charts.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 05B9AFA98A43692B1C533539F17A3E37 /* GTMSessionFetcher.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GTMSessionFetcher.modulemap; sourceTree = ""; }; + 05E2C4D48DA8AC2766429478FA480E6A /* Pods-AWARE-CustomESM-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AWARE-CustomESM-dummy.m"; sourceTree = ""; }; + 0687FE385853626F5CC213F30E8184F4 /* Pods-AWARE-ConfigURLESM-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AWARE-ConfigURLESM-umbrella.h"; sourceTree = ""; }; + 07024CEFCC22B85699E3F39E8FCCB215 /* Pods-AWARE-CustomESM-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AWARE-CustomESM-acknowledgements.markdown"; sourceTree = ""; }; 0717A748E35D1A5D58AFD0FE81BC2A60 /* Processor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Processor.m; sourceTree = ""; }; 0772B2B4815BF1450358EB97890E1909 /* BLEScanner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BLEScanner.h; sourceTree = ""; }; 0783DA1637299ECD51C28FB83C2B4568 /* 7_2.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 7_2.jpg; sourceTree = ""; }; 0787C0FB72BCFC80918FA6947F2FE47A /* EntityOpenWeather.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EntityOpenWeather.m; sourceTree = ""; }; - 078DE71602568760414DDB89BB6E5599 /* Pods-AWARE-SimpleClient-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AWARE-SimpleClient-umbrella.h"; sourceTree = ""; }; 07FD14DE58F0A255C37D0B3DE135371D /* Charts-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Charts-umbrella.h"; sourceTree = ""; }; - 0801B35E053DDD517A533D4005E20E4B /* Pods-AWARE-Fitbit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-Fitbit.debug.xcconfig"; sourceTree = ""; }; 082226407E85B464623580D98FE9E747 /* 15_1.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 15_1.jpg; sourceTree = ""; }; - 0839D2253F302C138A1628DC56537CB8 /* Pods-AWARE-Fitbit-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AWARE-Fitbit-acknowledgements.markdown"; sourceTree = ""; }; 08A8A62C941CCC990657016EBBA49417 /* EntityLinearAccelerometer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EntityLinearAccelerometer.m; sourceTree = ""; }; 0922FEB55647F11DCCBD8D824EC5142F /* EntityContact+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityContact+CoreDataProperties.h"; sourceTree = ""; }; 099FFD40ED3D8DCAF0A8D5DB0698E364 /* ESM.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ESM.m; sourceTree = ""; }; - 09BAD39A795DB0719476E50D6C5C9742 /* Pods-AWARE-CustomESM.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-CustomESM.release.xcconfig"; sourceTree = ""; }; - 0A32619F771CCD967F6AD09D48DF7950 /* Pods-AWARE-SensingApp-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-SensingApp-Info.plist"; sourceTree = ""; }; + 09A6C59722BBDF133CF149BD09139435 /* Pods-Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-frameworks.sh"; sourceTree = ""; }; + 09D9EC12A29A70DD3AEA657CBACE877F /* Pods-AWARE-Fitbit-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-Fitbit-acknowledgements.plist"; sourceTree = ""; }; + 09FC3F1C17AB381FEC3B35DE7CF3975A /* Pods-AWARE-Fitbit-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-Fitbit-resources.sh"; sourceTree = ""; }; 0A8F654D4354E711F8C74034DA6E3F54 /* EntityHealthKitCategory+CoreDataClass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityHealthKitCategory+CoreDataClass.h"; sourceTree = ""; }; 0ABB4A9C816ED00E568B2A8DBCDCFEC5 /* EZAudioPlotGL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EZAudioPlotGL.h; sourceTree = ""; }; 0B00CA65197703940B49197B23464205 /* AWAREHealthKitCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AWAREHealthKitCategory.m; sourceTree = ""; }; @@ -1608,10 +1673,13 @@ 0E6BC0A48F08DB69A81948482CB24ACC /* EZAudioFloatData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EZAudioFloatData.h; sourceTree = ""; }; 0EC4558ADA80CDEFF1DE9AFF980EDDB1 /* ChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChartDataSet.swift; path = Source/Charts/Data/Implementations/Standard/ChartDataSet.swift; sourceTree = ""; }; 0EED54F5BE33785A8C58EBE7738C1571 /* BLEHeartRate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BLEHeartRate.h; sourceTree = ""; }; + 0EF1609ADFBDC5684329F8EE66E64203 /* Pods-AWARE-CustomSensor.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-CustomSensor.release.xcconfig"; sourceTree = ""; }; 0F3FD0A189367549F36F2DDE511E00CA /* EntityBatteryCharge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EntityBatteryCharge.m; sourceTree = ""; }; + 0FA55BF9EA75B34C6747437D692CD957 /* ios_ntp.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = ios_ntp.framework; path = "ios-ntp.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 0FAF87E91013D4FD8ECF496643230411 /* EntityHealthKitCategory+CoreDataClass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityHealthKitCategory+CoreDataClass.m"; sourceTree = ""; }; 102B53283D5F0EB583C4C7D182D1D62E /* ChartAnimationEasing.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChartAnimationEasing.swift; path = Source/Charts/Animation/ChartAnimationEasing.swift; sourceTree = ""; }; 10AB56101AF7097EE0E9EDD395CA2D60 /* EntityLocationVisit+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityLocationVisit+CoreDataProperties.h"; sourceTree = ""; }; + 10E17757B5160E6C07B245A68903D2B3 /* Pods-AWARE-Fitbit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-Fitbit.debug.xcconfig"; sourceTree = ""; }; 10FD61497BD33CC5407BC45CEC069540 /* GTMSessionFetcher.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GTMSessionFetcher.xcconfig; sourceTree = ""; }; 110B5416F41CB6BB88EF63F437FD9358 /* ESMFreeTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ESMFreeTextView.m; sourceTree = ""; }; 11B1872F12CA06F9FAC5A8092BBE6A76 /* DataApproximator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DataApproximator.swift; path = Source/Charts/Filters/DataApproximator.swift; sourceTree = ""; }; @@ -1619,11 +1687,11 @@ 123ACA4E0722247C1CD6F0BBCF2DF480 /* EntityBluetooth+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityBluetooth+CoreDataProperties.m"; sourceTree = ""; }; 1354E5E4DEC3017C06ECAE3237BEEB2F /* EntityCall.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EntityCall.m; sourceTree = ""; }; 13A0B91A4AEE732B6D15C481C17F1531 /* MoveViewJob.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MoveViewJob.swift; path = Source/Charts/Jobs/MoveViewJob.swift; sourceTree = ""; }; - 13A247CFDFE31D1490A4A2A7575C7110 /* Pods-AWARE-Fitbit-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-Fitbit-resources.sh"; sourceTree = ""; }; 13A4156CE3024E480E65692793A9488C /* CombinedHighlighter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CombinedHighlighter.swift; path = Source/Charts/Highlight/CombinedHighlighter.swift; sourceTree = ""; }; 13AF63E6E584FA8BBE4D30ECE79CC66A /* NetworkClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetworkClock.h; path = "ios-ntp-lib/NetworkClock.h"; sourceTree = ""; }; 1438C752847950EC1CB29F2CAF2096A0 /* 1_2.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 1_2.jpg; sourceTree = ""; }; - 14BA742BA0B0593597B7A53B6F50B18C /* Pods-AWARE-AmbientNoise.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AWARE-AmbientNoise.modulemap"; sourceTree = ""; }; + 14622C96E3FCB164CC860077A04EA956 /* Pods-AWARE-AmbientNoise-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-AmbientNoise-acknowledgements.plist"; sourceTree = ""; }; + 14966594A1C1FA7F6F0AFBA70CCA411F /* Pods-AWARE-SensingApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-SensingApp.debug.xcconfig"; sourceTree = ""; }; 14BEEC912C4F644B8BB2FA129BAFF86A /* EntityGyroscope.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EntityGyroscope.h; sourceTree = ""; }; 14E16C69141A49C8CE9ECEE70A82EFE2 /* Pedometer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Pedometer.m; sourceTree = ""; }; 14F986A4B07327156A9BAA4959134B72 /* JSONStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = JSONStorage.m; sourceTree = ""; }; @@ -1634,13 +1702,12 @@ 15FBE40A4656040782F2394FBB7A946B /* 13_2.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 13_2.jpg; sourceTree = ""; }; 166387F559199370B277B121117BE79B /* AWARE_v2.xcdatamodel */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = wrapper.xcdatamodel; path = AWARE_v2.xcdatamodel; sourceTree = ""; }; 16A567E08EE1DB58DC3A19BB3A89FEBB /* EZAudioDevice.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EZAudioDevice.m; sourceTree = ""; }; - 16C094EBC4FF4FB7026B3062569A120F /* Pods-AWARE-CustomSensor-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-CustomSensor-resources.sh"; sourceTree = ""; }; 16CF65B5EAFF83DF7164CC47DBD6F62D /* IOSActivityRecognition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = IOSActivityRecognition.m; sourceTree = ""; }; 17594FD9A01E66CC61DD56973C698457 /* EntitySensorWifi+CoreDataClass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntitySensorWifi+CoreDataClass.h"; sourceTree = ""; }; 178C226C3A38EEAB700A7458614BBCF2 /* DataApproximator+N.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DataApproximator+N.swift"; path = "Source/Charts/Filters/DataApproximator+N.swift"; sourceTree = ""; }; 17ACDBAEE41EB547A117F0C7EAEC78FD /* ESMPAMView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ESMPAMView.m; sourceTree = ""; }; + 182BB719D7E2E2FF0EA284DB7AD504C4 /* Pods-Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-dummy.m"; sourceTree = ""; }; 18D94D095E4B1890EBEF294981550E18 /* GoogleLogin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = GoogleLogin.h; sourceTree = ""; }; - 1926A6D6BEB9B32D81C96BE348FA0B59 /* Pods-AWARE-SensingApp-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AWARE-SensingApp-umbrella.h"; sourceTree = ""; }; 19E4F906858CBCE4E69FD2A6068DB1C1 /* IFillFormatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IFillFormatter.swift; path = Source/Charts/Formatters/IFillFormatter.swift; sourceTree = ""; }; 1A21EFE1A9B450989653B43A8DB91855 /* EntityWifi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EntityWifi.h; sourceTree = ""; }; 1A53DDEC19BCB68670065BA3550EDFD5 /* HorizontalBarChartView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HorizontalBarChartView.swift; path = Source/Charts/Charts/HorizontalBarChartView.swift; sourceTree = ""; }; @@ -1649,93 +1716,101 @@ 1B1635D6665CAEE4D778F38BB151F59C /* ESMDateTimePickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ESMDateTimePickerView.h; sourceTree = ""; }; 1B20AF0628EB800F38C707901313BEA9 /* macros_blocks.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = macros_blocks.xcconfig; sourceTree = ""; }; 1B351388DE1E990A03C7D6A0582DBF44 /* TPCircularBuffer-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TPCircularBuffer-umbrella.h"; sourceTree = ""; }; - 1BBE4F0750484F96C19F0707D0F86964 /* Pods-AWARE-DynamicESM-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AWARE-DynamicESM-acknowledgements.markdown"; sourceTree = ""; }; - 1BC48DC5759F58F29AF2B73EA47C5E13 /* Pods-AWARE-CustomSensor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AWARE-CustomSensor-dummy.m"; sourceTree = ""; }; - 1BC92C16AD6DA1BDD9B8BCD4D40FD2F0 /* ios_ntp.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = ios_ntp.framework; path = "ios-ntp.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + 1B43BEDE3BB38F48F065ED7B26F7CADC /* Pods-AWARE-GoogleLogin-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AWARE-GoogleLogin-umbrella.h"; sourceTree = ""; }; 1C0EF4B4F83DC6F23CFE55DB7FD7B015 /* EntityIOSActivityRecognition+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityIOSActivityRecognition+CoreDataProperties.m"; sourceTree = ""; }; - 1C874ED00F93501B83E053EA031BAC70 /* Pods-AWARE-GoogleLogin-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AWARE-GoogleLogin-dummy.m"; sourceTree = ""; }; + 1C4D17BF5FDE70C93EAF599909BA9F28 /* GoogleToolboxForMac.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GoogleToolboxForMac.framework; path = GoogleToolboxForMac.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 1D4272D6F9D274207A44FEDC0423FD80 /* NetAssociation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NetAssociation.m; path = "ios-ntp-lib/NetAssociation.m"; sourceTree = ""; }; 1D6D4AD8C616630F5B88880F8EC63CAE /* SCReachabilityFlagsParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SCReachabilityFlagsParser.h; path = Classes/Private/SCReachabilityFlagsParser.h; sourceTree = ""; }; 1E09DAB5783549CA88D6189C30CC0BC1 /* CalEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CalEvent.h; sourceTree = ""; }; 1F5142213DDDEBC8C37273BB0D9A4EC1 /* EZAudioFloatData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EZAudioFloatData.m; sourceTree = ""; }; + 1F5643F29EC926D98FA42FD442FDA2DD /* Pods-AWARE-InteractiveESM.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-InteractiveESM.debug.xcconfig"; sourceTree = ""; }; 1FDAA18A64E7D26184110E9FB2E02BBD /* Locations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Locations.m; sourceTree = ""; }; + 203348665467EFA43D8A3F6A0DEB9D10 /* Pods-AWARE-CustomESM.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AWARE-CustomESM.modulemap"; sourceTree = ""; }; + 20470CFEAE0449736EC19A4C8044AE3A /* Pods-AWARE-CustomSensor.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-CustomSensor.debug.xcconfig"; sourceTree = ""; }; 206A9C704CB2F7B9E357ACF18905F098 /* AWARE_v5.xcdatamodel */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = wrapper.xcdatamodel; path = AWARE_v5.xcdatamodel; sourceTree = ""; }; 209FA294F59F1E169AD4610BAC07B482 /* EntityNTPTime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EntityNTPTime.h; sourceTree = ""; }; 20B7856671DB1DB68193539A713AA43D /* GoogleToolboxForMac-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleToolboxForMac-dummy.m"; sourceTree = ""; }; 2107676EB3FB6AB0DAAF5A1E8ECF5320 /* BubbleChartData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BubbleChartData.swift; path = Source/Charts/Data/Implementations/Standard/BubbleChartData.swift; sourceTree = ""; }; 22427DCE0AC50DB644A848F0AA1A6A4C /* BarChartDataEntry.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BarChartDataEntry.swift; path = Source/Charts/Data/Implementations/Standard/BarChartDataEntry.swift; sourceTree = ""; }; + 2243C2593145FE042E48AE82E9046069 /* Pods_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_Tests.framework; path = "Pods-Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 228798802C338A82A1F79CE814B5F563 /* ESMItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ESMItem.h; sourceTree = ""; }; 229E2DDD506E3174B1C33ADEDAEC3F26 /* AmbientNoise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AmbientNoise.m; sourceTree = ""; }; 22AF365C16BFDA484E0EDA303F538250 /* EntityProximity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EntityProximity.m; sourceTree = ""; }; + 22C85A85240451A555668233DAD6254C /* Pods-AWARE-AmbientNoise-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AWARE-AmbientNoise-acknowledgements.markdown"; sourceTree = ""; }; 22CC622E762BB7B75C8956ACB03E8AC4 /* AWARE_v7.xcdatamodel */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = wrapper.xcdatamodel; path = AWARE_v7.xcdatamodel; sourceTree = ""; }; 23332C7306330968B1CF2CABB1DBF67F /* CoreDataHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CoreDataHandler.h; sourceTree = ""; }; 235B5A71E8F61E23C93C6F0A8C6413BF /* Accelerometer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Accelerometer.h; sourceTree = ""; }; 237CF618EB3327377D4C5223A3B5248F /* EntityCalendar+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityCalendar+CoreDataProperties.h"; sourceTree = ""; }; 2405C4ACB41141C9736E29277E983021 /* Conversation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Conversation.h; sourceTree = ""; }; 2448FFF2612B676255D4204E1C58583C /* BarChartData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BarChartData.swift; path = Source/Charts/Data/Implementations/Standard/BarChartData.swift; sourceTree = ""; }; + 245513ED6A9E73552AD8323BA66714BF /* Pods-AWARE-GoogleLogin-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-GoogleLogin-Info.plist"; sourceTree = ""; }; + 24A6CCA3AFCE148D0A94614711CB5CC2 /* Pods-AWARE-SimpleClient-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-SimpleClient-acknowledgements.plist"; sourceTree = ""; }; 24B3EF991B20E4E35C83115D635AEB3F /* EntityLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EntityLocation.h; sourceTree = ""; }; 24B49452BDF5050FDA69BE7F0465200D /* AWARESensor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AWARESensor.m; sourceTree = ""; }; 24D23872D1F53A83F76671F7B52DDFE9 /* Fill.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Fill.swift; path = Source/Charts/Utils/Fill.swift; sourceTree = ""; }; - 25E4A3509A7E9FC6528A495A68489661 /* Pods-AWARE-Visualizer.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-Visualizer.release.xcconfig"; sourceTree = ""; }; + 2562EFF062E5C8B00A80CC2FB0AF37EA /* Pods-AWARE-InteractiveESM-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-InteractiveESM-frameworks.sh"; sourceTree = ""; }; + 265AF324878DE8D67034B951BD009489 /* Pods-AWARE-Fitbit-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AWARE-Fitbit-acknowledgements.markdown"; sourceTree = ""; }; 267D44A649616CD788BE17E4637D8A55 /* ESMPictureView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ESMPictureView.m; sourceTree = ""; }; - 277F2CBC878663ABDBAAD6BE419CC50E /* Pods-AWARE-DynamicESM.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-DynamicESM.debug.xcconfig"; sourceTree = ""; }; + 2768E0458BC0A3AEF6FB0DB7CABFF847 /* CocoaAsyncSocket.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CocoaAsyncSocket.framework; path = CocoaAsyncSocket.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 27A6509D0B220CCD2352252000069EEF /* SQLiteStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SQLiteStorage.m; sourceTree = ""; }; 27DFC1DBCEC2E4901343A3EF6F04481C /* EZAudioDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EZAudioDisplayLink.m; sourceTree = ""; }; + 28703270CFB531501A0BABBB21B80E4B /* Pods-AWARE-Fitbit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AWARE-Fitbit-umbrella.h"; sourceTree = ""; }; 289837FFEF51B481EF93C747FBB8A836 /* TPCircularBuffer+AudioBufferList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TPCircularBuffer+AudioBufferList.h"; sourceTree = ""; }; + 28B5FE73DE3B7CD0810E5FBDDF0B175A /* Pods-AWARE-SensingApp-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AWARE-SensingApp-umbrella.h"; sourceTree = ""; }; + 28C06E5F07721C5A025D4F95125BAC75 /* Pods-AWARE-SensingApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-SensingApp.release.xcconfig"; sourceTree = ""; }; 293AA76001FED60780BFC6EA43B2A56C /* BaseCoreDataHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BaseCoreDataHandler.h; sourceTree = ""; }; 29AF366AA50535D6E45292B31A227337 /* EntityFitbitDevice+CoreDataClass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityFitbitDevice+CoreDataClass.m"; sourceTree = ""; }; - 2ABE81B1E61A112AAB27E83CD3C23B5A /* Pods-AWARE-ScheduleESM-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AWARE-ScheduleESM-umbrella.h"; sourceTree = ""; }; + 29DF7DD0B0E71D18FC50B37AE89D58D8 /* Pods-AWARE-Fitbit-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-Fitbit-frameworks.sh"; sourceTree = ""; }; 2B1414EF165C703F6E9E6F7428E0CEFA /* EntityScreen+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityScreen+CoreDataProperties.m"; sourceTree = ""; }; 2B29E75A746E31B4E1302DEB1B31B0FE /* PieChartDataEntry.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PieChartDataEntry.swift; path = Source/Charts/Data/Implementations/Standard/PieChartDataEntry.swift; sourceTree = ""; }; 2B8C790EAEAB5F7FBDF5043F42F8B019 /* EntityMagnetometer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EntityMagnetometer.h; sourceTree = ""; }; 2BA0B9470E284DF1E5FB65DC1150A9AD /* SCReachabilityScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SCReachabilityScheduler.h; path = Classes/Private/SCReachabilityScheduler.h; sourceTree = ""; }; 2BB3F5755C19A348832154401600118E /* Charts-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Charts-dummy.m"; sourceTree = ""; }; - 2BDCA4132D09C3CA4D32239E1E70F499 /* Pods-AWARE-CustomSensor-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-CustomSensor-acknowledgements.plist"; sourceTree = ""; }; 2C20F408D000171D641D5A746BEAA704 /* SCNetworkReachability-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SCNetworkReachability-Info.plist"; sourceTree = ""; }; - 2CD5768E741A887DA5C0F4B5D21F2DBC /* Pods-AWARE-SensingApp-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-SensingApp-acknowledgements.plist"; sourceTree = ""; }; 2CD8AD9339416A4241B825538709BC93 /* BatteryDischarge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BatteryDischarge.m; sourceTree = ""; }; 2D23A627F22DAFEB48076E030AE7CDBF /* ViewPortHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewPortHandler.swift; path = Source/Charts/Utils/ViewPortHandler.swift; sourceTree = ""; }; 2E5C0933CF6C80E8E70416FC2378E78E /* EntityBLEHeartRate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EntityBLEHeartRate.h; sourceTree = ""; }; 2F4A038C1005B5DAE095870143888B3F /* ESMScheduleManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ESMScheduleManager.m; sourceTree = ""; }; 2F5E6323D895BD002396C4F52F3E1990 /* CombinedChartRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CombinedChartRenderer.swift; path = Source/Charts/Renderers/CombinedChartRenderer.swift; sourceTree = ""; }; 2F788ECA6D24F942DD6B9E410ACFE7EA /* 12_1.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 12_1.jpg; sourceTree = ""; }; + 2FA183BAC0E7FA6EA115CF5D838E713A /* Pods-AWARE-ConfigURLESM.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-ConfigURLESM.debug.xcconfig"; sourceTree = ""; }; 30060EB4C7274C536E59AAE8A9D6B49F /* CSVStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CSVStorage.m; sourceTree = ""; }; 308CFAFC21DD5DAC56DDF6AAE261551E /* EntityNTPTime.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EntityNTPTime.m; sourceTree = ""; }; 30DDFA0179556EEA360282DDCFC91E68 /* EntityConversation+CoreDataClass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityConversation+CoreDataClass.m"; sourceTree = ""; }; - 312C4FA24E2AA7E7C582C985C4DA1CA9 /* Pods-AWARE-AmbientNoise-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-AmbientNoise-resources.sh"; sourceTree = ""; }; 31717F306BB0E525BED3FBAD59D495E2 /* ESMRadioView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ESMRadioView.h; sourceTree = ""; }; 31DA0939C99CC0DE00F36E580558F454 /* EntityBarometer+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityBarometer+CoreDataProperties.h"; sourceTree = ""; }; 31F3E25423C8D96C7C4B2E129DF2C0D2 /* EntityNTPTime+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityNTPTime+CoreDataProperties.h"; sourceTree = ""; }; 327D4D7760189E1E0BFF51F975B08EF9 /* VisitLocations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = VisitLocations.m; sourceTree = ""; }; 32C0725F7D11B2D68CC87BD8C10827A2 /* ntp-log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ntp-log.h"; path = "ios-ntp-lib/ntp-log.h"; sourceTree = ""; }; 3344C8ACCC6D83FC0E2A360FD88F1D12 /* BarLineChartViewBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BarLineChartViewBase.swift; path = Source/Charts/Charts/BarLineChartViewBase.swift; sourceTree = ""; }; - 33AF7E47DE10694A5DC5428B827EC0EE /* Pods-AWARE-AmbientNoise-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AWARE-AmbientNoise-umbrella.h"; sourceTree = ""; }; + 339F2857AD13C98CB1517A4AD1C12A81 /* Pods-AWARE-AmbientNoise-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-AmbientNoise-Info.plist"; sourceTree = ""; }; 33E056CF2E9C00F54A8F236C45FD6D46 /* Fitbit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Fitbit.h; sourceTree = ""; }; - 340F5ADDBD8CBEDD925C1A8AFDF6D1EB /* Pods-AWARE-InteractiveESM-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AWARE-InteractiveESM-acknowledgements.markdown"; sourceTree = ""; }; 345EF9B8465C4D9EB54E800568CE24DE /* EntityESMAnswer+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityESMAnswer+CoreDataProperties.h"; sourceTree = ""; }; 34B4594FEE23C0ACE894C5F5845695BA /* SCNetworkReachability.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SCNetworkReachability.xcconfig; sourceTree = ""; }; 34CFB188B60A8F462DC026368999F546 /* BubbleChartDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BubbleChartDataProvider.swift; path = Source/Charts/Interfaces/BubbleChartDataProvider.swift; sourceTree = ""; }; 352B6DA3372257FFE15522C117855957 /* EntityESM+CoreDataClass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityESM+CoreDataClass.m"; sourceTree = ""; }; 35AAAA29158C33EBE23704A63ACB0F88 /* Assets.xcassets */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = AWAREFramework/Assets/Assets.xcassets; sourceTree = ""; }; 35C885FE295E6E28A4C72F0B083B7BDC /* 5_2.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 5_2.jpg; sourceTree = ""; }; - 35F271573A6E4C77D8FEE1D742F2A713 /* Pods-AWARE-AmbientNoise-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AWARE-AmbientNoise-acknowledgements.markdown"; sourceTree = ""; }; - 36344710D678A6877EEDF9B326B8269E /* Pods-AWARE-ConfigURLESM-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AWARE-ConfigURLESM-umbrella.h"; sourceTree = ""; }; 364E4458B383A71913FE105937038549 /* TPCircularBuffer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TPCircularBuffer.xcconfig; sourceTree = ""; }; 36D89AE1BA46FDD62D1D2FCE8CB32D8A /* EntityHealthKitCategory+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityHealthKitCategory+CoreDataProperties.m"; sourceTree = ""; }; 3734AC4720AA99C5194AAC9EFA55F66E /* SCNetworkReachability-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SCNetworkReachability-dummy.m"; sourceTree = ""; }; 3747A46D0ECB6BFCE745084786BDB0A2 /* Screen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Screen.h; sourceTree = ""; }; 375D9E757AB4338DDFDD1C1241970E3E /* EZAudioPlot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EZAudioPlot.h; sourceTree = ""; }; + 37765CA08EB14D5BC9607FB7C868C253 /* Pods-AWARE-InteractiveESM-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AWARE-InteractiveESM-umbrella.h"; sourceTree = ""; }; 380D5B07D898D0D081933B59E57775E2 /* GoogleToolboxForMac.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GoogleToolboxForMac.modulemap; sourceTree = ""; }; 385AA972D1287EDBB4D6E4EC0722EFE8 /* AWARECore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AWARECore.m; sourceTree = ""; }; 3884E322D67510423ADAC60D65CDB7E1 /* EntityHealthKitCategorySleep+CoreDataClass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityHealthKitCategorySleep+CoreDataClass.m"; sourceTree = ""; }; 38A4B66F536517FA952D9AC85BEA949B /* IChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IChartDataSet.swift; path = Source/Charts/Data/Interfaces/IChartDataSet.swift; sourceTree = ""; }; - 38E181D3174842B77D4384631F99108D /* Pods-AWARE-GoogleLogin-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AWARE-GoogleLogin-umbrella.h"; sourceTree = ""; }; - 3978FC60BF96E3FC2E99D9C65FAB726B /* Pods-AWARE-CustomESM-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AWARE-CustomESM-acknowledgements.markdown"; sourceTree = ""; }; 39D9EEC5B86303D590E7D67199C7E51D /* AWAREFramework.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = AWAREFramework.modulemap; sourceTree = ""; }; 39E0CDA8E06CDE24B276A3A0CA059EF1 /* IBarChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IBarChartDataSet.swift; path = Source/Charts/Data/Interfaces/IBarChartDataSet.swift; sourceTree = ""; }; + 3A0C83F0722F839E6B9A096EF3F4A5B7 /* SCNetworkReachability.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SCNetworkReachability.framework; path = SCNetworkReachability.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 3A1654F24CA305A8215195B0A363CAD5 /* Platform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.swift; path = Source/Charts/Utils/Platform.swift; sourceTree = ""; }; + 3B1B51B91FA27E96C04CA06DB51A4C42 /* Pods-AWARE-Visualizer-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-Visualizer-Info.plist"; sourceTree = ""; }; 3B2058D0F746C4A3CE8DC728B2863FDB /* IndexAxisValueFormatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IndexAxisValueFormatter.swift; path = Source/Charts/Formatters/IndexAxisValueFormatter.swift; sourceTree = ""; }; 3B2B6CC4F57B045B5BEE14364AF32AC8 /* TPCircularBuffer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TPCircularBuffer-prefix.pch"; sourceTree = ""; }; + 3B9E00390C173C2534E4B7C9653EB8D5 /* Pods-AWARE-Visualizer-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AWARE-Visualizer-acknowledgements.markdown"; sourceTree = ""; }; + 3C3796EF5307CADC338D139CFDA92952 /* Pods-AWARE-ScheduleESM-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-ScheduleESM-acknowledgements.plist"; sourceTree = ""; }; + 3C3DEF02C29367AE72A7C65BDEE01FDA /* Pods-AWARE-CustomESM-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-CustomESM-acknowledgements.plist"; sourceTree = ""; }; 3CBA866A394FA36AEBB87C9EED27605B /* PamSchema.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PamSchema.m; sourceTree = ""; }; 3CDE867CE677958D9DE281B19A9A5F7A /* Description.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Description.swift; path = Source/Charts/Components/Description.swift; sourceTree = ""; }; 3D12180658423FED7FD9635625203913 /* AWAREHealthKitQuantity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AWAREHealthKitQuantity.m; sourceTree = ""; }; @@ -1744,7 +1819,6 @@ 3F796B88A9BC71ADE221EF179B4296CF /* GTMDebugSelectorValidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMDebugSelectorValidation.h; path = DebugUtils/GTMDebugSelectorValidation.h; sourceTree = ""; }; 3F7A43BCA07BEC05D1BFEF6C2DEF101D /* EntityESM+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityESM+CoreDataProperties.h"; sourceTree = ""; }; 403F0BBF64FDA1B95E7793498FEC2AB8 /* 4_1.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 4_1.jpg; sourceTree = ""; }; - 404B6CBD4C96898FA07EF0417F463275 /* Pods-AWARE-GoogleLogin-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-GoogleLogin-frameworks.sh"; sourceTree = ""; }; 4054185FD366E6E344D166514CE83038 /* EntityProximity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EntityProximity.h; sourceTree = ""; }; 40CC563F56AA5BA50BA4C79D693BAADC /* Battery.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Battery.h; sourceTree = ""; }; 412458263C435030B780413BC866253E /* YAxis.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = YAxis.swift; path = Source/Charts/Components/YAxis.swift; sourceTree = ""; }; @@ -1754,60 +1828,57 @@ 42E41DF8FEE7DABA40CF256D7F57DC8A /* EntityMagnetometer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EntityMagnetometer.m; sourceTree = ""; }; 438FF59F7234A0CC5E4718A4DAF0E99C /* 4_3.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 4_3.jpg; sourceTree = ""; }; 439CC43FB5BBF38B2E2214CC0D48FF4D /* ESMFreeTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ESMFreeTextView.h; sourceTree = ""; }; - 442AE604CD73D2D0D39F99D611AD5499 /* Pods-AWARE-Fitbit-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-Fitbit-Info.plist"; sourceTree = ""; }; 447074C0663BDCB0BEFB2AD6158D913F /* EntityBattery.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EntityBattery.m; sourceTree = ""; }; 4480D04B678F5E46F5D6A8DC6F48BED4 /* 5_1.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 5_1.jpg; sourceTree = ""; }; - 44AB126B257FE86836422659F80367BE /* Pods-AWARE-GoogleLogin-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-GoogleLogin-resources.sh"; sourceTree = ""; }; - 45A4B0290B449A04ED8BB8F6FEBC5AB0 /* Pods-AWARE-Fitbit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AWARE-Fitbit-dummy.m"; sourceTree = ""; }; - 45CAD30D2DB349666289FA93EF83E22F /* Pods-AWARE-DynamicESM-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-DynamicESM-frameworks.sh"; sourceTree = ""; }; + 45FF008E52428B907D0B1FB4492BC209 /* Pods-AWARE-SensingApp-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-SensingApp-acknowledgements.plist"; sourceTree = ""; }; 4608D672E8BD2E3D034187A4CCA8972D /* EntityESMSchedule+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityESMSchedule+CoreDataProperties.m"; sourceTree = ""; }; 4720088E4C367444B40A2AF092B592DF /* ChartBaseDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChartBaseDataSet.swift; path = Source/Charts/Data/Implementations/ChartBaseDataSet.swift; sourceTree = ""; }; 4748DC902AB269207E9410A086DAA7B9 /* GTMSessionUploadFetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionUploadFetcher.m; path = Source/GTMSessionUploadFetcher.m; sourceTree = ""; }; + 477CEBB8EDCB4B9D39256C3D42D45D4B /* Pods-Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-acknowledgements.plist"; sourceTree = ""; }; 4799C46AF7FFB6F804A255A7FCE991A0 /* Proximity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Proximity.m; sourceTree = ""; }; 47B0EB31ED102F1BF714215AA08A7042 /* EntityDeviceUsage+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityDeviceUsage+CoreDataProperties.m"; sourceTree = ""; }; 4805A926856F66CDB2E69EEA297E7F0F /* SCReachabilityRefBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SCReachabilityRefBuilder.m; path = Classes/Private/SCReachabilityRefBuilder.m; sourceTree = ""; }; 483A502B5DECDFB6357B1E6105D8171D /* EntityESM+CoreDataClass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityESM+CoreDataClass.h"; sourceTree = ""; }; 48500BD02A2085A77664DE25E7F723EC /* EntityFitbitDevice+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityFitbitDevice+CoreDataProperties.h"; sourceTree = ""; }; + 487322B7C3ED3A29F745673A31770197 /* Pods_AWARE_GoogleLogin.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AWARE_GoogleLogin.framework; path = "Pods-AWARE-GoogleLogin.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 4873FB1938B9CA4555D691DBEDD7765C /* Calls.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Calls.h; sourceTree = ""; }; 48E6B98DDE338781B8F04DC4925FF913 /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Memory.h; sourceTree = ""; }; - 48FCB6314C9A30775B5CFE1246978398 /* Pods-AWARE-Visualizer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AWARE-Visualizer-dummy.m"; sourceTree = ""; }; - 4944F0E594D45407B2EE6508C35C586F /* Pods-AWARE-InteractiveESM.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-InteractiveESM.debug.xcconfig"; sourceTree = ""; }; 496126BE9CA2C787BA7C34C708E0F838 /* EZAudioiOS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EZAudioiOS.h; sourceTree = ""; }; 49804F30B645D19C6C247B96C43E1182 /* ESMSchedule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ESMSchedule.m; sourceTree = ""; }; 499F1E2ABD565714358C20BD4C9B2675 /* EntityFitbitData+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityFitbitData+CoreDataProperties.m"; sourceTree = ""; }; 49F55C4F6919F3891DB068CFC0A999C9 /* EZAudioPlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EZAudioPlayer.h; sourceTree = ""; }; 4A1D02BEADA37FA25967171E6935963F /* EntityHealthKitQuantityHR+CoreDataClass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityHealthKitQuantityHR+CoreDataClass.m"; sourceTree = ""; }; 4A4909F7CA11796FB01775403086038A /* 13_3.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 13_3.jpg; sourceTree = ""; }; - 4A7F5B2605FE3243684E82F01AFB2794 /* GTMSessionFetcher.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GTMSessionFetcher.framework; path = GTMSessionFetcher.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 4A8AFC46CEA0F622207B45678A81939D /* Memory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Memory.m; sourceTree = ""; }; 4AA0674BFCD54B28A1F3658D2C245F32 /* ESMPAMView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ESMPAMView.h; sourceTree = ""; }; 4ABD7DD46D69444B0B48EF4CA7EEA03C /* 3_1.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 3_1.jpg; sourceTree = ""; }; - 4AD583FE3BA288AB23945448EFE354E3 /* Pods-AWARE-SensingApp.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AWARE-SensingApp.modulemap"; sourceTree = ""; }; - 4B6359661F82B6014947FE7676F4752F /* Pods-AWARE-ScheduleESM-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AWARE-ScheduleESM-dummy.m"; sourceTree = ""; }; + 4B42BF7F814E0BE842693D188008BF5D /* Pods_AWARE_Visualizer.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AWARE_Visualizer.framework; path = "Pods-AWARE-Visualizer.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 4B744725108B06F9D15A7E8047B5605F /* SCNetworkReachability.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SCNetworkReachability.modulemap; sourceTree = ""; }; 4B78B6725FE4FBC2C41570DF0EBE8C73 /* GoogleToolboxForMac-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GoogleToolboxForMac-Info.plist"; sourceTree = ""; }; 4C23A651FA7938A6B96ED6064BB89216 /* EntityHealthKitQuantity+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityHealthKitQuantity+CoreDataProperties.h"; sourceTree = ""; }; 4C50949F52295EF13F3F9A71879347AD /* EntityPushNotification+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityPushNotification+CoreDataProperties.m"; sourceTree = ""; }; 4C666A3BE8CC4498E02B534543326BD2 /* 11_2.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 11_2.jpg; sourceTree = ""; }; 4C8D9F274E9955D0CA366D5864941AFB /* EntityBatteryCharge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EntityBatteryCharge.h; sourceTree = ""; }; - 4CB4F930947DFCE18580FF3C9D49EBA1 /* Pods-AWARE-CustomSensor-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-CustomSensor-frameworks.sh"; sourceTree = ""; }; 4CF649C391B68CA3CFFE57AB83342C18 /* XAxisRendererHorizontalBarChart.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = XAxisRendererHorizontalBarChart.swift; path = Source/Charts/Renderers/XAxisRendererHorizontalBarChart.swift; sourceTree = ""; }; - 4D33364CA796E69B40460E1C4C62E7C2 /* Pods-AWARE-ScheduleESM-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-ScheduleESM-resources.sh"; sourceTree = ""; }; 4D34BE03787BBA8FE42314BA79532E92 /* CircleShapeRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CircleShapeRenderer.swift; path = Source/Charts/Renderers/Scatter/CircleShapeRenderer.swift; sourceTree = ""; }; + 4D35A8336C456B8C2E1B7B5553189818 /* TPCircularBuffer.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = TPCircularBuffer.framework; path = TPCircularBuffer.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 4DD8F81589A9F925FF7F141C5C55F078 /* GTMSessionFetcherLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcherLogging.h; path = Source/GTMSessionFetcherLogging.h; sourceTree = ""; }; 4E0A1B223BC54333FF1BC371ACF79BDA /* RadarHighlighter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RadarHighlighter.swift; path = Source/Charts/Highlight/RadarHighlighter.swift; sourceTree = ""; }; 4E4A919E778C5DC3906475A67091EB94 /* ESMScrollViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ESMScrollViewController.h; sourceTree = ""; }; 4E625128955B912FC7869290EFB66EC6 /* SCNetworkReachability-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SCNetworkReachability-umbrella.h"; sourceTree = ""; }; 4E779475899CE167B7047F779796CF90 /* EntityBluetooth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EntityBluetooth.m; sourceTree = ""; }; 4E954E7FCBB6D23690C94B253D11B463 /* GCDAsyncUdpSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDAsyncUdpSocket.h; path = Source/GCD/GCDAsyncUdpSocket.h; sourceTree = ""; }; - 4EBA3CE21C482FD459635978433AF9D2 /* Pods-AWARE-ScheduleESM.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-ScheduleESM.release.xcconfig"; sourceTree = ""; }; 4F1087C3CB93051CE41F94B09429A6D8 /* Animator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Animator.swift; path = Source/Charts/Animation/Animator.swift; sourceTree = ""; }; 4F167191A6D27376E5F7428F440BD3F3 /* PieChartData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PieChartData.swift; path = Source/Charts/Data/Implementations/Standard/PieChartData.swift; sourceTree = ""; }; + 4F3336E847AA827CEC5F30F1FED36283 /* Pods-AWARE-Fitbit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AWARE-Fitbit.modulemap"; sourceTree = ""; }; + 4F3F23702A2207D41A06C2F8B007BB78 /* Pods-AWARE-ConfigURLESM-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AWARE-ConfigURLESM-acknowledgements.markdown"; sourceTree = ""; }; 4F96C201BF04A57F72F8CE4CAF48C618 /* AWARE.xcdatamodel */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = wrapper.xcdatamodel; path = AWARE.xcdatamodel; sourceTree = ""; }; 4FDFDA5FA5B05F658BAC3688EF6E4C49 /* EntityHealthKitCategorySleep+CoreDataClass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityHealthKitCategorySleep+CoreDataClass.h"; sourceTree = ""; }; + 4FF0301A7A8512505819069355FFF621 /* Pods-AWARE-ScheduleESM-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AWARE-ScheduleESM-dummy.m"; sourceTree = ""; }; 507D0BC97FDCC82E15461934BC2C338A /* EntityESMAnswer+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityESMAnswer+CoreDataProperties.m"; sourceTree = ""; }; 510AFC0EE44719D1B554B8CDC365D922 /* EntityLocation+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityLocation+CoreDataProperties.m"; sourceTree = ""; }; 518DBE0E3F075C9581B116DAAB9611C8 /* Barometer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Barometer.h; sourceTree = ""; }; + 51EBF80A3B56ADE90B493B0F5DD159A5 /* Pods-AWARE-SensingApp-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-SensingApp-resources.sh"; sourceTree = ""; }; 5288F31664A78D54CB0B28F1625F2962 /* ESMAudioView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ESMAudioView.h; sourceTree = ""; }; 52ADE3E0BDFE78C1AB7F8A5FD15E7DB6 /* EZAudioFloatConverter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EZAudioFloatConverter.m; sourceTree = ""; }; 52AEFD68C96D0075C7D117E5CB5905CA /* WiFiDeviceClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = WiFiDeviceClient.h; sourceTree = ""; }; @@ -1816,14 +1887,17 @@ 5373E8536262FAB8F52FAD7156C4764C /* GCDAsyncSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDAsyncSocket.m; path = Source/GCD/GCDAsyncSocket.m; sourceTree = ""; }; 538CC0BA07338E421DE86BFA319E4EBB /* EntityBLEHeartRate+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityBLEHeartRate+CoreDataProperties.h"; sourceTree = ""; }; 5399B5312687731FEB48F0B0697D6C31 /* EntityIOSPedometer+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityIOSPedometer+CoreDataProperties.m"; sourceTree = ""; }; + 54F045B26D3220A33D80E7E9D0076FCE /* Pods-AWARE-ConfigURLESM-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AWARE-ConfigURLESM-dummy.m"; sourceTree = ""; }; 551C7B5EA8FE224A4E69AE99743D853C /* EntityCalendar+CoreDataClass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityCalendar+CoreDataClass.h"; sourceTree = ""; }; 552A7426C22B87F310A9D5C95943649D /* EntityScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EntityScreen.m; sourceTree = ""; }; 553B289A6BE9236C302521916B858460 /* AWARECore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AWARECore.h; sourceTree = ""; }; 5593E1A08B19C094666F9B3307820D56 /* AWARESensors.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AWARESensors.m; sourceTree = ""; }; 55C3C068694199AD9F2788E91C9FC47F /* GTMSessionFetcherLogging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcherLogging.m; path = Source/GTMSessionFetcherLogging.m; sourceTree = ""; }; 5609215BA44E01F2C8567308834E75B5 /* Wifi.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Wifi.m; sourceTree = ""; }; + 56869F5835AC2830664C5A5AE21DBC90 /* Pods-AWARE-GoogleLogin.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AWARE-GoogleLogin.modulemap"; sourceTree = ""; }; 5706643F215EB71668CFE506159BFB23 /* AWAREKeys.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AWAREKeys.m; sourceTree = ""; }; 57617001DA0696A676BC40A9CB28D630 /* EntityMemory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EntityMemory.h; sourceTree = ""; }; + 57A53AC31B08B2CB45FEA6027E7591EA /* Pods-AWARE-SensingApp-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AWARE-SensingApp-acknowledgements.markdown"; sourceTree = ""; }; 580BFCF5908F345B3E4A571368DD235A /* HorizontalBarHighlighter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HorizontalBarHighlighter.swift; path = Source/Charts/Highlight/HorizontalBarHighlighter.swift; sourceTree = ""; }; 598FD330AD7760878B9B8D50F165BFB2 /* ESMWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ESMWebView.m; sourceTree = ""; }; 5995E7CAA3A4900B6559B17CB7000044 /* BaseCoreDataHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BaseCoreDataHandler.m; sourceTree = ""; }; @@ -1831,8 +1905,6 @@ 5A44B9D738F164BCC01184F467ACE171 /* IAxisValueFormatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IAxisValueFormatter.swift; path = Source/Charts/Formatters/IAxisValueFormatter.swift; sourceTree = ""; }; 5A74579490D1E615CA36696E82B16176 /* VisitLocations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = VisitLocations.h; sourceTree = ""; }; 5A80B7121621A50B22B028857B414ADD /* EntityESMAnswer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EntityESMAnswer.h; sourceTree = ""; }; - 5A8AD7339AB84B39C0CB81C887FA69DE /* Pods-AWARE-ConfigURLESM-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-ConfigURLESM-Info.plist"; sourceTree = ""; }; - 5ABD89917983EC80ADA35A46E65E65C0 /* Pods-AWARE-Fitbit-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-Fitbit-frameworks.sh"; sourceTree = ""; }; 5B363A18DC6C5D45E0AE4D5BC4193BD1 /* PushNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PushNotification.h; sourceTree = ""; }; 5B6BC8FF9C1DB113E247FC208B3D21DB /* FitbitData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = FitbitData.h; sourceTree = ""; }; 5B83747B6869E35674CD49627FA63504 /* Timezone.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Timezone.m; sourceTree = ""; }; @@ -1840,42 +1912,43 @@ 5BE1A46A2EF169B54A8E5FDEB92EF286 /* Highlight.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Highlight.swift; path = Source/Charts/Highlight/Highlight.swift; sourceTree = ""; }; 5C4DBF3F9DCFA6CCA944F67746ABB569 /* GTMSessionFetcher-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GTMSessionFetcher-dummy.m"; sourceTree = ""; }; 5C59F85538BE53F345E4258B738880EF /* IMarker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IMarker.swift; path = Source/Charts/Components/IMarker.swift; sourceTree = ""; }; - 5C6650A283F4FA6F2BD5F6B3C7418014 /* Pods-AWARE-InteractiveESM-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-InteractiveESM-Info.plist"; sourceTree = ""; }; 5CA466F6F3AA66C47059736D1AB8556D /* ESMClockLineView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ESMClockLineView.m; sourceTree = ""; }; - 5D533BD127D1DA74BD8D3B5BEE778459 /* Pods-AWARE-ConfigURLESM-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-ConfigURLESM-acknowledgements.plist"; sourceTree = ""; }; 5D8CD1DA0FE2224BC46DE0A0340C3FE5 /* ios-ntp-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ios-ntp-umbrella.h"; sourceTree = ""; }; - 5DB8F50386EF0121C9E2BA0D35A4FB5C /* Pods-AWARE-SensingApp-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AWARE-SensingApp-acknowledgements.markdown"; sourceTree = ""; }; 5E36FDA72121217DA6A42CFA1B259BD2 /* Magnetometer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Magnetometer.m; sourceTree = ""; }; + 5E4BEE0E4139D496B2E226A600964155 /* Pods-AWARE-Fitbit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AWARE-Fitbit-dummy.m"; sourceTree = ""; }; 5E7BA522D8DFDA5AF3EEAC4718FB9E44 /* 10_3.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 10_3.jpg; sourceTree = ""; }; 5E9DDC0BFE187884E7477FEE427ABA61 /* 9_1.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 9_1.jpg; sourceTree = ""; }; 5EB2B25B82E63CB5E542842D86A0BFBF /* ESMNumberView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ESMNumberView.m; sourceTree = ""; }; 5EBB7E5DE6916F15605E6AA18575853E /* EntityHealthKitQuantityHR+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityHealthKitQuantityHR+CoreDataProperties.m"; sourceTree = ""; }; 5EC9D4F52E20512659E2D464EA0E6041 /* ChevronDownShapeRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChevronDownShapeRenderer.swift; path = Source/Charts/Renderers/Scatter/ChevronDownShapeRenderer.swift; sourceTree = ""; }; - 5F3D8B80F8E6C4A382341C629D043C55 /* Pods-AWARE-Visualizer.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-Visualizer.debug.xcconfig"; sourceTree = ""; }; 600531070641BC37BEF885542DCD0FA7 /* 14_2.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 14_2.jpg; sourceTree = ""; }; 606795F16BF8826D843C4288D1008244 /* ChartHighlighter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChartHighlighter.swift; path = Source/Charts/Highlight/ChartHighlighter.swift; sourceTree = ""; }; 606802F1467DE246CA40C7A47554A14A /* ios-ntp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ios-ntp-dummy.m"; sourceTree = ""; }; 60BA2129557B19887A62831181CB4883 /* EntityTimezone.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EntityTimezone.m; sourceTree = ""; }; 60D887F73066B47D48FD0F59769747D4 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk/System/Library/Frameworks/SystemConfiguration.framework; sourceTree = DEVELOPER_DIR; }; 6140BECF711C5F6292046CF7F46A03DC /* CSVStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CSVStorage.h; sourceTree = ""; }; + 6168DA4A6513A5F746C0A45E53487F7C /* Pods-AWARE-Visualizer-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AWARE-Visualizer-umbrella.h"; sourceTree = ""; }; + 616972273D18AD9ADB8DEE871B9A1485 /* Pods_AWARE_CustomESM.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AWARE_CustomESM.framework; path = "Pods-AWARE-CustomESM.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 61ADF8356521B822C394B6E02D7DA85A /* Gravity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Gravity.m; sourceTree = ""; }; 6257B938303A3C4116357057A194E68E /* Processor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Processor.h; sourceTree = ""; }; 626008DC81459E225391EA0B03FC438C /* AWAREMotionSensor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AWAREMotionSensor.m; sourceTree = ""; }; 6269DAE989E63E0BB29FF9265C2C33E8 /* EntitySensorWifi+CoreDataClass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntitySensorWifi+CoreDataClass.m"; sourceTree = ""; }; + 62D64F39118A62D3D6A8F1BAEA55AB7E /* AWAREFramework.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AWAREFramework.framework; path = AWAREFramework.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 62EDFFF1EE88B937A21D0C1E11F9C22D /* EntityBattery+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityBattery+CoreDataProperties.m"; sourceTree = ""; }; 6307EBF3E6424F615E805AB8DFECEA71 /* EntityESMSchedule+CoreDataClass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityESMSchedule+CoreDataClass.m"; sourceTree = ""; }; 633C5AD42FF9562749423DC68FB83F53 /* EZAudioUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EZAudioUtilities.m; sourceTree = ""; }; - 6371B6F7E231CA4EFBF3CA0060D4D883 /* Pods-AWARE-CustomSensor.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-CustomSensor.release.xcconfig"; sourceTree = ""; }; - 640A57EEC8CDCFF52B8F2559C4CD2442 /* Pods-AWARE-AmbientNoise-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-AmbientNoise-acknowledgements.plist"; sourceTree = ""; }; + 63C85E57C385AADFAA3D745A712DBDFB /* Pods-AWARE-ConfigURLESM-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-ConfigURLESM-acknowledgements.plist"; sourceTree = ""; }; + 63D8134C6F007644C49926D8CB7FCF2A /* Pods-AWARE-GoogleLogin-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AWARE-GoogleLogin-dummy.m"; sourceTree = ""; }; 644A708A97FA94173C847F039FBAB76C /* TPCircularBuffer.c */ = {isa = PBXFileReference; includeInIndex = 1; path = TPCircularBuffer.c; sourceTree = ""; }; 6489591AF3057DB56C71FE58170E0CF2 /* EntityOpenWeather.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EntityOpenWeather.h; sourceTree = ""; }; + 64F11688DD24008487BA853C1462EBE8 /* Pods-AWARE-Visualizer-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-Visualizer-resources.sh"; sourceTree = ""; }; 64FBB7D99FB42F533C89F6D59D3FFD9C /* 9_2.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 9_2.jpg; sourceTree = ""; }; 6604CD715D1A32F13D1BF86541BFAC8A /* LineChartRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LineChartRenderer.swift; path = Source/Charts/Renderers/LineChartRenderer.swift; sourceTree = ""; }; 66713E400990322478565A099C35A172 /* EntityFitbitDevice+CoreDataClass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityFitbitDevice+CoreDataClass.h"; sourceTree = ""; }; 66DDD4E381C56C978E856DF795D6CEB1 /* TPCircularBuffer-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "TPCircularBuffer-Info.plist"; sourceTree = ""; }; 674C1D51173FE60DDBE10A5021C11484 /* TPCircularBuffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TPCircularBuffer.h; sourceTree = ""; }; 67F75933D317C38F89440072C0D65935 /* Contacts.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Contacts.m; sourceTree = ""; }; - 688D1C58AD581476B009D0129846D592 /* SCNetworkReachability.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SCNetworkReachability.framework; path = SCNetworkReachability.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 68B6A7D0F2F843870A790FE2C8CC39FD /* GTMSessionFetcher.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GTMSessionFetcher.framework; path = GTMSessionFetcher.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 690A6092B86D5AB450A49C8C31ED2F87 /* ESMItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ESMItem.m; sourceTree = ""; }; 6972617757013C06649B85ED449E928B /* Charts-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Charts-prefix.pch"; sourceTree = ""; }; 698C46AE62013D56C91290DC75CB1B09 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; @@ -1883,12 +1956,9 @@ 6AC77359F8EF912827F96DF7801D3073 /* EntityConversation+CoreDataClass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityConversation+CoreDataClass.h"; sourceTree = ""; }; 6B1F9D6E57F80C22B51A06F7B5C8B1F8 /* FitbitData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = FitbitData.m; sourceTree = ""; }; 6B3BB89BF445C922CA0680D583FB3FCD /* 6_2.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 6_2.jpg; sourceTree = ""; }; + 6B445619BF01B183F4C93342B0D3C891 /* Pods-AWARE-ScheduleESM-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-ScheduleESM-Info.plist"; sourceTree = ""; }; 6BA7BD2C3B38B4716F6A7D62D82AD4CF /* ESMWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ESMWebView.h; sourceTree = ""; }; 6BDCA1E5E01F8E965D4F148B08727796 /* BasicSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BasicSettings.h; sourceTree = ""; }; - 6C0B50BDC138E70D2CE9CB6817FE0950 /* Pods-AWARE-GoogleLogin.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-GoogleLogin.release.xcconfig"; sourceTree = ""; }; - 6C89D46BEA31E6E9E0D8450488251F84 /* Pods-AWARE-CustomESM.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-CustomESM.debug.xcconfig"; sourceTree = ""; }; - 6CD3F22BC9E910415367A8AE389566FB /* Pods-AWARE-SimpleClient.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-SimpleClient.debug.xcconfig"; sourceTree = ""; }; - 6CDA1DB22E50511C54EBBD944815B4B3 /* Pods-AWARE-InteractiveESM-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-InteractiveESM-acknowledgements.plist"; sourceTree = ""; }; 6CF3C92C16FE2E78781C1CA366BDABF9 /* AWARESensorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AWARESensorManager.h; sourceTree = ""; }; 6D60966FCE1FD0FE6C284CD537DB4EDE /* ChartLimitLine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChartLimitLine.swift; path = Source/Charts/Components/ChartLimitLine.swift; sourceTree = ""; }; 6D6FBD0F5B0833699D22E9251F76F5AA /* GoogleToolboxForMac.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleToolboxForMac.xcconfig; sourceTree = ""; }; @@ -1898,24 +1968,23 @@ 6EBA5982ECDF0BA270E912CDB4D1AFB2 /* AWAREFramework-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AWAREFramework-prefix.pch"; sourceTree = ""; }; 6EC5B8D8166B2C587A16C234D6BDA777 /* AWAREFramework-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "AWAREFramework-Info.plist"; sourceTree = ""; }; 6EF427960847FB442378F5D3C59170C1 /* MobileWiFi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MobileWiFi.h; sourceTree = ""; }; + 6F0800EEA075026D246114C328EB995F /* Pods-AWARE-SensingApp-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-SensingApp-frameworks.sh"; sourceTree = ""; }; 6F099299C0E11AA7D0CB5DADF88343E4 /* EZAudio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EZAudio.h; sourceTree = ""; }; 6FDD72499025BD2DB1AC1FE33E7FA4DB /* EntityProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EntityProcessor.h; sourceTree = ""; }; 70173C076D26C3708D1DD9419B76420C /* SCNetworkReachability-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SCNetworkReachability-prefix.pch"; sourceTree = ""; }; 708BD4F338D77AAB903B8EA76FE336DA /* Network.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Network.m; sourceTree = ""; }; - 70ACD7E9DE8F9A776966024DF20CD50E /* Pods-AWARE-ConfigURLESM.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-ConfigURLESM.debug.xcconfig"; sourceTree = ""; }; - 71178D30B2DB7BD36B6E9E72AE80DF8D /* Pods-AWARE-InteractiveESM-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AWARE-InteractiveESM-umbrella.h"; sourceTree = ""; }; 71FBE9F3A45F3F23D5F032A60E53BFDB /* Debug.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Debug.m; sourceTree = ""; }; 721C084221F0C403963CB40642B35BA7 /* 12_2.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 12_2.jpg; sourceTree = ""; }; 724E5C8E9B07FB07C4B1B15707C0EDA7 /* AWARESensorManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AWARESensorManager.m; sourceTree = ""; }; - 72CF49006212B407D71405CC64F7357E /* Pods-AWARE-AmbientNoise-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AWARE-AmbientNoise-dummy.m"; sourceTree = ""; }; - 72F0974DFE856EB24C140CAEE6BD8BB6 /* Pods-AWARE-CustomSensor-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AWARE-CustomSensor-acknowledgements.markdown"; sourceTree = ""; }; + 731D986C82EB0535345FEBA827C179A3 /* Pods-Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Tests-acknowledgements.markdown"; sourceTree = ""; }; 732D70CA31C3D7B4488B8CA22DFD160D /* EntityAmbientNoise+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityAmbientNoise+CoreDataProperties.h"; sourceTree = ""; }; 733760106F72C6D15C113B1CD5F78E83 /* GoogleLogin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = GoogleLogin.m; sourceTree = ""; }; - 737BB7E2F1538F7A730D623BB0C478DC /* Pods-AWARE-InteractiveESM.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-InteractiveESM.release.xcconfig"; sourceTree = ""; }; 73915DA2DC5F4E6C644A9EBEE7E34092 /* CoreDataHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CoreDataHandler.m; sourceTree = ""; }; + 7448D51B9B2C864769B7B0DED3610B4E /* Pods-AWARE-AmbientNoise.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-AmbientNoise.debug.xcconfig"; sourceTree = ""; }; 748820EA41C119145AF2D4DEB8EE9A4E /* ESMVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ESMVideoView.m; sourceTree = ""; }; - 74CC928BCC1D971AE4CE76ED2C303851 /* Pods-AWARE-DynamicESM-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-DynamicESM-resources.sh"; sourceTree = ""; }; 74FEA1E66BBBFC401D38EAAB2A239811 /* PieChartRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PieChartRenderer.swift; path = Source/Charts/Renderers/PieChartRenderer.swift; sourceTree = ""; }; + 7523BD91910A932D0DBF2BD15CEBC66C /* Pods-AWARE-SimpleClient-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AWARE-SimpleClient-umbrella.h"; sourceTree = ""; }; + 752754FF1460A01DEE0AF3C138ECC608 /* Pods-AWARE-DynamicESM-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-DynamicESM-frameworks.sh"; sourceTree = ""; }; 75B377143928177F7C55EDC4307FDD95 /* EZAudioFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EZAudioFile.h; sourceTree = ""; }; 760E7E4C9D9AF2204F08783A8F9E48EE /* Fitbit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Fitbit.m; sourceTree = ""; }; 76497FDB8E2814BC4C79E539FDF9AB46 /* WiFiManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = WiFiManager.h; sourceTree = ""; }; @@ -1928,79 +1997,88 @@ 779B9D2C00F3FA810E47DBE8ADFA9F62 /* IOSESM.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = IOSESM.m; sourceTree = ""; }; 77AAA8BFD382CF7090DD0502904C12AF /* OpenWeather.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OpenWeather.m; sourceTree = ""; }; 77D16A272C8702A63DF9F26F08610E7C /* BarLineScatterCandleBubbleChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BarLineScatterCandleBubbleChartDataSet.swift; path = Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartDataSet.swift; sourceTree = ""; }; - 77DB60BC2A524C1AD85AACA6CAB9F1F7 /* Pods-AWARE-ConfigURLESM-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-ConfigURLESM-frameworks.sh"; sourceTree = ""; }; 77F129298B3536EBE2E9D0EE4E81AF13 /* EZPlot.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EZPlot.m; sourceTree = ""; }; 77FD5667F32F304FFB8569C246D9F21A /* ChartColorTemplates.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChartColorTemplates.swift; path = Source/Charts/Utils/ChartColorTemplates.swift; sourceTree = ""; }; 7863B7257A410751425C7FEEBC292DE4 /* AWARE_v3.xcdatamodel */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = wrapper.xcdatamodel; path = AWARE_v3.xcdatamodel; sourceTree = ""; }; - 787C1B37216E1A58820A624A79C0A10E /* Pods-AWARE-InteractiveESM-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-InteractiveESM-frameworks.sh"; sourceTree = ""; }; 7949F3ADE2F78E95FC18A121AA821FCF /* TransformerHorizontalBarChart.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TransformerHorizontalBarChart.swift; path = Source/Charts/Utils/TransformerHorizontalBarChart.swift; sourceTree = ""; }; + 794A68C09CD774740BF7C73FE705F5A8 /* Charts.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Charts.framework; path = Charts.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 7989EBF35A16C53DB742722BEEA9E8C2 /* ESMCheckBoxView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ESMCheckBoxView.h; sourceTree = ""; }; 7A197D37A6B5BA1CB589595F988909E4 /* Rotation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Rotation.m; sourceTree = ""; }; - 7A792934039A6CB095ADC5C6C9F9C32D /* Pods-AWARE-Visualizer-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AWARE-Visualizer-umbrella.h"; sourceTree = ""; }; + 7A4C65CB294AE23EDA2BC3795187EBBE /* Pods-AWARE-ConfigURLESM-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-ConfigURLESM-Info.plist"; sourceTree = ""; }; 7ABC00782BBA71DC6830EDD742107FED /* EntityPushNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EntityPushNotification.h; sourceTree = ""; }; 7ADAC5C5B6866063AFDA63040C30DD76 /* Bluetooth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bluetooth.h; sourceTree = ""; }; + 7AFF32C0DE282D9D74E0A29D2FAA29BC /* Pods-AWARE-InteractiveESM-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-InteractiveESM-Info.plist"; sourceTree = ""; }; 7B191DFD46DB24CF34BBE46346BF9AF6 /* EntityMemory+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityMemory+CoreDataProperties.h"; sourceTree = ""; }; + 7B2BC82652F2541679106CE005955DA6 /* Pods-AWARE-CustomSensor.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AWARE-CustomSensor.modulemap"; sourceTree = ""; }; 7B6789E8BA3D8FCEBFCBCBAF40DBF0C9 /* EntityHealthKitQuantity+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityHealthKitQuantity+CoreDataProperties.m"; sourceTree = ""; }; - 7B941362BC9D272153987C3052B1D04A /* Pods_AWARE_SensingApp.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AWARE_SensingApp.framework; path = "Pods-AWARE-SensingApp.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + 7B9CE6AEEB4173222E63385D8D09057A /* Pods-AWARE-AmbientNoise-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-AmbientNoise-resources.sh"; sourceTree = ""; }; + 7BA747229FB4E1C7DC370FB11457339E /* Pods-AWARE-InteractiveESM-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-InteractiveESM-acknowledgements.plist"; sourceTree = ""; }; 7BAEEDF4C99118E9D3F1A6349C1783F7 /* AWAREDebugMessageLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AWAREDebugMessageLogger.h; sourceTree = ""; }; - 7C0A8764E641270F413935F8BEFDFA2B /* Pods-AWARE-SensingApp-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-SensingApp-resources.sh"; sourceTree = ""; }; 7C916EAD0E4505973AB34A2B5FDF9A1D /* EntityPushNotification+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityPushNotification+CoreDataProperties.h"; sourceTree = ""; }; 7D200FAC99036C1439F4F5860CF0D01F /* GoogleSignIn.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = GoogleSignIn.bundle; path = Resources/GoogleSignIn.bundle; sourceTree = ""; }; 7DE9585911F1543CFE368FE4CF42F024 /* EntityESM+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityESM+CoreDataProperties.m"; sourceTree = ""; }; 7EBC1EABC802D22CF8D04B745E433A2E /* GTMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = GTMDefines.h; sourceTree = ""; }; + 7EDA4C704EAEFE5E79F528C9DD1FEA6E /* Pods-AWARE-InteractiveESM.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AWARE-InteractiveESM.modulemap"; sourceTree = ""; }; 7EF6854057944D07C521B7BFE81A9306 /* ESMDateTimePickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ESMDateTimePickerView.m; sourceTree = ""; }; - 7F2C0B4C733D9D467BD46E3DA13CA238 /* Pods-AWARE-SimpleClient-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-SimpleClient-frameworks.sh"; sourceTree = ""; }; + 7FC53CE29A9BD9C07CC8D780E62F97F1 /* Pods-AWARE-DynamicESM-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AWARE-DynamicESM-umbrella.h"; sourceTree = ""; }; 7FD2FE12A10CD562CED1E52D497F0773 /* BubbleChartDataEntry.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BubbleChartDataEntry.swift; path = Source/Charts/Data/Implementations/Standard/BubbleChartDataEntry.swift; sourceTree = ""; }; 800E1C4E865B44A9F863877FE3899F27 /* EntityBarometer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EntityBarometer.h; sourceTree = ""; }; + 8016437F8F703C2E33C3B862B93BD6D8 /* Pods-AWARE-CustomSensor-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AWARE-CustomSensor-acknowledgements.markdown"; sourceTree = ""; }; 802C1AA1A747A617B57FBA213CA399D5 /* 13_1.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 13_1.jpg; sourceTree = ""; }; 804F4465F9F8D56532F2A27E0E522FD9 /* ios-ntp.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "ios-ntp.modulemap"; sourceTree = ""; }; - 80B01AB80FFA62D458CC26683DB277D1 /* TPCircularBuffer.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = TPCircularBuffer.framework; path = TPCircularBuffer.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 80EC73F0CEA4A7397ECA52CA7F6AEA02 /* ILineChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ILineChartDataSet.swift; path = Source/Charts/Data/Interfaces/ILineChartDataSet.swift; sourceTree = ""; }; 81834DAC428DFE8FE7D936489338E41C /* Gravity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Gravity.h; sourceTree = ""; }; 81B79A74EA7F671B934F14289CD2B396 /* CocoaAsyncSocket.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CocoaAsyncSocket.modulemap; sourceTree = ""; }; 81F099CED24F0C32B9F322ECEBA6F241 /* ILineScatterCandleRadarChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ILineScatterCandleRadarChartDataSet.swift; path = Source/Charts/Data/Interfaces/ILineScatterCandleRadarChartDataSet.swift; sourceTree = ""; }; 820D6B47C50D122A4304ACF2D7FC3AC8 /* EntityBatteryCharge+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityBatteryCharge+CoreDataProperties.h"; sourceTree = ""; }; + 821CB8F70803334053853D52BE6E75FE /* Pods-AWARE-InteractiveESM-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-InteractiveESM-resources.sh"; sourceTree = ""; }; + 82344DF048DBAED8DB2B0EF592363DE2 /* Pods-AWARE-ScheduleESM-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AWARE-ScheduleESM-umbrella.h"; sourceTree = ""; }; 823DFEE0C95BE4788395213E764B5B76 /* EntityDeviceUsage+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityDeviceUsage+CoreDataProperties.h"; sourceTree = ""; }; 82D33FD82CCC3E778497678E9E7E8637 /* EntityIOSActivityRecognition+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityIOSActivityRecognition+CoreDataProperties.h"; sourceTree = ""; }; 830F9A04F08C714E9BC9C457CB7FB853 /* EntityBatteryDischarge+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityBatteryDischarge+CoreDataProperties.h"; sourceTree = ""; }; + 833A956587A33B837649A214F40F2610 /* Pods-AWARE-ScheduleESM-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AWARE-ScheduleESM-acknowledgements.markdown"; sourceTree = ""; }; 83ACF3ED7B7CF75424FDBD7D562BAA7D /* EZAudio.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EZAudio.m; sourceTree = ""; }; - 8455136A564A7F6D1D6253D89E1BD12A /* Pods-AWARE-Fitbit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AWARE-Fitbit.modulemap"; sourceTree = ""; }; - 8495DE2CB2341A10C504F6C49E0B46C1 /* Pods-AWARE-SensingApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-SensingApp.release.xcconfig"; sourceTree = ""; }; + 8430C345D7EAD6DBFD5616D6376EAF79 /* Pods-AWARE-SimpleClient-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AWARE-SimpleClient-acknowledgements.markdown"; sourceTree = ""; }; 849CD05C264ED8CD954BA467211D006E /* EntityContact+CoreDataClass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityContact+CoreDataClass.h"; sourceTree = ""; }; 8523FB45DEDF655173DF36CE773ADBC3 /* 5_3.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 5_3.jpg; sourceTree = ""; }; 8544D2E69A4E022D43E520EDF1B5C8BA /* ChartDataEntryBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChartDataEntryBase.swift; path = Source/Charts/Data/Implementations/Standard/ChartDataEntryBase.swift; sourceTree = ""; }; 8582111591674E2D52622742756DC505 /* EntityConversation+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityConversation+CoreDataProperties.m"; sourceTree = ""; }; + 85A00BD738B1F110CFDD29E0C7D03725 /* Pods-Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-resources.sh"; sourceTree = ""; }; + 85B1877463F1F2240D47EC46774F5664 /* Pods-AWARE-Visualizer.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AWARE-Visualizer.modulemap"; sourceTree = ""; }; 86912FD326CE21C4653738FC28281801 /* YAxisRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = YAxisRenderer.swift; path = Source/Charts/Renderers/YAxisRenderer.swift; sourceTree = ""; }; 871EC264B3334A7FFFD9AA5034AD32D7 /* GTMNSString+URLArguments.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GTMNSString+URLArguments.m"; path = "Foundation/GTMNSString+URLArguments.m"; sourceTree = ""; }; 87DD0C36195BFF4ACE4AE7B1DFC9E762 /* EntityDebug.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EntityDebug.m; sourceTree = ""; }; - 87EB92C976A4D2465C67B55FA4896CE2 /* Pods-AWARE-SimpleClient.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AWARE-SimpleClient.modulemap"; sourceTree = ""; }; 87EDFA12E98ED9951FA0F310EC6495FB /* EntityContact+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityContact+CoreDataProperties.m"; sourceTree = ""; }; 882D3003A5ADE0D5ADC3D8942ED1CEB9 /* ExternalCoreDataHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ExternalCoreDataHandler.h; sourceTree = ""; }; - 88A60BC486BC2F625195DB55F758C4F1 /* Pods-AWARE-ConfigURLESM.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AWARE-ConfigURLESM.modulemap"; sourceTree = ""; }; 88E9311BBA1D85F0DADBD4BA85B3E189 /* EntityConversation+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityConversation+CoreDataProperties.h"; sourceTree = ""; }; - 8964E270EA638FAD1A3CF07D588B303C /* Pods-AWARE-DynamicESM.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AWARE-DynamicESM.modulemap"; sourceTree = ""; }; + 894D99A5B94885501F60ED9642EA9B55 /* Pods-AWARE-CustomSensor-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-CustomSensor-frameworks.sh"; sourceTree = ""; }; 8988036BEF79F3A4C6EE2CF1FF713E92 /* EZAudioFloatConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EZAudioFloatConverter.h; sourceTree = ""; }; 89ABBA1D57D58E7A17F8AA758BEFF77C /* EntityHealthKitQuantity+CoreDataClass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityHealthKitQuantity+CoreDataClass.m"; sourceTree = ""; }; - 8A15CCCD6A70C05391B65329EC216D25 /* Pods-AWARE-Fitbit-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-Fitbit-acknowledgements.plist"; sourceTree = ""; }; + 89B67EB4D29F542539989CD72AA6ADCB /* Pods-AWARE-ConfigURLESM.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AWARE-ConfigURLESM.modulemap"; sourceTree = ""; }; 8A4973B1E4928FAE0510C3B0D0A695F0 /* EntityGravity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EntityGravity.m; sourceTree = ""; }; 8A587E5ECD69B08E67C51BA9BE03073E /* 6_3.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 6_3.jpg; sourceTree = ""; }; - 8A767C27B03EEAA54273169FA7DC5BB7 /* Pods_AWARE_DynamicESM.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AWARE_DynamicESM.framework; path = "Pods-AWARE-DynamicESM.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 8AA4D406957DA6DFE363AAFD3FA534AB /* GoogleSignIn.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleSignIn.framework; path = Frameworks/GoogleSignIn.framework; sourceTree = ""; }; 8B02F98E4B123BA1EC8C7AA21F25FF53 /* Conversation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Conversation.m; sourceTree = ""; }; + 8B189481ABBF838E4B7714DDD6E44DFE /* Pods-Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-Info.plist"; sourceTree = ""; }; 8B2344C13EE911B02D337BE4136EB886 /* CandleChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CandleChartDataSet.swift; path = Source/Charts/Data/Implementations/Standard/CandleChartDataSet.swift; sourceTree = ""; }; 8BA9FE5AF7FED9C7FC8FB630A1FB3C82 /* IOSESM.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = IOSESM.h; sourceTree = ""; }; - 8BAB3DBE06E456BA7561640DD5D5EAD3 /* Pods-AWARE-InteractiveESM.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AWARE-InteractiveESM.modulemap"; sourceTree = ""; }; 8C1117A6E46425D2BF4C8CF3D1A84022 /* ESMScaleView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ESMScaleView.m; sourceTree = ""; }; 8CAC1708095C78F745CF20D12B2C3D96 /* EntityHealthKitCategorySleep+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityHealthKitCategorySleep+CoreDataProperties.m"; sourceTree = ""; }; 8CC8E95F7CAE64AA94B34C826CFBF3F9 /* EntityRotation+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityRotation+CoreDataProperties.m"; sourceTree = ""; }; 8CD66F886A7EFD0183F863020A029619 /* EntityBLEHeartRate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EntityBLEHeartRate.m; sourceTree = ""; }; 8CEC1887388214E60F92EF65E848EE4D /* NetworkClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NetworkClock.m; path = "ios-ntp-lib/NetworkClock.m"; sourceTree = ""; }; 8D101D19C774E000DB6192BE60135B06 /* EntityLocationVisit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EntityLocationVisit.m; sourceTree = ""; }; + 8D22062DAE258FD21F3ECD8DF2BE4237 /* Pods-Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-umbrella.h"; sourceTree = ""; }; 8D38652DB2D55A5091A03FB18EEF5BDA /* CalendarESMScheduler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CalendarESMScheduler.m; sourceTree = ""; }; 8D55FE69D4AEBEB3E4D56E9A51B05A7E /* BubbleChartView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BubbleChartView.swift; path = Source/Charts/Charts/BubbleChartView.swift; sourceTree = ""; }; + 8DAA057BCB93F2F88602295AD03FD893 /* Pods-AWARE-ConfigURLESM-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-ConfigURLESM-resources.sh"; sourceTree = ""; }; 8DB74C1AB2264A1B2504E230B6003B5C /* EntityProcessor+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityProcessor+CoreDataProperties.m"; sourceTree = ""; }; 8DDBB480A0911BC63D80BF6CE88B2081 /* EntityCalendar+CoreDataClass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityCalendar+CoreDataClass.m"; sourceTree = ""; }; + 8E34C283C8BB4305B283DA3B361335DC /* Pods_AWARE_CustomSensor.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AWARE_CustomSensor.framework; path = "Pods-AWARE-CustomSensor.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + 8E9937AC66105781F7D7D76AF7A4B1F7 /* Pods-AWARE-GoogleLogin-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-GoogleLogin-frameworks.sh"; sourceTree = ""; }; 8EBE9F520C84C482037A9264B31AEF33 /* JSONStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSONStorage.h; sourceTree = ""; }; + 8EE28B3E14953F63B5926E7ABFEEDCE4 /* Pods-AWARE-AmbientNoise.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-AmbientNoise.release.xcconfig"; sourceTree = ""; }; + 8EF98929B96DB6C82AF890C8DBBEDBFC /* Pods-AWARE-AmbientNoise-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AWARE-AmbientNoise-dummy.m"; sourceTree = ""; }; 8EFF3231B9B4814928CACEA36A012D6F /* EntityLocationVisit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EntityLocationVisit.h; sourceTree = ""; }; 8FA4FFBBD9118788ADE4AA0E0EDF1511 /* TriangleShapeRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TriangleShapeRenderer.swift; path = Source/Charts/Renderers/Scatter/TriangleShapeRenderer.swift; sourceTree = ""; }; 8FADAF05F75DBA3CA0E408E04250336C /* Transformer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Transformer.swift; path = Source/Charts/Utils/Transformer.swift; sourceTree = ""; }; @@ -2015,28 +2093,30 @@ 92AB65B42B58AFD92721A32B0918317A /* 12_3.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 12_3.jpg; sourceTree = ""; }; 92C13E9C4E4ACC1D68FDCD1D2F6B8B00 /* ios-ntp-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ios-ntp-Info.plist"; sourceTree = ""; }; 92F92E323F799C7555EA5D4B982BB7B2 /* BarHighlighter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BarHighlighter.swift; path = Source/Charts/Highlight/BarHighlighter.swift; sourceTree = ""; }; - 92FA4BDE34B298D5D9325884687EDECB /* Pods-AWARE-DynamicESM-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AWARE-DynamicESM-umbrella.h"; sourceTree = ""; }; 930035807F82F06B4A50BA4F210B5038 /* LinearAccelerometer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LinearAccelerometer.h; sourceTree = ""; }; - 9395C1A72F39FCFFAB08D0BE093F564B /* Pods-AWARE-Visualizer-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-Visualizer-frameworks.sh"; sourceTree = ""; }; + 931A0F6332A366B1A835E101678E3BF5 /* Pods-AWARE-GoogleLogin.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-GoogleLogin.release.xcconfig"; sourceTree = ""; }; 93AE207F3D3E88FEF0436723D34911C9 /* EntityAccelerometer+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityAccelerometer+CoreDataProperties.h"; sourceTree = ""; }; 93AE911058436723452747EAD72E0BE6 /* DefaultValueFormatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultValueFormatter.swift; path = Source/Charts/Formatters/DefaultValueFormatter.swift; sourceTree = ""; }; 942A7C9CD8B88437D756C6DB4FAF46CE /* RadarChartRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RadarChartRenderer.swift; path = Source/Charts/Renderers/RadarChartRenderer.swift; sourceTree = ""; }; 94508C25D7D3EADF8584F00EECF9AEA7 /* ChartData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChartData.swift; path = Source/Charts/Data/Implementations/Standard/ChartData.swift; sourceTree = ""; }; - 945C14048C20DFC62111BF575EFC11A9 /* Pods-AWARE-DynamicESM-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-DynamicESM-Info.plist"; sourceTree = ""; }; 94A5E843F2D974420FABFAB09B5FCBBC /* BarChartView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BarChartView.swift; path = Source/Charts/Charts/BarChartView.swift; sourceTree = ""; }; 94DC6AF91D6EDEA541695E5DF0D241FC /* SCNetworkStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SCNetworkStatus.h; path = Classes/Public/SCNetworkStatus.h; sourceTree = ""; }; 94E94D201374C6F67764BEE25A801A5A /* EntityAccelerometer+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityAccelerometer+CoreDataProperties.m"; sourceTree = ""; }; 955DCA04799744E2B412DD58D2AD5E46 /* EntityTimezone+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityTimezone+CoreDataProperties.h"; sourceTree = ""; }; 9561E67BAA17815EAA33E6E01A3701E9 /* AnimatedMoveViewJob.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedMoveViewJob.swift; path = Source/Charts/Jobs/AnimatedMoveViewJob.swift; sourceTree = ""; }; - 956B3862CA7C2F16EE1BEADAA6CB8586 /* Pods-AWARE-AmbientNoise-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-AmbientNoise-Info.plist"; sourceTree = ""; }; + 95E1BE88EA9DBDE62343AD4213CE6562 /* Pods-AWARE-Visualizer-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-Visualizer-frameworks.sh"; sourceTree = ""; }; 95F86F000696BE6F16C4689935A6E480 /* EZRecorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EZRecorder.h; sourceTree = ""; }; 962324CA271B39F3D97DF1E17A4B92AF /* AWAREStudy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AWAREStudy.m; sourceTree = ""; }; + 96B219B870DA7FA7A6275A284ADB73C2 /* Pods-AWARE-Visualizer.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-Visualizer.release.xcconfig"; sourceTree = ""; }; 96F9B796275A4580C28B41665E147B31 /* IScatterChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IScatterChartDataSet.swift; path = Source/Charts/Data/Interfaces/IScatterChartDataSet.swift; sourceTree = ""; }; 975A256753C48752BCD9255263197456 /* 16_2.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 16_2.jpg; sourceTree = ""; }; + 97DE68EED3285E61A7F4673B8E7862B7 /* AWAREFramework.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = AWAREFramework.bundle; path = "AWAREFramework-AWAREFramework.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; 97F4F46119CED9356EA0B418AD595DB9 /* ChartDataRendererBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChartDataRendererBase.swift; path = Source/Charts/Renderers/ChartDataRendererBase.swift; sourceTree = ""; }; + 980624DD5CB712AC26E9D66D2D7BDB54 /* Pods-AWARE-InteractiveESM-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AWARE-InteractiveESM-dummy.m"; sourceTree = ""; }; 983E8A19E88F367ED833690E14F0FA08 /* EntityOpenWeather+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityOpenWeather+CoreDataProperties.h"; sourceTree = ""; }; 98A5EF44620A3D837E0CF10D4093D0E0 /* EntityMagnetometer+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityMagnetometer+CoreDataProperties.h"; sourceTree = ""; }; 98F760198631B63B3C38D7EA5E688C0F /* ExternalCoreDataHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ExternalCoreDataHandler.m; sourceTree = ""; }; + 98FBDF3C2478BF36DBEDC6F5ED91A513 /* Pods-AWARE-SimpleClient.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-SimpleClient.release.xcconfig"; sourceTree = ""; }; 9934EB8A9A94701FD6768BA8FAC0DBF1 /* Timezone.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Timezone.h; sourceTree = ""; }; 99A09FE7EFE17009C339E9F0426E121F /* AWAREKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AWAREKeys.h; sourceTree = ""; }; 99ADAF28390F16CD8B119448AAFECD7C /* EntityAmbientNoise+CoreDataClass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityAmbientNoise+CoreDataClass.m"; sourceTree = ""; }; @@ -2044,23 +2124,22 @@ 9A10798D5A9324EE02EA796666D57F5C /* CandleChartData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CandleChartData.swift; path = Source/Charts/Data/Implementations/Standard/CandleChartData.swift; sourceTree = ""; }; 9A153AEB4ABF444333D1D1BC0B62981E /* EntityNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EntityNetwork.h; sourceTree = ""; }; 9A20099E7C626A3F0BB04A4879939BB2 /* EntityAmbientNoise+CoreDataClass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityAmbientNoise+CoreDataClass.h"; sourceTree = ""; }; - 9A2CE583F062633E630CAABB533E1DEA /* Pods-AWARE-SimpleClient-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-SimpleClient-acknowledgements.plist"; sourceTree = ""; }; + 9A5A72289255838271E2CBA48FE67353 /* Pods-AWARE-CustomSensor-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-CustomSensor-Info.plist"; sourceTree = ""; }; 9A85050B09BB293AEAD991AA6338F344 /* PushNotification.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PushNotification.m; sourceTree = ""; }; 9AD5293560F18811009B0742F55C069D /* EntityLocationVisit+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityLocationVisit+CoreDataProperties.m"; sourceTree = ""; }; - 9AE7F8E2D3B786808585C640B721A6BE /* Pods-AWARE-ConfigURLESM-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AWARE-ConfigURLESM-acknowledgements.markdown"; sourceTree = ""; }; + 9B28540CF71D47A6F42F6E1E880C7758 /* Pods-AWARE-SimpleClient-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AWARE-SimpleClient-dummy.m"; sourceTree = ""; }; 9B3A37946613259B0581E061227354F5 /* CandleStickChartRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CandleStickChartRenderer.swift; path = Source/Charts/Renderers/CandleStickChartRenderer.swift; sourceTree = ""; }; - 9BE343F2976BFFF9271FE05D585F4462 /* Pods-AWARE-CustomSensor-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-CustomSensor-Info.plist"; sourceTree = ""; }; 9C721B23BD00993823850BAA8EBE7E2F /* BubbleChartRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BubbleChartRenderer.swift; path = Source/Charts/Renderers/BubbleChartRenderer.swift; sourceTree = ""; }; 9C7E9ADC93605240CC204DF98F365269 /* 3_3.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 3_3.jpg; sourceTree = ""; }; + 9C8C3E9FB9B4E10CE90AB4546670B9A7 /* Pods-AWARE-ScheduleESM-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-ScheduleESM-frameworks.sh"; sourceTree = ""; }; 9CAA1CD761DF4E22177F5AC2B4683C4B /* CalEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CalEvent.m; sourceTree = ""; }; - 9CB3180ED7D3DEDF16EEAB644DE96B8A /* Pods-AWARE-SimpleClient-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-SimpleClient-Info.plist"; sourceTree = ""; }; 9CC0A65E3AF7839E9B311B33D97CB1DD /* BaseESMView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BaseESMView.m; sourceTree = ""; }; 9CC3803DAFD68F792E8F6594996EBCA9 /* BasicSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BasicSettings.m; sourceTree = ""; }; 9CDC4FED66BF38C555D8B62D79043BE3 /* TPCircularBuffer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TPCircularBuffer-dummy.m"; sourceTree = ""; }; 9CF3ADCBED822ACDBD56D9786148DB81 /* GCDAsyncSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDAsyncSocket.h; path = Source/GCD/GCDAsyncSocket.h; sourceTree = ""; }; + 9D27C5518223BCA328FC255618672645 /* Pods-AWARE-InteractiveESM.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-InteractiveESM.release.xcconfig"; sourceTree = ""; }; 9D3293DEA6C227427618354BA7A819E3 /* GTMMethodCheck.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMMethodCheck.h; path = DebugUtils/GTMMethodCheck.h; sourceTree = ""; }; 9D73C2C570BA3F932CDF5303C6588BCE /* BarChartDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BarChartDataProvider.swift; path = Source/Charts/Interfaces/BarChartDataProvider.swift; sourceTree = ""; }; - 9D8112B5F80FA7AF74982E67C84FC5FF /* Pods-AWARE-Visualizer-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-Visualizer-acknowledgements.plist"; sourceTree = ""; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 9E2E7D122FB6B64C72F3C42E3018C75D /* EntityAccelerometer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EntityAccelerometer.m; sourceTree = ""; }; 9E6B88F79AE08182878F0E9BF0589827 /* AWAREGoogleLoginViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AWAREGoogleLoginViewController.h; sourceTree = ""; }; @@ -2068,7 +2147,6 @@ 9F2E50CFD90F0C4002A50E08C1C4C98E /* 7_1.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 7_1.jpg; sourceTree = ""; }; 9F3A374B804E72768CBBFC3B3C23E021 /* SyncExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SyncExecutor.h; sourceTree = ""; }; 9F5594EA7199E3EB458F7AF175ABE5FB /* EntityHealthKitCategory+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityHealthKitCategory+CoreDataProperties.h"; sourceTree = ""; }; - A0C37D6D8C6CDE7B12B510209E8AF971 /* Pods-AWARE-GoogleLogin.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AWARE-GoogleLogin.modulemap"; sourceTree = ""; }; A0E0B28EC95025AB96E018851F286CF6 /* IPieChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IPieChartDataSet.swift; path = Source/Charts/Data/Interfaces/IPieChartDataSet.swift; sourceTree = ""; }; A143921D60CA9260769E0EEB7FC3AEAA /* AWAREFramework.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AWAREFramework.xcconfig; sourceTree = ""; }; A19794D18510C449A2ECE4F0DA107AB4 /* EntityBatteryDischarge+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityBatteryDischarge+CoreDataProperties.m"; sourceTree = ""; }; @@ -2076,37 +2154,39 @@ A2032087DD192CFF1CB0FA124144111B /* XAxisRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = XAxisRenderer.swift; path = Source/Charts/Renderers/XAxisRenderer.swift; sourceTree = ""; }; A2288331D130186959438386B193F8CA /* LineChartDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LineChartDataProvider.swift; path = Source/Charts/Interfaces/LineChartDataProvider.swift; sourceTree = ""; }; A24BB586DCF618DD84AC081EF048C898 /* EntityRotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EntityRotation.h; sourceTree = ""; }; - A2968D44372224D37F2B88F1564E7B4F /* Pods-AWARE-CustomESM-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-CustomESM-frameworks.sh"; sourceTree = ""; }; A2CAA8FE4C0B6797AD1A08BB64C999DF /* EZOutput.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EZOutput.h; sourceTree = ""; }; A34D41648C09440656C4D9236C231972 /* CandleChartDataEntry.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CandleChartDataEntry.swift; path = Source/Charts/Data/Implementations/Standard/CandleChartDataEntry.swift; sourceTree = ""; }; + A3BB994FB59E049E5DFACBBCF874FB79 /* Pods-AWARE-CustomESM-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-CustomESM-Info.plist"; sourceTree = ""; }; A45CFE85C31179971BAF261BFFB4EB87 /* AmbientNoise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AmbientNoise.h; sourceTree = ""; }; A49850F4EA7222AE00E6FF5AFD73AC56 /* CocoaAsyncSocket.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = CocoaAsyncSocket.framework; sourceTree = BUILT_PRODUCTS_DIR; }; A4A83EAA6D07AD3F75D9DE52780BB562 /* EZAudioFile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EZAudioFile.m; sourceTree = ""; }; - A4BACDFCD9F3150F1C71F13FC18EB5D4 /* Pods-AWARE-Fitbit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AWARE-Fitbit-umbrella.h"; sourceTree = ""; }; A59B282655F5A9FB35C7B72AF6CDEE20 /* EntityAccelerometer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EntityAccelerometer.h; sourceTree = ""; }; A6602EC64C60EC47E2795F4DCEA7237E /* EntityBattery.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EntityBattery.h; sourceTree = ""; }; A6AA304754D7E6D853CDEF9923329D50 /* EntityBLEHeartRate+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityBLEHeartRate+CoreDataProperties.m"; sourceTree = ""; }; A6B716B09B1DBC63CDAB012BD55B9119 /* DBTableCreator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DBTableCreator.h; sourceTree = ""; }; A6C45CC337FC39CF8AFD8848DFF00E22 /* GTMDebugThreadValidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMDebugThreadValidation.h; path = DebugUtils/GTMDebugThreadValidation.h; sourceTree = ""; }; A6E4C252DBBDB0A3BBC2DA2EBC7D842E /* ChartViewBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChartViewBase.swift; path = Source/Charts/Charts/ChartViewBase.swift; sourceTree = ""; }; - A748FE1D5ED82E6864DAD19C0A6B43C2 /* Pods_AWARE_CustomSensor.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AWARE_CustomSensor.framework; path = "Pods-AWARE-CustomSensor.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + A6EF00DCD3102DB5EE82FA865327814C /* Pods-AWARE-CustomESM-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-CustomESM-resources.sh"; sourceTree = ""; }; A74C3208B2D24B81241F73347A0B8063 /* GTMNSString+URLArguments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GTMNSString+URLArguments.h"; path = "Foundation/GTMNSString+URLArguments.h"; sourceTree = ""; }; A774E9827D9F1AB6847382565E9D1740 /* AWAREStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AWAREStorage.h; sourceTree = ""; }; A8AA14E626A233B10AD1E74519679FC9 /* GTMSessionFetcher-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GTMSessionFetcher-Info.plist"; sourceTree = ""; }; A8B558D82B1D3D48B4618C3F9A355958 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk/System/Library/Frameworks/AudioToolbox.framework; sourceTree = DEVELOPER_DIR; }; A9BFFB497061295F47729A4E2987F3C9 /* BarChartRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BarChartRenderer.swift; path = Source/Charts/Renderers/BarChartRenderer.swift; sourceTree = ""; }; - A9D91C192FFDF0ED3315FBE2D2DA5FDD /* Pods-AWARE-CustomESM-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-CustomESM-acknowledgements.plist"; sourceTree = ""; }; + A9F849D845C11F99F2624B2F2DA880E6 /* Pods_AWARE_DynamicESM.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AWARE_DynamicESM.framework; path = "Pods-AWARE-DynamicESM.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; AA04B9CB2DCEBA744F59FD36776FD5F9 /* Magnetometer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Magnetometer.h; sourceTree = ""; }; AA0A08C788F9ACC89DFAF44A03C83718 /* EntityBluetooth+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityBluetooth+CoreDataProperties.h"; sourceTree = ""; }; AA0B2202BE068425BCAEF7E47BC9F1A6 /* 8_3.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 8_3.jpg; sourceTree = ""; }; AA4188FDF3A34451A9ACDA10075F5701 /* IRadarChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IRadarChartDataSet.swift; path = Source/Charts/Data/Interfaces/IRadarChartDataSet.swift; sourceTree = ""; }; - AA519F39A4194C4E5AB92D35ADAC1789 /* Pods-AWARE-AmbientNoise.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-AmbientNoise.debug.xcconfig"; sourceTree = ""; }; AA63CD58A9AC72B7ADA0E90858AFC2F3 /* EntityWifi.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EntityWifi.m; sourceTree = ""; }; AAA7727CDD6AE1F4B71E14EAF5E7CED6 /* Pedometer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Pedometer.h; sourceTree = ""; }; + AAE0B14CE3E613F04C9F4129F65E96EE /* Pods-AWARE-ScheduleESM.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-ScheduleESM.debug.xcconfig"; sourceTree = ""; }; + AB3DB793D2E30E1C01C77996F7102A6E /* Pods-AWARE-Fitbit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-Fitbit.release.xcconfig"; sourceTree = ""; }; AB45A953D255AE26F619E359E4E1C278 /* EntityIOSPedometer+CoreDataClass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityIOSPedometer+CoreDataClass.h"; sourceTree = ""; }; AC185C5CB0505633B7724D5851A4C600 /* EZOutput.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EZOutput.m; sourceTree = ""; }; + AC4C8665B60EFA4BF8D25AC974D788AA /* Pods-AWARE-DynamicESM-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-DynamicESM-Info.plist"; sourceTree = ""; }; ACA94A3D50F88BF4CF4EBF06E7717E45 /* MarkerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MarkerView.swift; path = Source/Charts/Components/MarkerView.swift; sourceTree = ""; }; ACCE0EFE931AA706FEC04BE54AA12C07 /* Reachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Reachability.m; sourceTree = ""; }; + AD205424F381BCC7DF897F6ABBB8C66D /* Pods-AWARE-ScheduleESM.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-ScheduleESM.release.xcconfig"; sourceTree = ""; }; AD36B3589155A8AD69827A6CD703542B /* 1_1.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 1_1.jpg; sourceTree = ""; }; AD772DB01DB103756EB22DE925C316E1 /* 3_2.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 3_2.jpg; sourceTree = ""; }; ADF470BCE524729B5B9A8B9DE2E60CF8 /* ESMScaleView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ESMScaleView.h; sourceTree = ""; }; @@ -2121,28 +2201,20 @@ B0382B1074F316B1804CF3B1744C9B5D /* EntityMagnetometer+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityMagnetometer+CoreDataProperties.m"; sourceTree = ""; }; B0499DE2345E12BE17CAAA93BBDB48DD /* EZAudioUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EZAudioUtilities.h; sourceTree = ""; }; B0CD459995D1C02B372222CCE2869C9F /* FusedLocations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = FusedLocations.m; sourceTree = ""; }; - B0E96BB99336ECF4751DB9892CBEB295 /* Pods-AWARE-AmbientNoise.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-AmbientNoise.release.xcconfig"; sourceTree = ""; }; - B15DD0FB1FBACF6A94B3C91481FB4089 /* Pods_AWARE_Visualizer.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AWARE_Visualizer.framework; path = "Pods-AWARE-Visualizer.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; - B1B05FE14E74E55917FDDB31395E1A73 /* Pods-AWARE-GoogleLogin-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AWARE-GoogleLogin-acknowledgements.markdown"; sourceTree = ""; }; - B1F1F2845BF8453AC4035B7F69932C6F /* Pods-AWARE-ScheduleESM-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-ScheduleESM-frameworks.sh"; sourceTree = ""; }; - B2362368009B690E7CD0B9D06249C66D /* Pods_AWARE_CustomESM.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AWARE_CustomESM.framework; path = "Pods-AWARE-CustomESM.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + B11D8F73DDFEE27484BF17FA81DA4F4B /* Pods-AWARE-DynamicESM.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AWARE-DynamicESM.modulemap"; sourceTree = ""; }; B273F86F07249A4ADB600A9D032BF853 /* EntityLinearAccelerometer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EntityLinearAccelerometer.h; sourceTree = ""; }; + B294F083D60C70DA49482FA2675325D1 /* Pods-AWARE-Visualizer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AWARE-Visualizer-dummy.m"; sourceTree = ""; }; B2A51630AEF7B90DF902E2502053400A /* AWAREHealthKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AWAREHealthKit.h; sourceTree = ""; }; + B3446D2DFF31B35326F798BF3428D050 /* Pods-AWARE-CustomESM.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-CustomESM.release.xcconfig"; sourceTree = ""; }; B37A2692C90C8BD7075C950AD058D395 /* CalendarESMScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CalendarESMScheduler.h; sourceTree = ""; }; - B416D1AA9034269C3629DADA6039FEEE /* Pods-AWARE-SimpleClient-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AWARE-SimpleClient-acknowledgements.markdown"; sourceTree = ""; }; B455F93CD190A2AB982078D67E8C9B46 /* EntityESMAnswerHistory+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityESMAnswerHistory+CoreDataProperties.h"; sourceTree = ""; }; B49D7C77EDA7C263A79EDB8A75F69551 /* ChevronUpShapeRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChevronUpShapeRenderer.swift; path = Source/Charts/Renderers/Scatter/ChevronUpShapeRenderer.swift; sourceTree = ""; }; - B4D1647B08EDF25A5D63841C62320608 /* Pods_AWARE_ScheduleESM.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AWARE_ScheduleESM.framework; path = "Pods-AWARE-ScheduleESM.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; - B4D6429940BEE3FDFDCF9B90090E019A /* Pods-AWARE-CustomESM-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AWARE-CustomESM-umbrella.h"; sourceTree = ""; }; - B52107BAEE2A5DCE32F88556635C6829 /* Pods-AWARE-CustomESM.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AWARE-CustomESM.modulemap"; sourceTree = ""; }; B525B90D657C706439F981AFEF05D5D2 /* TPCircularBuffer+AudioBufferList.c */ = {isa = PBXFileReference; includeInIndex = 1; path = "TPCircularBuffer+AudioBufferList.c"; sourceTree = ""; }; - B59ED5BFF9F5198F3302E17978B68489 /* Pods-AWARE-DynamicESM-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-DynamicESM-acknowledgements.plist"; sourceTree = ""; }; + B5AC4C4D5157A826D0F2E2077107B166 /* Pods-AWARE-ScheduleESM-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-ScheduleESM-resources.sh"; sourceTree = ""; }; B5B59311CCE1DD158C8A935BA1FB114A /* EntityBarometer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EntityBarometer.m; sourceTree = ""; }; B60736B509F3854B0F0629C515E5231A /* ESMNumberView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ESMNumberView.h; sourceTree = ""; }; B61BDE0A419C7330492CC53B64BC48FB /* ChartUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChartUtils.swift; path = Source/Charts/Utils/ChartUtils.swift; sourceTree = ""; }; B75F41378DDD1E1CE0C2BB98DFA49FC4 /* BatteryCharge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BatteryCharge.m; sourceTree = ""; }; - B7602742638E2ED9676CC611B0FCA398 /* Pods-AWARE-Visualizer-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-Visualizer-resources.sh"; sourceTree = ""; }; - B7D94A96502B165A743AA3AB2BD569EE /* Pods-AWARE-Visualizer-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AWARE-Visualizer-acknowledgements.markdown"; sourceTree = ""; }; B8466CA9447383DAF602F34190777702 /* SQLiteStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SQLiteStorage.h; sourceTree = ""; }; B8792E5FBE97EE1C2FFA2377BB698B98 /* AnimatedViewPortJob.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedViewPortJob.swift; path = Source/Charts/Jobs/AnimatedViewPortJob.swift; sourceTree = ""; }; B8B2D4374CCCAB92C230A0244A9973E7 /* BatteryCharge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BatteryCharge.h; sourceTree = ""; }; @@ -2156,7 +2228,7 @@ B9A035A50251B24D0AC4F03F5B1F1E7E /* SCReachabilityScheduler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SCReachabilityScheduler.m; path = Classes/Private/SCReachabilityScheduler.m; sourceTree = ""; }; B9BAA32367D460C4345F717938103EE1 /* ESMSchedule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ESMSchedule.h; sourceTree = ""; }; B9DA4108D4CDCE9081AB761C1BDD5B4B /* EntityIOSActivityRecognition+CoreDataClass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityIOSActivityRecognition+CoreDataClass.m"; sourceTree = ""; }; - B9E69786F122019FABE4AAAD82DB63FE /* Pods-AWARE-CustomSensor-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AWARE-CustomSensor-umbrella.h"; sourceTree = ""; }; + B9E9738D0FD4A53984DC81B8DD7E5DC1 /* Pods-AWARE-AmbientNoise-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AWARE-AmbientNoise-umbrella.h"; sourceTree = ""; }; B9FFDFDCDF74EED4D75859A2BA2D28CB /* NSDate+NetworkClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSDate+NetworkClock.m"; path = "ios-ntp-lib/NSDate+NetworkClock.m"; sourceTree = ""; }; BB3355DC4FFE0F6C8064F9EE17E4919D /* SyncExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SyncExecutor.m; sourceTree = ""; }; BB9195C3424E85E959249ECAD38D32D0 /* FitbitDevice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = FitbitDevice.h; sourceTree = ""; }; @@ -2165,6 +2237,7 @@ BC62FC4402FA5CCE2B37268C1AAC68A6 /* 16_1.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 16_1.jpg; sourceTree = ""; }; BC949B5CBE5E0199314B3446CF0CA182 /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Orientation.m; sourceTree = ""; }; BD5C89EF86A5649EE487589047029F6B /* CocoaAsyncSocket-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CocoaAsyncSocket-umbrella.h"; sourceTree = ""; }; + BD802A20FC9421D46784A1365892EB73 /* Pods-AWARE-SimpleClient.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AWARE-SimpleClient.modulemap"; sourceTree = ""; }; BE36F96E67F214179AB02BB2B2B4DA26 /* CrossShapeRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CrossShapeRenderer.swift; path = Source/Charts/Renderers/Scatter/CrossShapeRenderer.swift; sourceTree = ""; }; BE730E3DA1FF028A85597D7CB8B11652 /* ChartDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChartDataProvider.swift; path = Source/Charts/Interfaces/ChartDataProvider.swift; sourceTree = ""; }; BE82B2716993B167BEC0FB1B7B2632A7 /* LegendEntry.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LegendEntry.swift; path = Source/Charts/Components/LegendEntry.swift; sourceTree = ""; }; @@ -2177,39 +2250,43 @@ C0138AFA5EED6B235A626F72433D9575 /* GoogleToolboxForMac-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleToolboxForMac-umbrella.h"; sourceTree = ""; }; C03765A84D290375B23D5369F7FD1DAD /* EntityRotation+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityRotation+CoreDataProperties.h"; sourceTree = ""; }; C06B14EB1B48B12A40F18028748CD00C /* Gyroscope.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Gyroscope.m; sourceTree = ""; }; + C0830DB3EF771C113B8DBE6B7ABBB927 /* Pods-Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests.debug.xcconfig"; sourceTree = ""; }; C0B3976406AB7A354E8C3016A5F9A847 /* Wifi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Wifi.h; sourceTree = ""; }; - C124C8A3888E0F275386825DAD7B6834 /* Pods-AWARE-ConfigURLESM-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AWARE-ConfigURLESM-dummy.m"; sourceTree = ""; }; C1704BB62AB625699EB5C5DE72FC5D8D /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Orientation.h; sourceTree = ""; }; + C18C075467771C8F6D623E13AF675F6E /* Pods-AWARE-DynamicESM-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AWARE-DynamicESM-dummy.m"; sourceTree = ""; }; C1C6B5E30C438DA0944B454E331CDC62 /* BarLineScatterCandleBubbleChartDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BarLineScatterCandleBubbleChartDataProvider.swift; path = Source/Charts/Interfaces/BarLineScatterCandleBubbleChartDataProvider.swift; sourceTree = ""; }; - C353E046AFEA1D74D3F2EB4E0C7F3BB0 /* Pods-AWARE-ScheduleESM.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AWARE-ScheduleESM.modulemap"; sourceTree = ""; }; - C3858980E86E8A79A585E6789146317A /* Pods-AWARE-Visualizer-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-Visualizer-Info.plist"; sourceTree = ""; }; C38D9B073751FF30201C91FCCB77427B /* EntityProximity+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityProximity+CoreDataProperties.m"; sourceTree = ""; }; - C3C5E4FACD2B85F138F71BE8A69029BC /* Pods-AWARE-DynamicESM-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AWARE-DynamicESM-dummy.m"; sourceTree = ""; }; C3CCE8A650D187D8C2F9657B8369EA16 /* LineScatterCandleRadarRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LineScatterCandleRadarRenderer.swift; path = Source/Charts/Renderers/LineScatterCandleRadarRenderer.swift; sourceTree = ""; }; C3E24F0407881A10F464970A4DC7760A /* CombinedChartView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CombinedChartView.swift; path = Source/Charts/Charts/CombinedChartView.swift; sourceTree = ""; }; + C4010F78583132348D35327863F7CC94 /* Pods-AWARE-Visualizer.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-Visualizer.debug.xcconfig"; sourceTree = ""; }; + C438B463C31D1F54DA33FB9221DE6810 /* Pods-AWARE-CustomSensor-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-CustomSensor-acknowledgements.plist"; sourceTree = ""; }; C44E57DF487A4FD2C77C6198BA7E4B70 /* SquareShapeRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SquareShapeRenderer.swift; path = Source/Charts/Renderers/Scatter/SquareShapeRenderer.swift; sourceTree = ""; }; C48B2E16D62E9F88BA1BFD61CD7628EE /* NetAssociation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetAssociation.h; path = "ios-ntp-lib/NetAssociation.h"; sourceTree = ""; }; C4B5CBD3A02D04737543307BE2D3F7AD /* PieRadarHighlighter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PieRadarHighlighter.swift; path = Source/Charts/Highlight/PieRadarHighlighter.swift; sourceTree = ""; }; + C539FDC5B51E4D37BC84EBCED26CA729 /* Pods-AWARE-SensingApp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AWARE-SensingApp-dummy.m"; sourceTree = ""; }; C547E4654BEFEDBEBD5ED30A91F1CD8B /* AudioAnalysis.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AudioAnalysis.m; sourceTree = ""; }; C57AC9E37DD5D5BC60EB71751B7C8D6C /* 15_2.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 15_2.jpg; sourceTree = ""; }; + C581CDA55B61EF2323E5F1D68EDB59CA /* Pods-AWARE-InteractiveESM-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AWARE-InteractiveESM-acknowledgements.markdown"; sourceTree = ""; }; C6AE82337842F732BCAEB6F8DDD58C19 /* AWAREUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AWAREUtils.h; sourceTree = ""; }; + C6E540297CCA18E8D9F0C609F1D47D7F /* Pods_AWARE_Fitbit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AWARE_Fitbit.framework; path = "Pods-AWARE-Fitbit.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; C6F37436685F48F7BEB58610B1E9EBDF /* SensorWifi.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SensorWifi.m; sourceTree = ""; }; C7191D8AC9B022894AF18C1ABE26490A /* EntityESMAnswerHistory+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityESMAnswerHistory+CoreDataProperties.m"; sourceTree = ""; }; C73124C260C5FEB9B4487FF10C569378 /* ESMClockLineView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ESMClockLineView.h; sourceTree = ""; }; C7360BD3423813A0E85D0FF3A61A209D /* LineRadarChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LineRadarChartDataSet.swift; path = Source/Charts/Data/Implementations/Standard/LineRadarChartDataSet.swift; sourceTree = ""; }; C74BDC72FBAE0236D000DFF68AEB7256 /* EntityCall+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityCall+CoreDataProperties.m"; sourceTree = ""; }; + C768659F934DA12E071995C6159B2C9E /* Pods-AWARE-GoogleLogin-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-GoogleLogin-acknowledgements.plist"; sourceTree = ""; }; C798827BE66C19A7DA4FBEB57B4A7CE8 /* EntityWifi+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityWifi+CoreDataProperties.m"; sourceTree = ""; }; C7E2F8F49C23A809DC9AB76F7D2D48C4 /* EntityBluetooth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EntityBluetooth.h; sourceTree = ""; }; C7ED0715B0B0FE112694FBCF5E89E66A /* AWAREHealthKitQuantity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AWAREHealthKitQuantity.h; sourceTree = ""; }; C819BB1A69FFFA8683E32119F758B275 /* Locations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Locations.h; sourceTree = ""; }; + C895079EB52858829491FADCBFCD8FB8 /* Pods-AWARE-GoogleLogin-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AWARE-GoogleLogin-acknowledgements.markdown"; sourceTree = ""; }; C89B0378DF29694A649F4C041A34D4A9 /* Gyroscope.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Gyroscope.h; sourceTree = ""; }; - C89CC56EA779FED2B69CEC33ACED8E4D /* Pods-AWARE-AmbientNoise-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-AmbientNoise-frameworks.sh"; sourceTree = ""; }; C8C671EC699D24791F68D91FBD7A7B52 /* GoogleToolboxForMac-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleToolboxForMac-prefix.pch"; sourceTree = ""; }; C8CF7786B9DA05A7815FE63EEBDB8219 /* Reachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Reachability.h; sourceTree = ""; }; C8E5183248A93FF82B1AAA3E5D872AF1 /* IOSActivityRecognition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = IOSActivityRecognition.h; sourceTree = ""; }; - C8FF5A8CF62ED6DA8ABA8C3BBC3D1486 /* Pods_AWARE_GoogleLogin.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AWARE_GoogleLogin.framework; path = "Pods-AWARE-GoogleLogin.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; C914A418F595117B92DDCE138E31C19A /* TPCircularBuffer.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = TPCircularBuffer.modulemap; sourceTree = ""; }; - C95329F3DB74E887A2633A9A4EA88537 /* Pods-AWARE-GoogleLogin-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-GoogleLogin-acknowledgements.plist"; sourceTree = ""; }; + C9323EECF3BB9FB79EBBF03CA35DEEEE /* Pods-AWARE-AmbientNoise.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AWARE-AmbientNoise.modulemap"; sourceTree = ""; }; + C9657E74B3904C34CA2E7959B8FFCDEE /* Pods-AWARE-CustomESM-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-CustomESM-frameworks.sh"; sourceTree = ""; }; C978BE3F2E89BC70F708DFCCA8F8EE63 /* CocoaAsyncSocket.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaAsyncSocket.xcconfig; sourceTree = ""; }; C97FC28D5AF07A852CC2FED889C8C80C /* AWAREHealthKitWorkout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AWAREHealthKitWorkout.m; sourceTree = ""; }; C9BA5B3F51062B0BCC8D356F2FC6CC9B /* EntityESMAnswer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EntityESMAnswer.m; sourceTree = ""; }; @@ -2222,24 +2299,26 @@ CBF11335697FA15586E6A53E0748C112 /* AWAREStudy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AWAREStudy.h; sourceTree = ""; }; CC6F4CF7D5ED6E7A951BFD6956C85B71 /* 2_1.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 2_1.jpg; sourceTree = ""; }; CC8952EC8ECF2FB1A455AA06E1C4DFBC /* PieChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PieChartDataSet.swift; path = Source/Charts/Data/Implementations/Standard/PieChartDataSet.swift; sourceTree = ""; }; + CCC0E002FD9D262BCCA7E25B0CC0731C /* Pods-AWARE-DynamicESM.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-DynamicESM.debug.xcconfig"; sourceTree = ""; }; CCC9AF149CE5C2F2DCAB16E6D8119B51 /* TCQMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = TCQMaker.m; sourceTree = ""; }; CCCAF9C8F5276E07932FA3CA26FAD93A /* PamSchema.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PamSchema.h; sourceTree = ""; }; CDC2C40B9E9221AE7CD1BE535F99EF61 /* EntityCall+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityCall+CoreDataProperties.h"; sourceTree = ""; }; CE3327018BBDC5747DD4A7F3E10A625F /* EntityDebug.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EntityDebug.h; sourceTree = ""; }; - CE6469CCA65B45CE19AE16F7C045691A /* Pods-AWARE-SimpleClient-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-SimpleClient-resources.sh"; sourceTree = ""; }; CE80DF83A7509AF8DCF5600D190F4453 /* PieHighlighter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PieHighlighter.swift; path = Source/Charts/Highlight/PieHighlighter.swift; sourceTree = ""; }; CEAFBA85140AB429775F1B9D6737C383 /* EntityFitbitData+CoreDataClass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityFitbitData+CoreDataClass.m"; sourceTree = ""; }; CF0E7552817C3E976DDCC84565690C36 /* AWAREHealthKitWorkout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AWAREHealthKitWorkout.h; sourceTree = ""; }; CF493C0035B81047299B8287935CD52D /* StudentLifeAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = StudentLifeAudio.framework; path = AWAREFramework/Frameworks/StudentLifeAudio.framework; sourceTree = ""; }; CF97DDD1C0DBD25BF57906DD0803574E /* ScatterChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScatterChartDataSet.swift; path = Source/Charts/Data/Implementations/Standard/ScatterChartDataSet.swift; sourceTree = ""; }; + CFA343C81A97E26576AAC365D68920AA /* Pods-AWARE-SimpleClient-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-SimpleClient-frameworks.sh"; sourceTree = ""; }; CFE209680DBAEBA51F53685268B7BD64 /* EntityOpenWeather+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityOpenWeather+CoreDataProperties.m"; sourceTree = ""; }; D09D8E5059121E0527494AC31D760C28 /* ESMVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ESMVideoView.h; sourceTree = ""; }; D158F0602F72CF0151F57AA620211CA0 /* EntityFitbitData+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityFitbitData+CoreDataProperties.h"; sourceTree = ""; }; - D1DD5272160DB55EA4772D7037B856A3 /* AWAREFramework.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = AWAREFramework.bundle; path = "AWAREFramework-AWAREFramework.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; D20731276B2DBE9C199A7740742AA076 /* TCQMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TCQMaker.h; sourceTree = ""; }; D2091D053FB056069311D9D1C4F9E996 /* RadarChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RadarChartDataSet.swift; path = Source/Charts/Data/Implementations/Standard/RadarChartDataSet.swift; sourceTree = ""; }; D209A42DF04D0354E953BBEC8C8704B3 /* EntityLinearAccelerometer+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityLinearAccelerometer+CoreDataProperties.m"; sourceTree = ""; }; D2406468FDE08B0988B0E9F0BCCD0B41 /* GTMSessionFetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcher.m; path = Source/GTMSessionFetcher.m; sourceTree = ""; }; + D2D9E29F0570E23F6CC4823E0D5D6190 /* Pods-AWARE-SensingApp-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-SensingApp-Info.plist"; sourceTree = ""; }; + D2E2578C343CE0EF42FA404DC1124A8B /* Pods_AWARE_SensingApp.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AWARE_SensingApp.framework; path = "Pods-AWARE-SensingApp.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; D3A606CAE55940DC50C586ACBDC69C58 /* EntityHealthKitCategorySleep+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityHealthKitCategorySleep+CoreDataProperties.h"; sourceTree = ""; }; D3CAF28A832AA9BA768E87C3BB9FAD00 /* ESM.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ESM.h; sourceTree = ""; }; D3DB25837EE0F54454204D9770726D62 /* 9_3.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 9_3.jpg; sourceTree = ""; }; @@ -2248,9 +2327,7 @@ D4A244C1DBCA523FD1C46C9F4F5A44D5 /* Calendar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Calendar.h; sourceTree = ""; }; D4ADEEE9A72D523911C0C29BA79B5A8F /* DefaultFillFormatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultFillFormatter.swift; path = Source/Charts/Formatters/DefaultFillFormatter.swift; sourceTree = ""; }; D57FFDDC524173F4B8AAC3CA64289FC5 /* BaseESMView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BaseESMView.h; sourceTree = ""; }; - D58716641806279DF2FBB46206149C68 /* Pods-AWARE-CustomSensor.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-CustomSensor.debug.xcconfig"; sourceTree = ""; }; D5C223A2A5C69C7DC549DA3797CF427D /* EntityDeviceUsage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EntityDeviceUsage.m; sourceTree = ""; }; - D619E69E60E478DD1D502525B1A16677 /* Pods-AWARE-GoogleLogin.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-GoogleLogin.debug.xcconfig"; sourceTree = ""; }; D633AF2FCBE2390BCE84DE1793B87B2B /* RadarChartDataEntry.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RadarChartDataEntry.swift; path = Source/Charts/Data/Implementations/Standard/RadarChartDataEntry.swift; sourceTree = ""; }; D66C0DF24E6D71D81BF74D44C505CB4B /* XShapeRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = XShapeRenderer.swift; path = Source/Charts/Renderers/Scatter/XShapeRenderer.swift; sourceTree = ""; }; D690C0F9134DEC7E98AC8B8189AA23FE /* AWARE_v6.xcdatamodel */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = wrapper.xcdatamodel; path = AWARE_v6.xcdatamodel; sourceTree = ""; }; @@ -2263,60 +2340,57 @@ D883FB8E19BC5AEABC7E70238071D398 /* IBarLineScatterCandleBubbleChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IBarLineScatterCandleBubbleChartDataSet.swift; path = Source/Charts/Data/Interfaces/IBarLineScatterCandleBubbleChartDataSet.swift; sourceTree = ""; }; D8B66045052EDD33F9F2821079630DD7 /* EntitySensorWifi+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntitySensorWifi+CoreDataProperties.m"; sourceTree = ""; }; D8EAB898BE184E2842D113D7BE8F4C68 /* ESMQuickAnswerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ESMQuickAnswerView.m; sourceTree = ""; }; + D9450FDA0AB7729686C64BEA62B67FDC /* Pods-AWARE-CustomSensor-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-CustomSensor-resources.sh"; sourceTree = ""; }; D952BA593768C88672DA30323BC1C43E /* ESMQuickAnswerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ESMQuickAnswerView.h; sourceTree = ""; }; D95D0BD73A71BCA20E6A38451DD48D76 /* EntityMemory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EntityMemory.m; sourceTree = ""; }; D99D2D45F7FABED7ACFD07622F3A0B33 /* ICandleChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ICandleChartDataSet.swift; path = Source/Charts/Data/Interfaces/ICandleChartDataSet.swift; sourceTree = ""; }; - D9B6F8AB89D959474B484EBDAAEFB7BD /* Pods_AWARE_ConfigURLESM.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AWARE_ConfigURLESM.framework; path = "Pods-AWARE-ConfigURLESM.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + D9ABC5A25F5DC726FD0A123597BEDCB0 /* Pods-AWARE-Fitbit-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-Fitbit-Info.plist"; sourceTree = ""; }; D9C79AD7C90E6A966CF6F611ADDA83F3 /* IBubbleChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IBubbleChartDataSet.swift; path = Source/Charts/Data/Interfaces/IBubbleChartDataSet.swift; sourceTree = ""; }; DA15383469AC55B47728010B48E45D4B /* GoogleSignIn.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleSignIn.xcconfig; sourceTree = ""; }; DB20AE51ACFA904A206E1740728B914B /* Charts.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Charts.xcconfig; sourceTree = ""; }; + DB3FB346FE1B58672A93EA6095A53E19 /* Pods-AWARE-GoogleLogin.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-GoogleLogin.debug.xcconfig"; sourceTree = ""; }; DB78705730C38B9688F721B1FA56F5FD /* LineRadarRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LineRadarRenderer.swift; path = Source/Charts/Renderers/LineRadarRenderer.swift; sourceTree = ""; }; - DB906218DDEA810697F457B4B4ACDA81 /* Pods-AWARE-SimpleClient-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AWARE-SimpleClient-dummy.m"; sourceTree = ""; }; + DBEEF065591E0A6ED65E1ECFCB78FE8F /* Pods-AWARE-GoogleLogin-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-GoogleLogin-resources.sh"; sourceTree = ""; }; DC2CE2CA41A04AC5CC0240E1D5FBDC4E /* BLEHeartRate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BLEHeartRate.m; sourceTree = ""; }; - DD50B9D3B6EFBA29298DB12E28CA3948 /* AWAREFramework.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AWAREFramework.framework; path = AWAREFramework.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - DD6353032F80C093158C9482AAA9E2A9 /* Pods-AWARE-ScheduleESM.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-ScheduleESM.debug.xcconfig"; sourceTree = ""; }; - DDE32D2F53FC975AAC534E8137B786A5 /* Pods-AWARE-SensingApp-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-SensingApp-frameworks.sh"; sourceTree = ""; }; + DC640909FC9BBFF08030909B2B322700 /* Pods-AWARE-ScheduleESM.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AWARE-ScheduleESM.modulemap"; sourceTree = ""; }; + DDBCDA9720B4BAD4572128B2FFE46345 /* Pods_AWARE_InteractiveESM.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AWARE_InteractiveESM.framework; path = "Pods-AWARE-InteractiveESM.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; DE08E0EC4C1BAF95CE67C0CD1E69620B /* 8_1.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 8_1.jpg; sourceTree = ""; }; DEA8886FC2D07CC80A7CD21EA7AE898D /* Calendar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Calendar.m; sourceTree = ""; }; DEC7AD912817C173378DC53B1D68B0EB /* BubbleChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BubbleChartDataSet.swift; path = Source/Charts/Data/Implementations/Standard/BubbleChartDataSet.swift; sourceTree = ""; }; - DFB54C90FCC0FF8A0A2C0D8D6EEFDEFB /* Pods-AWARE-DynamicESM.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-DynamicESM.release.xcconfig"; sourceTree = ""; }; DFC515B77E0C4631A789DD7B14C0F8F3 /* AWAREHealthKitCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AWAREHealthKitCategory.h; sourceTree = ""; }; DFE65AC017C515F33A238F026BD1644E /* Network.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Network.h; sourceTree = ""; }; - E05B9FE36B117DD5702DD2F34FB7387C /* GoogleToolboxForMac.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GoogleToolboxForMac.framework; path = GoogleToolboxForMac.framework; sourceTree = BUILT_PRODUCTS_DIR; }; E07941EB629088F21F11C82B86ACB900 /* WiFiNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = WiFiNetwork.h; sourceTree = ""; }; E0A9388A9F0C029C1F47EB5F507A64C2 /* ScatterChartRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScatterChartRenderer.swift; path = Source/Charts/Renderers/ScatterChartRenderer.swift; sourceTree = ""; }; + E0B0D66E430E363F7AE41AC9F6DFAD04 /* Pods-AWARE-SimpleClient-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-SimpleClient-resources.sh"; sourceTree = ""; }; E0D14E8461D1A688F0C6E1E684DF4964 /* EntityESMAnswerHistory+CoreDataClass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityESMAnswerHistory+CoreDataClass.h"; sourceTree = ""; }; - E12BDB507E1B87D4B865615063A0A50E /* Pods-AWARE-GoogleLogin-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-GoogleLogin-Info.plist"; sourceTree = ""; }; E132C56F3EB4F96D9D66074AE2545007 /* TPCircularBuffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TPCircularBuffer.h; sourceTree = ""; }; + E1723466949C268485DA279507E93AE6 /* Pods_AWARE_AmbientNoise.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AWARE_AmbientNoise.framework; path = "Pods-AWARE-AmbientNoise.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + E1924D3EDD4A99859A037F19882985A9 /* Pods-AWARE-DynamicESM-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-DynamicESM-resources.sh"; sourceTree = ""; }; E1983D18CD34378F518CCE8441A8BB05 /* Proximity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Proximity.h; sourceTree = ""; }; E1C4D1649363429B3FE16A4AE2DC6861 /* 14_3.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 14_3.jpg; sourceTree = ""; }; - E1DF8DA97A6B5C4F18D8FC36466F9C62 /* Pods-AWARE-SensingApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-SensingApp.debug.xcconfig"; sourceTree = ""; }; E221E0D8925B238CB18B748F042D59FB /* Charts-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Charts-Info.plist"; sourceTree = ""; }; + E2324667635AAA816BDF736D6C2550D5 /* Pods-AWARE-CustomESM.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-CustomESM.debug.xcconfig"; sourceTree = ""; }; E2B8F9C6419C012742A86E61B35E4B13 /* EntityWifi+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityWifi+CoreDataProperties.h"; sourceTree = ""; }; E2F4B570F7040797E3947B554927D88C /* PieChartView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PieChartView.swift; path = Source/Charts/Charts/PieChartView.swift; sourceTree = ""; }; E338FF6D29FF3FA991DF30B6D4C215A6 /* EntityHealthKitQuantity+CoreDataClass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityHealthKitQuantity+CoreDataClass.h"; sourceTree = ""; }; E373059F5037B094267F4ECBABD6CDA4 /* ESMPictureView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ESMPictureView.h; sourceTree = ""; }; - E385C2633AC4AC3F4DB6AD0CBBD76A5E /* Pods-AWARE-ScheduleESM-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AWARE-ScheduleESM-acknowledgements.markdown"; sourceTree = ""; }; + E3AC9D8021426EEFF2DA0FC8E9531A0A /* Pods-AWARE-SimpleClient.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-SimpleClient.debug.xcconfig"; sourceTree = ""; }; E3BB2624470DC4CF691DB0A791E7BC69 /* EntityBattery+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityBattery+CoreDataProperties.h"; sourceTree = ""; }; - E40D4553ED2973CD648E61200FD2609C /* Pods-AWARE-InteractiveESM-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AWARE-InteractiveESM-dummy.m"; sourceTree = ""; }; E482E4A46DDA6421C55015B7C4FD51F8 /* AWARESensor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AWARESensor.h; sourceTree = ""; }; - E4C07846958EC52688555CD6F084CE4A /* Pods-AWARE-CustomESM-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-CustomESM-Info.plist"; sourceTree = ""; }; - E4D890042B1D6F1381C7FD6F9194D0D9 /* Pods-AWARE-ScheduleESM-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-ScheduleESM-acknowledgements.plist"; sourceTree = ""; }; + E486AE5EE363EAA80D4A3C5D46BA57E1 /* Pods-AWARE-ConfigURLESM.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-ConfigURLESM.release.xcconfig"; sourceTree = ""; }; E5674AAA45DE4653B5737F9A93960D99 /* SensorWifi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SensorWifi.h; sourceTree = ""; }; E59B1FA3A6C6FBCA424C172D52675A57 /* EZAudioPlot.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EZAudioPlot.m; sourceTree = ""; }; - E59C3F07A21060FB45EAAA46C56184C2 /* Pods-AWARE-ConfigURLESM-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-ConfigURLESM-resources.sh"; sourceTree = ""; }; - E604AC6D0064E9ED28CFB5AD8A0F0F27 /* Pods-AWARE-CustomESM-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AWARE-CustomESM-dummy.m"; sourceTree = ""; }; E62CC3DA9CAF2DE7901CFA5A9CD1B204 /* DeviceUsage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DeviceUsage.h; sourceTree = ""; }; E62F05692116D573337A962C7D545B3B /* CombinedChartDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CombinedChartDataProvider.swift; path = Source/Charts/Interfaces/CombinedChartDataProvider.swift; sourceTree = ""; }; E6509BBDC4F6D960294F6826AC9659ED /* EntityBatteryDischarge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EntityBatteryDischarge.h; sourceTree = ""; }; - E7210D5946610B823C320E528841C864 /* Pods-AWARE-ConfigURLESM.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-ConfigURLESM.release.xcconfig"; sourceTree = ""; }; - E7328266DF33E608C2C860C25A56239B /* Pods-AWARE-SimpleClient.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-SimpleClient.release.xcconfig"; sourceTree = ""; }; + E75F1A6A3DBA31A05A557BEE08D93290 /* Pods-Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Tests.modulemap"; sourceTree = ""; }; E82177336D53A882F6342A103108E8F6 /* AWAREDebugMessageLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AWAREDebugMessageLogger.m; sourceTree = ""; }; E860BAAF3EC9E8D5FCF4714FC30C27C2 /* SCReachabilityRefBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SCReachabilityRefBuilder.h; path = Classes/Private/SCReachabilityRefBuilder.h; sourceTree = ""; }; E880DA85A702D8C4F6B18B47288EADDF /* HorizontalBarChartRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HorizontalBarChartRenderer.swift; path = Source/Charts/Renderers/HorizontalBarChartRenderer.swift; sourceTree = ""; }; E8A423F74E058F18E92E5B8CC85B75E8 /* LineChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LineChartDataSet.swift; path = Source/Charts/Data/Implementations/Standard/LineChartDataSet.swift; sourceTree = ""; }; E8E25A00A40FA3C82D9D90A08EBE1916 /* AxisBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AxisBase.swift; path = Source/Charts/Components/AxisBase.swift; sourceTree = ""; }; E902497F99B822872D03619311FB0234 /* EZRecorder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EZRecorder.m; sourceTree = ""; }; + E90466B09CF5C22B881B50B0B685B6E0 /* Pods_AWARE_SimpleClient.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AWARE_SimpleClient.framework; path = "Pods-AWARE-SimpleClient.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; E904C68E52C5A69FC9128533407D71F2 /* 2_3.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 2_3.jpg; sourceTree = ""; }; E96F57099DD14267FA4F03996CC833DD /* SCNetworkReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SCNetworkReachability.m; path = Classes/Public/SCNetworkReachability.m; sourceTree = ""; }; E98C6C7477ECBC33277D24694F70688E /* EntityScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EntityScreen.h; sourceTree = ""; }; @@ -2336,6 +2410,7 @@ EDE7772C6656BFDE1A6684BF9C38E48C /* AWAREUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AWAREUtils.m; sourceTree = ""; }; EDF862D8C2BDC3128DD57E9D5A9EC5AB /* Renderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Renderer.swift; path = Source/Charts/Renderers/Renderer.swift; sourceTree = ""; }; EDFF5735CDF76D4E33F643E43547F7E0 /* CombinedChartData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CombinedChartData.swift; path = Source/Charts/Data/Implementations/Standard/CombinedChartData.swift; sourceTree = ""; }; + EE2271DAFE70E2651F4C3B4562E326B9 /* Pods-AWARE-AmbientNoise-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-AmbientNoise-frameworks.sh"; sourceTree = ""; }; EE7B418EAD515D4570D7FD963E9D1B3D /* AWAREHealthKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AWAREHealthKit.m; sourceTree = ""; }; EEA9CBF924FC62517DEE5E5B6A641BE9 /* EntityIOSPedometer+CoreDataClass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityIOSPedometer+CoreDataClass.m"; sourceTree = ""; }; EF438F565A52D77DA8AA90A73C64D85F /* RadarChartData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RadarChartData.swift; path = Source/Charts/Data/Implementations/Standard/RadarChartData.swift; sourceTree = ""; }; @@ -2351,11 +2426,12 @@ F232EC6FC7F3B6FC3DA03700F2A0C6A9 /* YAxisRendererHorizontalBarChart.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = YAxisRendererHorizontalBarChart.swift; path = Source/Charts/Renderers/YAxisRendererHorizontalBarChart.swift; sourceTree = ""; }; F32579489346533A1BD43F9C5369F958 /* ComponentBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ComponentBase.swift; path = Source/Charts/Components/ComponentBase.swift; sourceTree = ""; }; F34A554324FC966C7543F2A2E27DB821 /* SCNetworkReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SCNetworkReachability.h; path = Classes/Public/SCNetworkReachability.h; sourceTree = ""; }; + F40FE266C8B88E723BE823A58C6E1A0C /* Pods_AWARE_ConfigURLESM.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AWARE_ConfigURLESM.framework; path = "Pods-AWARE-ConfigURLESM.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + F44F527518DD1490ACB11548AE19D74F /* Pods-AWARE-DynamicESM-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-DynamicESM-acknowledgements.plist"; sourceTree = ""; }; F4982E81CF34D5D7FBEBE1C0AE889682 /* 10_1.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 10_1.jpg; sourceTree = ""; }; F5431DE2052A9E835D2F6D2868D02430 /* AWARESensors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AWARESensors.h; sourceTree = ""; }; - F5C55D4E715E4D501B8D3C0ACF4B4CE6 /* Pods-AWARE-InteractiveESM-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AWARE-InteractiveESM-resources.sh"; sourceTree = ""; }; + F5C9571AEE018F15A832ADEA5A4EB5BF /* Pods-AWARE-CustomESM-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AWARE-CustomESM-umbrella.h"; sourceTree = ""; }; F61F9DE913E1761DC9C0C9DF45B8B8B3 /* EntityGyroscope+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityGyroscope+CoreDataProperties.h"; sourceTree = ""; }; - F65437D4AAC434FA1A8164768B4FD9CE /* Pods_AWARE_Fitbit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AWARE_Fitbit.framework; path = "Pods-AWARE-Fitbit.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; F66F20C3076DC74E47386D84F9600F27 /* EntityCalendar+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityCalendar+CoreDataProperties.m"; sourceTree = ""; }; F67682281AED571DFAD94D1EDA30EB1F /* IShapeRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IShapeRenderer.swift; path = Source/Charts/Renderers/Scatter/IShapeRenderer.swift; sourceTree = ""; }; F6B4B44CE267C5E27FD9D8E80FE47B79 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk/System/Library/Frameworks/Security.framework; sourceTree = DEVELOPER_DIR; }; @@ -2363,38 +2439,39 @@ F6CFF4071388DC65E71ABD4A5511F152 /* FusedLocations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = FusedLocations.h; sourceTree = ""; }; F742700819FE031AF3800D17F506A01D /* EntityDebug+CoreDataProperties.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EntityDebug+CoreDataProperties.m"; sourceTree = ""; }; F7538DE22224A8263F572CE3604A550A /* ESMClockTimePickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ESMClockTimePickerView.m; sourceTree = ""; }; - F799DCA941C0DC982ACF9596419ED479 /* CocoaAsyncSocket.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CocoaAsyncSocket.framework; path = CocoaAsyncSocket.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + F7697CD8F9DFA2359034C23CDA8B8B6E /* Pods-AWARE-CustomSensor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AWARE-CustomSensor-dummy.m"; sourceTree = ""; }; F7A74A9BBF9222C70246F66DBAA1CDFA /* DBTableCreator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DBTableCreator.m; sourceTree = ""; }; F7B4C92E4364003BB4791A1A8F0F8251 /* EntityLinearAccelerometer+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityLinearAccelerometer+CoreDataProperties.h"; sourceTree = ""; }; F8DD5B430BCB220F346A15BDCB4070FE /* GCDAsyncUdpSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDAsyncUdpSocket.m; path = Source/GCD/GCDAsyncUdpSocket.m; sourceTree = ""; }; F912717578694EA30EF0EF9EEF4C80E1 /* EntityDebug+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityDebug+CoreDataProperties.h"; sourceTree = ""; }; F9B5B6C5D73B0A318CC48BD12C26CEBA /* CandleChartDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CandleChartDataProvider.swift; path = Source/Charts/Interfaces/CandleChartDataProvider.swift; sourceTree = ""; }; F9BC1BDDEACC60A47FDDB508A7944DD7 /* EZAudioPlotGL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EZAudioPlotGL.m; sourceTree = ""; }; - F9F408DEFA49F816B7C0A14687FBEA2E /* Pods-AWARE-CustomSensor.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AWARE-CustomSensor.modulemap"; sourceTree = ""; }; FA025745601C95BD2754BEA428F39E03 /* XAxisRendererRadarChart.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = XAxisRendererRadarChart.swift; path = Source/Charts/Renderers/XAxisRendererRadarChart.swift; sourceTree = ""; }; FA732A96A28F95209C9BFEB2DA9574F0 /* Battery.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Battery.m; sourceTree = ""; }; FA7D8A296457B51CFEF577B2C1E48213 /* EntityNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EntityNetwork.m; sourceTree = ""; }; - FA7DA40F6C67FA97E7397CF1339B6E27 /* Pods_AWARE_SimpleClient.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AWARE_SimpleClient.framework; path = "Pods-AWARE-SimpleClient.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; FACA625EBB7878B856F719FAFE6D037E /* EZAudioDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EZAudioDisplayLink.h; sourceTree = ""; }; FAD4705493A7B345F5F4690FF7051B0E /* ESMAudioView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ESMAudioView.m; sourceTree = ""; }; + FAF3AF43F30B05D6414D76D442C6443D /* Pods-Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests.release.xcconfig"; sourceTree = ""; }; + FB0C1B55BF1FB0D3A4FE96BE87020340 /* Pods-AWARE-DynamicESM-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AWARE-DynamicESM-acknowledgements.markdown"; sourceTree = ""; }; FB6152114056CAEFEACEC3FECCB9297E /* LineScatterCandleRadarChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LineScatterCandleRadarChartDataSet.swift; path = Source/Charts/Data/Implementations/Standard/LineScatterCandleRadarChartDataSet.swift; sourceTree = ""; }; FB7745DC6F91DBEDCF02F4D8BC7ACC14 /* ESMLikertScaleView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ESMLikertScaleView.m; sourceTree = ""; }; FB776F2C2F11A0D4637AB85E92706199 /* EntityHealthKitQuantityHR+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityHealthKitQuantityHR+CoreDataProperties.h"; sourceTree = ""; }; FBB1310C86D23CE2E049F3F6B2CAF66C /* ScatterChartView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScatterChartView.swift; path = Source/Charts/Charts/ScatterChartView.swift; sourceTree = ""; }; FBB65F60ED47A07272241A887532A125 /* AWARE_v4.xcdatamodel */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = wrapper.xcdatamodel; path = AWARE_v4.xcdatamodel; sourceTree = ""; }; FBFE3330EC6DD83499FDBABF3B156B21 /* EntityPushNotification.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EntityPushNotification.m; sourceTree = ""; }; + FC35CA92E32279A7CA87DC7C48FCB064 /* Pods_AWARE_ScheduleESM.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AWARE_ScheduleESM.framework; path = "Pods-AWARE-ScheduleESM.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; FC518B85BA7337C07681498949B4F880 /* AnimatedZoomViewJob.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedZoomViewJob.swift; path = Source/Charts/Jobs/AnimatedZoomViewJob.swift; sourceTree = ""; }; FC631FA19F6E6A9959CFCCB18B662145 /* EntityProximity+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityProximity+CoreDataProperties.h"; sourceTree = ""; }; FC8460B530FF850705EC8532444D0791 /* GTMSessionFetcherService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcherService.h; path = Source/GTMSessionFetcherService.h; sourceTree = ""; }; FCDAA46FED540036E949524C98143293 /* MarkerImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MarkerImage.swift; path = Source/Charts/Components/MarkerImage.swift; sourceTree = ""; }; FCDF012D206D755CB2AA04BC2E45F64E /* EntityNetwork+CoreDataProperties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EntityNetwork+CoreDataProperties.h"; sourceTree = ""; }; - FCFAA7E6DCE60CEE6C63E8F6BF32F3AE /* Pods-AWARE-Fitbit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AWARE-Fitbit.release.xcconfig"; sourceTree = ""; }; FD15A2DD53B8776C0EA8B263166E5B54 /* macros_blocks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = macros_blocks.h; sourceTree = ""; }; + FD401DFB7C5469E3E5F6C459EC755788 /* Pods-AWARE-SimpleClient-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-SimpleClient-Info.plist"; sourceTree = ""; }; FD523F781D8903712DEA13F6AC22EBC0 /* ChartDataEntry.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChartDataEntry.swift; path = Source/Charts/Data/Implementations/Standard/ChartDataEntry.swift; sourceTree = ""; }; FDC2DDB163FA9CFDD88787ED5D5A8AC6 /* IValueFormatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IValueFormatter.swift; path = Source/Charts/Formatters/IValueFormatter.swift; sourceTree = ""; }; FE21156F8FB64D625CB7655B6C23A948 /* ESMRadioView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ESMRadioView.m; sourceTree = ""; }; FEBC180AD3F0A3F1B2B83183E398FC4E /* 15_3.jpg */ = {isa = PBXFileReference; includeInIndex = 1; path = 15_3.jpg; sourceTree = ""; }; - FF63D616F6718B7D191071A89A028BFE /* Pods-AWARE-SensingApp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AWARE-SensingApp-dummy.m"; sourceTree = ""; }; + FF4E8B1DE4355FEA05EAF8844DFE8935 /* Pods-AWARE-Visualizer-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AWARE-Visualizer-acknowledgements.plist"; sourceTree = ""; }; FFA2E3C11C2BCEAEFC5F8DF14631E495 /* BarChartDataSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BarChartDataSet.swift; path = Source/Charts/Data/Implementations/Standard/BarChartDataSet.swift; sourceTree = ""; }; /* End PBXFileReference section */ @@ -2432,6 +2509,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 2DCACFB45D0B0D7322B6943C2DE703AC /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 467165337768691CE04108A1836E7D65 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 2F1A8D4D677FFEDEF250E56B828AA94D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -2626,24 +2711,6 @@ path = 5_frustrated; sourceTree = ""; }; - 04A650B2D67B4C4328590170B6CC70DF /* Pods-AWARE-AmbientNoise */ = { - isa = PBXGroup; - children = ( - 14BA742BA0B0593597B7A53B6F50B18C /* Pods-AWARE-AmbientNoise.modulemap */, - 35F271573A6E4C77D8FEE1D742F2A713 /* Pods-AWARE-AmbientNoise-acknowledgements.markdown */, - 640A57EEC8CDCFF52B8F2559C4CD2442 /* Pods-AWARE-AmbientNoise-acknowledgements.plist */, - 72CF49006212B407D71405CC64F7357E /* Pods-AWARE-AmbientNoise-dummy.m */, - C89CC56EA779FED2B69CEC33ACED8E4D /* Pods-AWARE-AmbientNoise-frameworks.sh */, - 956B3862CA7C2F16EE1BEADAA6CB8586 /* Pods-AWARE-AmbientNoise-Info.plist */, - 312C4FA24E2AA7E7C582C985C4DA1CA9 /* Pods-AWARE-AmbientNoise-resources.sh */, - 33AF7E47DE10694A5DC5428B827EC0EE /* Pods-AWARE-AmbientNoise-umbrella.h */, - AA519F39A4194C4E5AB92D35ADAC1789 /* Pods-AWARE-AmbientNoise.debug.xcconfig */, - B0E96BB99336ECF4751DB9892CBEB295 /* Pods-AWARE-AmbientNoise.release.xcconfig */, - ); - name = "Pods-AWARE-AmbientNoise"; - path = "Target Support Files/Pods-AWARE-AmbientNoise"; - sourceTree = ""; - }; 04EDD7073F43886169BE9C068BD96CF1 /* ESMWebView */ = { isa = PBXGroup; children = ( @@ -2826,6 +2893,24 @@ path = Accelerometer; sourceTree = ""; }; + 1AB703334797AF55D257F4CBA545135D /* Pods-AWARE-Visualizer */ = { + isa = PBXGroup; + children = ( + 85B1877463F1F2240D47EC46774F5664 /* Pods-AWARE-Visualizer.modulemap */, + 3B9E00390C173C2534E4B7C9653EB8D5 /* Pods-AWARE-Visualizer-acknowledgements.markdown */, + FF4E8B1DE4355FEA05EAF8844DFE8935 /* Pods-AWARE-Visualizer-acknowledgements.plist */, + B294F083D60C70DA49482FA2675325D1 /* Pods-AWARE-Visualizer-dummy.m */, + 95E1BE88EA9DBDE62343AD4213CE6562 /* Pods-AWARE-Visualizer-frameworks.sh */, + 3B1B51B91FA27E96C04CA06DB51A4C42 /* Pods-AWARE-Visualizer-Info.plist */, + 64F11688DD24008487BA853C1462EBE8 /* Pods-AWARE-Visualizer-resources.sh */, + 6168DA4A6513A5F746C0A45E53487F7C /* Pods-AWARE-Visualizer-umbrella.h */, + C4010F78583132348D35327863F7CC94 /* Pods-AWARE-Visualizer.debug.xcconfig */, + 96B219B870DA7FA7A6275A284ADB73C2 /* Pods-AWARE-Visualizer.release.xcconfig */, + ); + name = "Pods-AWARE-Visualizer"; + path = "Target Support Files/Pods-AWARE-Visualizer"; + sourceTree = ""; + }; 1BD95AB44EDA8A7E95359D42746EC0AE /* Core */ = { isa = PBXGroup; children = ( @@ -2901,24 +2986,6 @@ path = "../Target Support Files/ios-ntp"; sourceTree = ""; }; - 243B334DD1EA4C7513C7A6BB617F97F7 /* Pods-AWARE-ConfigURLESM */ = { - isa = PBXGroup; - children = ( - 88A60BC486BC2F625195DB55F758C4F1 /* Pods-AWARE-ConfigURLESM.modulemap */, - 9AE7F8E2D3B786808585C640B721A6BE /* Pods-AWARE-ConfigURLESM-acknowledgements.markdown */, - 5D533BD127D1DA74BD8D3B5BEE778459 /* Pods-AWARE-ConfigURLESM-acknowledgements.plist */, - C124C8A3888E0F275386825DAD7B6834 /* Pods-AWARE-ConfigURLESM-dummy.m */, - 77DB60BC2A524C1AD85AACA6CAB9F1F7 /* Pods-AWARE-ConfigURLESM-frameworks.sh */, - 5A8AD7339AB84B39C0CB81C887FA69DE /* Pods-AWARE-ConfigURLESM-Info.plist */, - E59C3F07A21060FB45EAAA46C56184C2 /* Pods-AWARE-ConfigURLESM-resources.sh */, - 36344710D678A6877EEDF9B326B8269E /* Pods-AWARE-ConfigURLESM-umbrella.h */, - 70ACD7E9DE8F9A776966024DF20CD50E /* Pods-AWARE-ConfigURLESM.debug.xcconfig */, - E7210D5946610B823C320E528841C864 /* Pods-AWARE-ConfigURLESM.release.xcconfig */, - ); - name = "Pods-AWARE-ConfigURLESM"; - path = "Target Support Files/Pods-AWARE-ConfigURLESM"; - sourceTree = ""; - }; 28E72D5DAFA3F18F05B11B690F4A2945 /* ESMText */ = { isa = PBXGroup; children = ( @@ -3100,32 +3167,32 @@ path = 9_miserable; sourceTree = ""; }; - 3FB1C70A67822C05F144240BDB9E8C91 /* CSV */ = { + 3F8385E8FC97787D83B7C9301CDC124F /* Pods-AWARE-GoogleLogin */ = { isa = PBXGroup; children = ( - 6140BECF711C5F6292046CF7F46A03DC /* CSVStorage.h */, - 30060EB4C7274C536E59AAE8A9D6B49F /* CSVStorage.m */, + 56869F5835AC2830664C5A5AE21DBC90 /* Pods-AWARE-GoogleLogin.modulemap */, + C895079EB52858829491FADCBFCD8FB8 /* Pods-AWARE-GoogleLogin-acknowledgements.markdown */, + C768659F934DA12E071995C6159B2C9E /* Pods-AWARE-GoogleLogin-acknowledgements.plist */, + 63D8134C6F007644C49926D8CB7FCF2A /* Pods-AWARE-GoogleLogin-dummy.m */, + 8E9937AC66105781F7D7D76AF7A4B1F7 /* Pods-AWARE-GoogleLogin-frameworks.sh */, + 245513ED6A9E73552AD8323BA66714BF /* Pods-AWARE-GoogleLogin-Info.plist */, + DBEEF065591E0A6ED65E1ECFCB78FE8F /* Pods-AWARE-GoogleLogin-resources.sh */, + 1B43BEDE3BB38F48F065ED7B26F7CADC /* Pods-AWARE-GoogleLogin-umbrella.h */, + DB3FB346FE1B58672A93EA6095A53E19 /* Pods-AWARE-GoogleLogin.debug.xcconfig */, + 931A0F6332A366B1A835E101678E3BF5 /* Pods-AWARE-GoogleLogin.release.xcconfig */, ); - name = CSV; - path = CSV; + name = "Pods-AWARE-GoogleLogin"; + path = "Target Support Files/Pods-AWARE-GoogleLogin"; sourceTree = ""; }; - 4026240C334265A77B86422299053DE7 /* Pods-AWARE-CustomSensor */ = { + 3FB1C70A67822C05F144240BDB9E8C91 /* CSV */ = { isa = PBXGroup; children = ( - F9F408DEFA49F816B7C0A14687FBEA2E /* Pods-AWARE-CustomSensor.modulemap */, - 72F0974DFE856EB24C140CAEE6BD8BB6 /* Pods-AWARE-CustomSensor-acknowledgements.markdown */, - 2BDCA4132D09C3CA4D32239E1E70F499 /* Pods-AWARE-CustomSensor-acknowledgements.plist */, - 1BC48DC5759F58F29AF2B73EA47C5E13 /* Pods-AWARE-CustomSensor-dummy.m */, - 4CB4F930947DFCE18580FF3C9D49EBA1 /* Pods-AWARE-CustomSensor-frameworks.sh */, - 9BE343F2976BFFF9271FE05D585F4462 /* Pods-AWARE-CustomSensor-Info.plist */, - 16C094EBC4FF4FB7026B3062569A120F /* Pods-AWARE-CustomSensor-resources.sh */, - B9E69786F122019FABE4AAAD82DB63FE /* Pods-AWARE-CustomSensor-umbrella.h */, - D58716641806279DF2FBB46206149C68 /* Pods-AWARE-CustomSensor.debug.xcconfig */, - 6371B6F7E231CA4EFBF3CA0060D4D883 /* Pods-AWARE-CustomSensor.release.xcconfig */, + 6140BECF711C5F6292046CF7F46A03DC /* CSVStorage.h */, + 30060EB4C7274C536E59AAE8A9D6B49F /* CSVStorage.m */, ); - name = "Pods-AWARE-CustomSensor"; - path = "Target Support Files/Pods-AWARE-CustomSensor"; + name = CSV; + path = CSV; sourceTree = ""; }; 43CBEC14E94D456F428B6EA276407E81 /* 13_gloomy */ = { @@ -3178,24 +3245,6 @@ path = Barometer; sourceTree = ""; }; - 4C6748A93095DAAA1C3F71C1101124B7 /* Pods-AWARE-InteractiveESM */ = { - isa = PBXGroup; - children = ( - 8BAB3DBE06E456BA7561640DD5D5EAD3 /* Pods-AWARE-InteractiveESM.modulemap */, - 340F5ADDBD8CBEDD925C1A8AFDF6D1EB /* Pods-AWARE-InteractiveESM-acknowledgements.markdown */, - 6CDA1DB22E50511C54EBBD944815B4B3 /* Pods-AWARE-InteractiveESM-acknowledgements.plist */, - E40D4553ED2973CD648E61200FD2609C /* Pods-AWARE-InteractiveESM-dummy.m */, - 787C1B37216E1A58820A624A79C0A10E /* Pods-AWARE-InteractiveESM-frameworks.sh */, - 5C6650A283F4FA6F2BD5F6B3C7418014 /* Pods-AWARE-InteractiveESM-Info.plist */, - F5C55D4E715E4D501B8D3C0ACF4B4CE6 /* Pods-AWARE-InteractiveESM-resources.sh */, - 71178D30B2DB7BD36B6E9E72AE80DF8D /* Pods-AWARE-InteractiveESM-umbrella.h */, - 4944F0E594D45407B2EE6508C35C586F /* Pods-AWARE-InteractiveESM.debug.xcconfig */, - 737BB7E2F1538F7A730D623BB0C478DC /* Pods-AWARE-InteractiveESM.release.xcconfig */, - ); - name = "Pods-AWARE-InteractiveESM"; - path = "Target Support Files/Pods-AWARE-InteractiveESM"; - sourceTree = ""; - }; 52859E27C4EFAD79EFA296D5ED09435D /* MobileWiFi */ = { isa = PBXGroup; children = ( @@ -3404,6 +3453,24 @@ path = "../Target Support Files/TPCircularBuffer"; sourceTree = ""; }; + 6F5337885FC0179A0FAC00D3B961B3EE /* Pods-AWARE-SensingApp */ = { + isa = PBXGroup; + children = ( + 02EE9255A642CAA8C5BBF65A297A8EA2 /* Pods-AWARE-SensingApp.modulemap */, + 57A53AC31B08B2CB45FEA6027E7591EA /* Pods-AWARE-SensingApp-acknowledgements.markdown */, + 45FF008E52428B907D0B1FB4492BC209 /* Pods-AWARE-SensingApp-acknowledgements.plist */, + C539FDC5B51E4D37BC84EBCED26CA729 /* Pods-AWARE-SensingApp-dummy.m */, + 6F0800EEA075026D246114C328EB995F /* Pods-AWARE-SensingApp-frameworks.sh */, + D2D9E29F0570E23F6CC4823E0D5D6190 /* Pods-AWARE-SensingApp-Info.plist */, + 51EBF80A3B56ADE90B493B0F5DD159A5 /* Pods-AWARE-SensingApp-resources.sh */, + 28B5FE73DE3B7CD0810E5FBDDF0B175A /* Pods-AWARE-SensingApp-umbrella.h */, + 14966594A1C1FA7F6F0AFBA70CCA411F /* Pods-AWARE-SensingApp.debug.xcconfig */, + 28C06E5F07721C5A025D4F95125BAC75 /* Pods-AWARE-SensingApp.release.xcconfig */, + ); + name = "Pods-AWARE-SensingApp"; + path = "Target Support Files/Pods-AWARE-SensingApp"; + sourceTree = ""; + }; 70A998597C6941DE8A4272BA4C1253D8 /* PAM */ = { isa = PBXGroup; children = ( @@ -3433,6 +3500,53 @@ path = ESMQuickAnswer; sourceTree = ""; }; + 7B054BAA09AAF50902C5A81980B5C56D /* Pods-AWARE-AmbientNoise */ = { + isa = PBXGroup; + children = ( + C9323EECF3BB9FB79EBBF03CA35DEEEE /* Pods-AWARE-AmbientNoise.modulemap */, + 22C85A85240451A555668233DAD6254C /* Pods-AWARE-AmbientNoise-acknowledgements.markdown */, + 14622C96E3FCB164CC860077A04EA956 /* Pods-AWARE-AmbientNoise-acknowledgements.plist */, + 8EF98929B96DB6C82AF890C8DBBEDBFC /* Pods-AWARE-AmbientNoise-dummy.m */, + EE2271DAFE70E2651F4C3B4562E326B9 /* Pods-AWARE-AmbientNoise-frameworks.sh */, + 339F2857AD13C98CB1517A4AD1C12A81 /* Pods-AWARE-AmbientNoise-Info.plist */, + 7B9CE6AEEB4173222E63385D8D09057A /* Pods-AWARE-AmbientNoise-resources.sh */, + B9E9738D0FD4A53984DC81B8DD7E5DC1 /* Pods-AWARE-AmbientNoise-umbrella.h */, + 7448D51B9B2C864769B7B0DED3610B4E /* Pods-AWARE-AmbientNoise.debug.xcconfig */, + 8EE28B3E14953F63B5926E7ABFEEDCE4 /* Pods-AWARE-AmbientNoise.release.xcconfig */, + ); + name = "Pods-AWARE-AmbientNoise"; + path = "Target Support Files/Pods-AWARE-AmbientNoise"; + sourceTree = ""; + }; + 7BEB8CB5B15B9FD0499587BE1550D72B /* Products */ = { + isa = PBXGroup; + children = ( + 97DE68EED3285E61A7F4673B8E7862B7 /* AWAREFramework.bundle */, + 62D64F39118A62D3D6A8F1BAEA55AB7E /* AWAREFramework.framework */, + 794A68C09CD774740BF7C73FE705F5A8 /* Charts.framework */, + 2768E0458BC0A3AEF6FB0DB7CABFF847 /* CocoaAsyncSocket.framework */, + 1C4D17BF5FDE70C93EAF599909BA9F28 /* GoogleToolboxForMac.framework */, + 68B6A7D0F2F843870A790FE2C8CC39FD /* GTMSessionFetcher.framework */, + 0FA55BF9EA75B34C6747437D692CD957 /* ios_ntp.framework */, + E1723466949C268485DA279507E93AE6 /* Pods_AWARE_AmbientNoise.framework */, + F40FE266C8B88E723BE823A58C6E1A0C /* Pods_AWARE_ConfigURLESM.framework */, + 616972273D18AD9ADB8DEE871B9A1485 /* Pods_AWARE_CustomESM.framework */, + 8E34C283C8BB4305B283DA3B361335DC /* Pods_AWARE_CustomSensor.framework */, + A9F849D845C11F99F2624B2F2DA880E6 /* Pods_AWARE_DynamicESM.framework */, + C6E540297CCA18E8D9F0C609F1D47D7F /* Pods_AWARE_Fitbit.framework */, + 487322B7C3ED3A29F745673A31770197 /* Pods_AWARE_GoogleLogin.framework */, + DDBCDA9720B4BAD4572128B2FFE46345 /* Pods_AWARE_InteractiveESM.framework */, + FC35CA92E32279A7CA87DC7C48FCB064 /* Pods_AWARE_ScheduleESM.framework */, + D2E2578C343CE0EF42FA404DC1124A8B /* Pods_AWARE_SensingApp.framework */, + E90466B09CF5C22B881B50B0B685B6E0 /* Pods_AWARE_SimpleClient.framework */, + 4B42BF7F814E0BE842693D188008BF5D /* Pods_AWARE_Visualizer.framework */, + 2243C2593145FE042E48AE82E9046069 /* Pods_Tests.framework */, + 3A0C83F0722F839E6B9A096EF3F4A5B7 /* SCNetworkReachability.framework */, + 4D35A8336C456B8C2E1B7B5553189818 /* TPCircularBuffer.framework */, + ); + name = Products; + sourceTree = ""; + }; 7D4EB02D2F718016E4F7C99A1356545C /* Battery */ = { isa = PBXGroup; children = ( @@ -3473,34 +3587,6 @@ path = Gravity; sourceTree = ""; }; - 8038AE92D1BD5BC714246CDB0B9AD820 /* Products */ = { - isa = PBXGroup; - children = ( - D1DD5272160DB55EA4772D7037B856A3 /* AWAREFramework.bundle */, - DD50B9D3B6EFBA29298DB12E28CA3948 /* AWAREFramework.framework */, - 05B871564E1CA1C76BC6A736A9822C33 /* Charts.framework */, - F799DCA941C0DC982ACF9596419ED479 /* CocoaAsyncSocket.framework */, - E05B9FE36B117DD5702DD2F34FB7387C /* GoogleToolboxForMac.framework */, - 4A7F5B2605FE3243684E82F01AFB2794 /* GTMSessionFetcher.framework */, - 1BC92C16AD6DA1BDD9B8BCD4D40FD2F0 /* ios_ntp.framework */, - 046E3F7AB6516634D641117139DB8FA7 /* Pods_AWARE_AmbientNoise.framework */, - D9B6F8AB89D959474B484EBDAAEFB7BD /* Pods_AWARE_ConfigURLESM.framework */, - B2362368009B690E7CD0B9D06249C66D /* Pods_AWARE_CustomESM.framework */, - A748FE1D5ED82E6864DAD19C0A6B43C2 /* Pods_AWARE_CustomSensor.framework */, - 8A767C27B03EEAA54273169FA7DC5BB7 /* Pods_AWARE_DynamicESM.framework */, - F65437D4AAC434FA1A8164768B4FD9CE /* Pods_AWARE_Fitbit.framework */, - C8FF5A8CF62ED6DA8ABA8C3BBC3D1486 /* Pods_AWARE_GoogleLogin.framework */, - 0204034D3CEEC9DC7B32E702882A5016 /* Pods_AWARE_InteractiveESM.framework */, - B4D1647B08EDF25A5D63841C62320608 /* Pods_AWARE_ScheduleESM.framework */, - 7B941362BC9D272153987C3052B1D04A /* Pods_AWARE_SensingApp.framework */, - FA7DA40F6C67FA97E7397CF1339B6E27 /* Pods_AWARE_SimpleClient.framework */, - B15DD0FB1FBACF6A94B3C91481FB4089 /* Pods_AWARE_Visualizer.framework */, - 688D1C58AD581476B009D0129846D592 /* SCNetworkReachability.framework */, - 80B01AB80FFA62D458CC26683DB277D1 /* TPCircularBuffer.framework */, - ); - name = Products; - sourceTree = ""; - }; 8151456D176B1DD1DA87882AB329F232 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -3517,6 +3603,26 @@ name = Resources; sourceTree = ""; }; + 84EECFF96FA8ACF5AA798BD1F401EF2A /* Targets Support Files */ = { + isa = PBXGroup; + children = ( + 7B054BAA09AAF50902C5A81980B5C56D /* Pods-AWARE-AmbientNoise */, + D0DFC20E4DFA17C15C3B9A9FD0BA4CC1 /* Pods-AWARE-ConfigURLESM */, + A85164D66738B6A9CF88AB39C19D945B /* Pods-AWARE-CustomESM */, + C45193EFBB429E0FA58D5B27B003EA2A /* Pods-AWARE-CustomSensor */, + 90D37D67002E44C3364FA13542A07083 /* Pods-AWARE-DynamicESM */, + E0387337801E33BE06612AE271AA4467 /* Pods-AWARE-Fitbit */, + 3F8385E8FC97787D83B7C9301CDC124F /* Pods-AWARE-GoogleLogin */, + F0D2F11525CEB4553C116030A5AF501F /* Pods-AWARE-InteractiveESM */, + C4C43217B514659FD6419C9EE72DC564 /* Pods-AWARE-ScheduleESM */, + 6F5337885FC0179A0FAC00D3B961B3EE /* Pods-AWARE-SensingApp */, + DE2F82BA657CA0C4DF2F99EF10BD04E7 /* Pods-AWARE-SimpleClient */, + 1AB703334797AF55D257F4CBA545135D /* Pods-AWARE-Visualizer */, + 9EF43ECF3163A2AE65F78BC66C352F1F /* Pods-Tests */, + ); + name = "Targets Support Files"; + sourceTree = ""; + }; 88147B0AF5AE5D5E17C58B72FE506EEA /* NTPTime */ = { isa = PBXGroup; children = ( @@ -3556,22 +3662,22 @@ path = ClockLineView; sourceTree = ""; }; - 8F28DD06C534DDA5F9706B72B0DFD1F6 /* Pods-AWARE-SimpleClient */ = { + 90D37D67002E44C3364FA13542A07083 /* Pods-AWARE-DynamicESM */ = { isa = PBXGroup; children = ( - 87EB92C976A4D2465C67B55FA4896CE2 /* Pods-AWARE-SimpleClient.modulemap */, - B416D1AA9034269C3629DADA6039FEEE /* Pods-AWARE-SimpleClient-acknowledgements.markdown */, - 9A2CE583F062633E630CAABB533E1DEA /* Pods-AWARE-SimpleClient-acknowledgements.plist */, - DB906218DDEA810697F457B4B4ACDA81 /* Pods-AWARE-SimpleClient-dummy.m */, - 7F2C0B4C733D9D467BD46E3DA13CA238 /* Pods-AWARE-SimpleClient-frameworks.sh */, - 9CB3180ED7D3DEDF16EEAB644DE96B8A /* Pods-AWARE-SimpleClient-Info.plist */, - CE6469CCA65B45CE19AE16F7C045691A /* Pods-AWARE-SimpleClient-resources.sh */, - 078DE71602568760414DDB89BB6E5599 /* Pods-AWARE-SimpleClient-umbrella.h */, - 6CD3F22BC9E910415367A8AE389566FB /* Pods-AWARE-SimpleClient.debug.xcconfig */, - E7328266DF33E608C2C860C25A56239B /* Pods-AWARE-SimpleClient.release.xcconfig */, + B11D8F73DDFEE27484BF17FA81DA4F4B /* Pods-AWARE-DynamicESM.modulemap */, + FB0C1B55BF1FB0D3A4FE96BE87020340 /* Pods-AWARE-DynamicESM-acknowledgements.markdown */, + F44F527518DD1490ACB11548AE19D74F /* Pods-AWARE-DynamicESM-acknowledgements.plist */, + C18C075467771C8F6D623E13AF675F6E /* Pods-AWARE-DynamicESM-dummy.m */, + 752754FF1460A01DEE0AF3C138ECC608 /* Pods-AWARE-DynamicESM-frameworks.sh */, + AC4C8665B60EFA4BF8D25AC974D788AA /* Pods-AWARE-DynamicESM-Info.plist */, + E1924D3EDD4A99859A037F19882985A9 /* Pods-AWARE-DynamicESM-resources.sh */, + 7FC53CE29A9BD9C07CC8D780E62F97F1 /* Pods-AWARE-DynamicESM-umbrella.h */, + CCC0E002FD9D262BCCA7E25B0CC0731C /* Pods-AWARE-DynamicESM.debug.xcconfig */, + 0412007BEC0D1E5804DC9B03FC615585 /* Pods-AWARE-DynamicESM.release.xcconfig */, ); - name = "Pods-AWARE-SimpleClient"; - path = "Target Support Files/Pods-AWARE-SimpleClient"; + name = "Pods-AWARE-DynamicESM"; + path = "Target Support Files/Pods-AWARE-DynamicESM"; sourceTree = ""; }; 93F4B8D275698503B5FFF5E67FD7DADB /* Fitbit */ = { @@ -3741,22 +3847,22 @@ path = GTMSessionFetcher; sourceTree = ""; }; - 9E0C2C5AD8A4239D1328DF718763C007 /* Pods-AWARE-Visualizer */ = { + 9EF43ECF3163A2AE65F78BC66C352F1F /* Pods-Tests */ = { isa = PBXGroup; children = ( - 05239242548A0DB762E4C9025C012F69 /* Pods-AWARE-Visualizer.modulemap */, - B7D94A96502B165A743AA3AB2BD569EE /* Pods-AWARE-Visualizer-acknowledgements.markdown */, - 9D8112B5F80FA7AF74982E67C84FC5FF /* Pods-AWARE-Visualizer-acknowledgements.plist */, - 48FCB6314C9A30775B5CFE1246978398 /* Pods-AWARE-Visualizer-dummy.m */, - 9395C1A72F39FCFFAB08D0BE093F564B /* Pods-AWARE-Visualizer-frameworks.sh */, - C3858980E86E8A79A585E6789146317A /* Pods-AWARE-Visualizer-Info.plist */, - B7602742638E2ED9676CC611B0FCA398 /* Pods-AWARE-Visualizer-resources.sh */, - 7A792934039A6CB095ADC5C6C9F9C32D /* Pods-AWARE-Visualizer-umbrella.h */, - 5F3D8B80F8E6C4A382341C629D043C55 /* Pods-AWARE-Visualizer.debug.xcconfig */, - 25E4A3509A7E9FC6528A495A68489661 /* Pods-AWARE-Visualizer.release.xcconfig */, + E75F1A6A3DBA31A05A557BEE08D93290 /* Pods-Tests.modulemap */, + 731D986C82EB0535345FEBA827C179A3 /* Pods-Tests-acknowledgements.markdown */, + 477CEBB8EDCB4B9D39256C3D42D45D4B /* Pods-Tests-acknowledgements.plist */, + 182BB719D7E2E2FF0EA284DB7AD504C4 /* Pods-Tests-dummy.m */, + 09A6C59722BBDF133CF149BD09139435 /* Pods-Tests-frameworks.sh */, + 8B189481ABBF838E4B7714DDD6E44DFE /* Pods-Tests-Info.plist */, + 85A00BD738B1F110CFDD29E0C7D03725 /* Pods-Tests-resources.sh */, + 8D22062DAE258FD21F3ECD8DF2BE4237 /* Pods-Tests-umbrella.h */, + C0830DB3EF771C113B8DBE6B7ABBB927 /* Pods-Tests.debug.xcconfig */, + FAF3AF43F30B05D6414D76D442C6443D /* Pods-Tests.release.xcconfig */, ); - name = "Pods-AWARE-Visualizer"; - path = "Target Support Files/Pods-AWARE-Visualizer"; + name = "Pods-Tests"; + path = "Target Support Files/Pods-Tests"; sourceTree = ""; }; A072FA4D904654107169F0BB68AA3C2A /* Support Files */ = { @@ -3803,41 +3909,22 @@ path = ESMNumber; sourceTree = ""; }; - A907B1F3F7C314F88D5078BE8AC36C3C /* Pods-AWARE-Fitbit */ = { - isa = PBXGroup; - children = ( - 8455136A564A7F6D1D6253D89E1BD12A /* Pods-AWARE-Fitbit.modulemap */, - 0839D2253F302C138A1628DC56537CB8 /* Pods-AWARE-Fitbit-acknowledgements.markdown */, - 8A15CCCD6A70C05391B65329EC216D25 /* Pods-AWARE-Fitbit-acknowledgements.plist */, - 45A4B0290B449A04ED8BB8F6FEBC5AB0 /* Pods-AWARE-Fitbit-dummy.m */, - 5ABD89917983EC80ADA35A46E65E65C0 /* Pods-AWARE-Fitbit-frameworks.sh */, - 442AE604CD73D2D0D39F99D611AD5499 /* Pods-AWARE-Fitbit-Info.plist */, - 13A247CFDFE31D1490A4A2A7575C7110 /* Pods-AWARE-Fitbit-resources.sh */, - A4BACDFCD9F3150F1C71F13FC18EB5D4 /* Pods-AWARE-Fitbit-umbrella.h */, - 0801B35E053DDD517A533D4005E20E4B /* Pods-AWARE-Fitbit.debug.xcconfig */, - FCFAA7E6DCE60CEE6C63E8F6BF32F3AE /* Pods-AWARE-Fitbit.release.xcconfig */, - ); - name = "Pods-AWARE-Fitbit"; - path = "Target Support Files/Pods-AWARE-Fitbit"; - sourceTree = ""; - }; - A9F5B448F6B61493A16141AD2E3B2170 /* Targets Support Files */ = { + A85164D66738B6A9CF88AB39C19D945B /* Pods-AWARE-CustomESM */ = { isa = PBXGroup; children = ( - 04A650B2D67B4C4328590170B6CC70DF /* Pods-AWARE-AmbientNoise */, - 243B334DD1EA4C7513C7A6BB617F97F7 /* Pods-AWARE-ConfigURLESM */, - E4288A5928D105BA8522DC3C7C91EC51 /* Pods-AWARE-CustomESM */, - 4026240C334265A77B86422299053DE7 /* Pods-AWARE-CustomSensor */, - D7036FA975456C57E681ABCD9D4BD038 /* Pods-AWARE-DynamicESM */, - A907B1F3F7C314F88D5078BE8AC36C3C /* Pods-AWARE-Fitbit */, - E2F2ED49913AE5778C96624D89CECF09 /* Pods-AWARE-GoogleLogin */, - 4C6748A93095DAAA1C3F71C1101124B7 /* Pods-AWARE-InteractiveESM */, - FD89C7A2CE03080BD3E8D55E66C460FC /* Pods-AWARE-ScheduleESM */, - CA6A5506395EA3E90515AD776B65CBC3 /* Pods-AWARE-SensingApp */, - 8F28DD06C534DDA5F9706B72B0DFD1F6 /* Pods-AWARE-SimpleClient */, - 9E0C2C5AD8A4239D1328DF718763C007 /* Pods-AWARE-Visualizer */, + 203348665467EFA43D8A3F6A0DEB9D10 /* Pods-AWARE-CustomESM.modulemap */, + 07024CEFCC22B85699E3F39E8FCCB215 /* Pods-AWARE-CustomESM-acknowledgements.markdown */, + 3C3DEF02C29367AE72A7C65BDEE01FDA /* Pods-AWARE-CustomESM-acknowledgements.plist */, + 05E2C4D48DA8AC2766429478FA480E6A /* Pods-AWARE-CustomESM-dummy.m */, + C9657E74B3904C34CA2E7959B8FFCDEE /* Pods-AWARE-CustomESM-frameworks.sh */, + A3BB994FB59E049E5DFACBBCF874FB79 /* Pods-AWARE-CustomESM-Info.plist */, + A6EF00DCD3102DB5EE82FA865327814C /* Pods-AWARE-CustomESM-resources.sh */, + F5C9571AEE018F15A832ADEA5A4EB5BF /* Pods-AWARE-CustomESM-umbrella.h */, + E2324667635AAA816BDF736D6C2550D5 /* Pods-AWARE-CustomESM.debug.xcconfig */, + B3446D2DFF31B35326F798BF3428D050 /* Pods-AWARE-CustomESM.release.xcconfig */, ); - name = "Targets Support Files"; + name = "Pods-AWARE-CustomESM"; + path = "Target Support Files/Pods-AWARE-CustomESM"; sourceTree = ""; }; AA2020B64AEA9E8E9764225C1455AEAB /* EZAudio */ = { @@ -4034,6 +4121,42 @@ path = Gyroscope; sourceTree = ""; }; + C45193EFBB429E0FA58D5B27B003EA2A /* Pods-AWARE-CustomSensor */ = { + isa = PBXGroup; + children = ( + 7B2BC82652F2541679106CE005955DA6 /* Pods-AWARE-CustomSensor.modulemap */, + 8016437F8F703C2E33C3B862B93BD6D8 /* Pods-AWARE-CustomSensor-acknowledgements.markdown */, + C438B463C31D1F54DA33FB9221DE6810 /* Pods-AWARE-CustomSensor-acknowledgements.plist */, + F7697CD8F9DFA2359034C23CDA8B8B6E /* Pods-AWARE-CustomSensor-dummy.m */, + 894D99A5B94885501F60ED9642EA9B55 /* Pods-AWARE-CustomSensor-frameworks.sh */, + 9A5A72289255838271E2CBA48FE67353 /* Pods-AWARE-CustomSensor-Info.plist */, + D9450FDA0AB7729686C64BEA62B67FDC /* Pods-AWARE-CustomSensor-resources.sh */, + 0243203CD2AD78E5A3637ADBC773A532 /* Pods-AWARE-CustomSensor-umbrella.h */, + 20470CFEAE0449736EC19A4C8044AE3A /* Pods-AWARE-CustomSensor.debug.xcconfig */, + 0EF1609ADFBDC5684329F8EE66E64203 /* Pods-AWARE-CustomSensor.release.xcconfig */, + ); + name = "Pods-AWARE-CustomSensor"; + path = "Target Support Files/Pods-AWARE-CustomSensor"; + sourceTree = ""; + }; + C4C43217B514659FD6419C9EE72DC564 /* Pods-AWARE-ScheduleESM */ = { + isa = PBXGroup; + children = ( + DC640909FC9BBFF08030909B2B322700 /* Pods-AWARE-ScheduleESM.modulemap */, + 833A956587A33B837649A214F40F2610 /* Pods-AWARE-ScheduleESM-acknowledgements.markdown */, + 3C3796EF5307CADC338D139CFDA92952 /* Pods-AWARE-ScheduleESM-acknowledgements.plist */, + 4FF0301A7A8512505819069355FFF621 /* Pods-AWARE-ScheduleESM-dummy.m */, + 9C8C3E9FB9B4E10CE90AB4546670B9A7 /* Pods-AWARE-ScheduleESM-frameworks.sh */, + 6B445619BF01B183F4C93342B0D3C891 /* Pods-AWARE-ScheduleESM-Info.plist */, + B5AC4C4D5157A826D0F2E2077107B166 /* Pods-AWARE-ScheduleESM-resources.sh */, + 82344DF048DBAED8DB2B0EF592363DE2 /* Pods-AWARE-ScheduleESM-umbrella.h */, + AAE0B14CE3E613F04C9F4129F65E96EE /* Pods-AWARE-ScheduleESM.debug.xcconfig */, + AD205424F381BCC7DF897F6ABBB8C66D /* Pods-AWARE-ScheduleESM.release.xcconfig */, + ); + name = "Pods-AWARE-ScheduleESM"; + path = "Target Support Files/Pods-AWARE-ScheduleESM"; + sourceTree = ""; + }; C54CC98B34FAEEB97643C593229A5168 /* Debug */ = { isa = PBXGroup; children = ( @@ -4101,24 +4224,6 @@ path = "../Target Support Files/GoogleToolboxForMac"; sourceTree = ""; }; - CA6A5506395EA3E90515AD776B65CBC3 /* Pods-AWARE-SensingApp */ = { - isa = PBXGroup; - children = ( - 4AD583FE3BA288AB23945448EFE354E3 /* Pods-AWARE-SensingApp.modulemap */, - 5DB8F50386EF0121C9E2BA0D35A4FB5C /* Pods-AWARE-SensingApp-acknowledgements.markdown */, - 2CD5768E741A887DA5C0F4B5D21F2DBC /* Pods-AWARE-SensingApp-acknowledgements.plist */, - FF63D616F6718B7D191071A89A028BFE /* Pods-AWARE-SensingApp-dummy.m */, - DDE32D2F53FC975AAC534E8137B786A5 /* Pods-AWARE-SensingApp-frameworks.sh */, - 0A32619F771CCD967F6AD09D48DF7950 /* Pods-AWARE-SensingApp-Info.plist */, - 7C0A8764E641270F413935F8BEFDFA2B /* Pods-AWARE-SensingApp-resources.sh */, - 1926A6D6BEB9B32D81C96BE348FA0B59 /* Pods-AWARE-SensingApp-umbrella.h */, - E1DF8DA97A6B5C4F18D8FC36466F9C62 /* Pods-AWARE-SensingApp.debug.xcconfig */, - 8495DE2CB2341A10C504F6C49E0B46C1 /* Pods-AWARE-SensingApp.release.xcconfig */, - ); - name = "Pods-AWARE-SensingApp"; - path = "Target Support Files/Pods-AWARE-SensingApp"; - sourceTree = ""; - }; CAE0C817BCB20C6CF7B9EC8E5973E639 /* Magnetometer */ = { isa = PBXGroup; children = ( @@ -4283,8 +4388,8 @@ 58D814CC01B2188B2A9617B02718D380 /* Development Pods */, 99CB42664E59143F8FAA8CE458649DC6 /* Frameworks */, C95847FD57FC3658864E2CC85D38DCB6 /* Pods */, - 8038AE92D1BD5BC714246CDB0B9AD820 /* Products */, - A9F5B448F6B61493A16141AD2E3B2170 /* Targets Support Files */, + 7BEB8CB5B15B9FD0499587BE1550D72B /* Products */, + 84EECFF96FA8ACF5AA798BD1F401EF2A /* Targets Support Files */, ); sourceTree = ""; }; @@ -4316,6 +4421,24 @@ path = AWAREFramework/Classes/Sensors; sourceTree = ""; }; + D0DFC20E4DFA17C15C3B9A9FD0BA4CC1 /* Pods-AWARE-ConfigURLESM */ = { + isa = PBXGroup; + children = ( + 89B67EB4D29F542539989CD72AA6ADCB /* Pods-AWARE-ConfigURLESM.modulemap */, + 4F3F23702A2207D41A06C2F8B007BB78 /* Pods-AWARE-ConfigURLESM-acknowledgements.markdown */, + 63C85E57C385AADFAA3D745A712DBDFB /* Pods-AWARE-ConfigURLESM-acknowledgements.plist */, + 54F045B26D3220A33D80E7E9D0076FCE /* Pods-AWARE-ConfigURLESM-dummy.m */, + 00ECE1DA6568102ACDF6B3D1525F3176 /* Pods-AWARE-ConfigURLESM-frameworks.sh */, + 7A4C65CB294AE23EDA2BC3795187EBBE /* Pods-AWARE-ConfigURLESM-Info.plist */, + 8DAA057BCB93F2F88602295AD03FD893 /* Pods-AWARE-ConfigURLESM-resources.sh */, + 0687FE385853626F5CC213F30E8184F4 /* Pods-AWARE-ConfigURLESM-umbrella.h */, + 2FA183BAC0E7FA6EA115CF5D838E713A /* Pods-AWARE-ConfigURLESM.debug.xcconfig */, + E486AE5EE363EAA80D4A3C5D46BA57E1 /* Pods-AWARE-ConfigURLESM.release.xcconfig */, + ); + name = "Pods-AWARE-ConfigURLESM"; + path = "Target Support Files/Pods-AWARE-ConfigURLESM"; + sourceTree = ""; + }; D5F39B03F2C9DB2EE2F289C9DA07B804 /* ESMPAM */ = { isa = PBXGroup; children = ( @@ -4327,24 +4450,6 @@ path = ESMPAM; sourceTree = ""; }; - D7036FA975456C57E681ABCD9D4BD038 /* Pods-AWARE-DynamicESM */ = { - isa = PBXGroup; - children = ( - 8964E270EA638FAD1A3CF07D588B303C /* Pods-AWARE-DynamicESM.modulemap */, - 1BBE4F0750484F96C19F0707D0F86964 /* Pods-AWARE-DynamicESM-acknowledgements.markdown */, - B59ED5BFF9F5198F3302E17978B68489 /* Pods-AWARE-DynamicESM-acknowledgements.plist */, - C3C5E4FACD2B85F138F71BE8A69029BC /* Pods-AWARE-DynamicESM-dummy.m */, - 45CAD30D2DB349666289FA93EF83E22F /* Pods-AWARE-DynamicESM-frameworks.sh */, - 945C14048C20DFC62111BF575EFC11A9 /* Pods-AWARE-DynamicESM-Info.plist */, - 74CC928BCC1D971AE4CE76ED2C303851 /* Pods-AWARE-DynamicESM-resources.sh */, - 92FA4BDE34B298D5D9325884687EDECB /* Pods-AWARE-DynamicESM-umbrella.h */, - 277F2CBC878663ABDBAAD6BE419CC50E /* Pods-AWARE-DynamicESM.debug.xcconfig */, - DFB54C90FCC0FF8A0A2C0D8D6EEFDEFB /* Pods-AWARE-DynamicESM.release.xcconfig */, - ); - name = "Pods-AWARE-DynamicESM"; - path = "Target Support Files/Pods-AWARE-DynamicESM"; - sourceTree = ""; - }; D990AA61548CE68D5843BED22DB757FD /* ESMRadio */ = { isa = PBXGroup; children = ( @@ -4355,6 +4460,42 @@ path = ESMRadio; sourceTree = ""; }; + DE2F82BA657CA0C4DF2F99EF10BD04E7 /* Pods-AWARE-SimpleClient */ = { + isa = PBXGroup; + children = ( + BD802A20FC9421D46784A1365892EB73 /* Pods-AWARE-SimpleClient.modulemap */, + 8430C345D7EAD6DBFD5616D6376EAF79 /* Pods-AWARE-SimpleClient-acknowledgements.markdown */, + 24A6CCA3AFCE148D0A94614711CB5CC2 /* Pods-AWARE-SimpleClient-acknowledgements.plist */, + 9B28540CF71D47A6F42F6E1E880C7758 /* Pods-AWARE-SimpleClient-dummy.m */, + CFA343C81A97E26576AAC365D68920AA /* Pods-AWARE-SimpleClient-frameworks.sh */, + FD401DFB7C5469E3E5F6C459EC755788 /* Pods-AWARE-SimpleClient-Info.plist */, + E0B0D66E430E363F7AE41AC9F6DFAD04 /* Pods-AWARE-SimpleClient-resources.sh */, + 7523BD91910A932D0DBF2BD15CEBC66C /* Pods-AWARE-SimpleClient-umbrella.h */, + E3AC9D8021426EEFF2DA0FC8E9531A0A /* Pods-AWARE-SimpleClient.debug.xcconfig */, + 98FBDF3C2478BF36DBEDC6F5ED91A513 /* Pods-AWARE-SimpleClient.release.xcconfig */, + ); + name = "Pods-AWARE-SimpleClient"; + path = "Target Support Files/Pods-AWARE-SimpleClient"; + sourceTree = ""; + }; + E0387337801E33BE06612AE271AA4467 /* Pods-AWARE-Fitbit */ = { + isa = PBXGroup; + children = ( + 4F3336E847AA827CEC5F30F1FED36283 /* Pods-AWARE-Fitbit.modulemap */, + 265AF324878DE8D67034B951BD009489 /* Pods-AWARE-Fitbit-acknowledgements.markdown */, + 09D9EC12A29A70DD3AEA657CBACE877F /* Pods-AWARE-Fitbit-acknowledgements.plist */, + 5E4BEE0E4139D496B2E226A600964155 /* Pods-AWARE-Fitbit-dummy.m */, + 29DF7DD0B0E71D18FC50B37AE89D58D8 /* Pods-AWARE-Fitbit-frameworks.sh */, + D9ABC5A25F5DC726FD0A123597BEDCB0 /* Pods-AWARE-Fitbit-Info.plist */, + 09FC3F1C17AB381FEC3B35DE7CF3975A /* Pods-AWARE-Fitbit-resources.sh */, + 28703270CFB531501A0BABBB21B80E4B /* Pods-AWARE-Fitbit-umbrella.h */, + 10E17757B5160E6C07B245A68903D2B3 /* Pods-AWARE-Fitbit.debug.xcconfig */, + AB3DB793D2E30E1C01C77996F7102A6E /* Pods-AWARE-Fitbit.release.xcconfig */, + ); + name = "Pods-AWARE-Fitbit"; + path = "Target Support Files/Pods-AWARE-Fitbit"; + sourceTree = ""; + }; E04E4C6F7B0C74D8F5FE63F731A3D9D8 /* ESM */ = { isa = PBXGroup; children = ( @@ -4399,24 +4540,6 @@ path = Memory; sourceTree = ""; }; - E2F2ED49913AE5778C96624D89CECF09 /* Pods-AWARE-GoogleLogin */ = { - isa = PBXGroup; - children = ( - A0C37D6D8C6CDE7B12B510209E8AF971 /* Pods-AWARE-GoogleLogin.modulemap */, - B1B05FE14E74E55917FDDB31395E1A73 /* Pods-AWARE-GoogleLogin-acknowledgements.markdown */, - C95329F3DB74E887A2633A9A4EA88537 /* Pods-AWARE-GoogleLogin-acknowledgements.plist */, - 1C874ED00F93501B83E053EA031BAC70 /* Pods-AWARE-GoogleLogin-dummy.m */, - 404B6CBD4C96898FA07EF0417F463275 /* Pods-AWARE-GoogleLogin-frameworks.sh */, - E12BDB507E1B87D4B865615063A0A50E /* Pods-AWARE-GoogleLogin-Info.plist */, - 44AB126B257FE86836422659F80367BE /* Pods-AWARE-GoogleLogin-resources.sh */, - 38E181D3174842B77D4384631F99108D /* Pods-AWARE-GoogleLogin-umbrella.h */, - D619E69E60E478DD1D502525B1A16677 /* Pods-AWARE-GoogleLogin.debug.xcconfig */, - 6C0B50BDC138E70D2CE9CB6817FE0950 /* Pods-AWARE-GoogleLogin.release.xcconfig */, - ); - name = "Pods-AWARE-GoogleLogin"; - path = "Target Support Files/Pods-AWARE-GoogleLogin"; - sourceTree = ""; - }; E3550C1919A15C96B0871F67BF311697 /* Proximity */ = { isa = PBXGroup; children = ( @@ -4431,24 +4554,6 @@ path = Proximity; sourceTree = ""; }; - E4288A5928D105BA8522DC3C7C91EC51 /* Pods-AWARE-CustomESM */ = { - isa = PBXGroup; - children = ( - B52107BAEE2A5DCE32F88556635C6829 /* Pods-AWARE-CustomESM.modulemap */, - 3978FC60BF96E3FC2E99D9C65FAB726B /* Pods-AWARE-CustomESM-acknowledgements.markdown */, - A9D91C192FFDF0ED3315FBE2D2DA5FDD /* Pods-AWARE-CustomESM-acknowledgements.plist */, - E604AC6D0064E9ED28CFB5AD8A0F0F27 /* Pods-AWARE-CustomESM-dummy.m */, - A2968D44372224D37F2B88F1564E7B4F /* Pods-AWARE-CustomESM-frameworks.sh */, - E4C07846958EC52688555CD6F084CE4A /* Pods-AWARE-CustomESM-Info.plist */, - 056545928C62E9481766998F940E2B0C /* Pods-AWARE-CustomESM-resources.sh */, - B4D6429940BEE3FDFDCF9B90090E019A /* Pods-AWARE-CustomESM-umbrella.h */, - 6C89D46BEA31E6E9E0D8450488251F84 /* Pods-AWARE-CustomESM.debug.xcconfig */, - 09BAD39A795DB0719476E50D6C5C9742 /* Pods-AWARE-CustomESM.release.xcconfig */, - ); - name = "Pods-AWARE-CustomESM"; - path = "Target Support Files/Pods-AWARE-CustomESM"; - sourceTree = ""; - }; E7075E3D5383C202EEBED09A4AEB596E /* ios-ntp */ = { isa = PBXGroup; children = ( @@ -4510,6 +4615,24 @@ path = Contacts; sourceTree = ""; }; + F0D2F11525CEB4553C116030A5AF501F /* Pods-AWARE-InteractiveESM */ = { + isa = PBXGroup; + children = ( + 7EDA4C704EAEFE5E79F528C9DD1FEA6E /* Pods-AWARE-InteractiveESM.modulemap */, + C581CDA55B61EF2323E5F1D68EDB59CA /* Pods-AWARE-InteractiveESM-acknowledgements.markdown */, + 7BA747229FB4E1C7DC370FB11457339E /* Pods-AWARE-InteractiveESM-acknowledgements.plist */, + 980624DD5CB712AC26E9D66D2D7BDB54 /* Pods-AWARE-InteractiveESM-dummy.m */, + 2562EFF062E5C8B00A80CC2FB0AF37EA /* Pods-AWARE-InteractiveESM-frameworks.sh */, + 7AFF32C0DE282D9D74E0A29D2FAA29BC /* Pods-AWARE-InteractiveESM-Info.plist */, + 821CB8F70803334053853D52BE6E75FE /* Pods-AWARE-InteractiveESM-resources.sh */, + 37765CA08EB14D5BC9607FB7C868C253 /* Pods-AWARE-InteractiveESM-umbrella.h */, + 1F5643F29EC926D98FA42FD442FDA2DD /* Pods-AWARE-InteractiveESM.debug.xcconfig */, + 9D27C5518223BCA328FC255618672645 /* Pods-AWARE-InteractiveESM.release.xcconfig */, + ); + name = "Pods-AWARE-InteractiveESM"; + path = "Target Support Files/Pods-AWARE-InteractiveESM"; + sourceTree = ""; + }; F76DBA2FB48BD134B4A4FDCB329CBFD9 /* Processor */ = { isa = PBXGroup; children = ( @@ -4615,24 +4738,6 @@ path = Pedometer; sourceTree = ""; }; - FD89C7A2CE03080BD3E8D55E66C460FC /* Pods-AWARE-ScheduleESM */ = { - isa = PBXGroup; - children = ( - C353E046AFEA1D74D3F2EB4E0C7F3BB0 /* Pods-AWARE-ScheduleESM.modulemap */, - E385C2633AC4AC3F4DB6AD0CBBD76A5E /* Pods-AWARE-ScheduleESM-acknowledgements.markdown */, - E4D890042B1D6F1381C7FD6F9194D0D9 /* Pods-AWARE-ScheduleESM-acknowledgements.plist */, - 4B6359661F82B6014947FE7676F4752F /* Pods-AWARE-ScheduleESM-dummy.m */, - B1F1F2845BF8453AC4035B7F69932C6F /* Pods-AWARE-ScheduleESM-frameworks.sh */, - 050FC26F43FA8F440969DF96275950D7 /* Pods-AWARE-ScheduleESM-Info.plist */, - 4D33364CA796E69B40460E1C4C62E7C2 /* Pods-AWARE-ScheduleESM-resources.sh */, - 2ABE81B1E61A112AAB27E83CD3C23B5A /* Pods-AWARE-ScheduleESM-umbrella.h */, - DD6353032F80C093158C9482AAA9E2A9 /* Pods-AWARE-ScheduleESM.debug.xcconfig */, - 4EBA3CE21C482FD459635978433AF9D2 /* Pods-AWARE-ScheduleESM.release.xcconfig */, - ); - name = "Pods-AWARE-ScheduleESM"; - path = "Target Support Files/Pods-AWARE-ScheduleESM"; - sourceTree = ""; - }; FDA95A5A293839B60DC0B1BB8B27B5B6 /* Conversation */ = { isa = PBXGroup; children = ( @@ -5028,6 +5133,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + F671131DAB9F0990DD2F7E0095202356 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 52D1DACEFBBDD6E2A36001480A5A961F /* Pods-Tests-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; FCCD2E7D5D87E24A2BE292FB13FFAB53 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -5065,7 +5178,7 @@ ); name = "Pods-AWARE-SensingApp"; productName = "Pods-AWARE-SensingApp"; - productReference = 7B941362BC9D272153987C3052B1D04A /* Pods_AWARE_SensingApp.framework */; + productReference = D2E2578C343CE0EF42FA404DC1124A8B /* Pods_AWARE_SensingApp.framework */; productType = "com.apple.product-type.framework"; }; 1A5452577A8ADF4F3D677C3FB13D2AFA /* Pods-AWARE-CustomESM */ = { @@ -5092,7 +5205,7 @@ ); name = "Pods-AWARE-CustomESM"; productName = "Pods-AWARE-CustomESM"; - productReference = B2362368009B690E7CD0B9D06249C66D /* Pods_AWARE_CustomESM.framework */; + productReference = 616972273D18AD9ADB8DEE871B9A1485 /* Pods_AWARE_CustomESM.framework */; productType = "com.apple.product-type.framework"; }; 2497F7F40FD4DB2B6A8E13C7CA1F63FF /* AWAREFramework */ = { @@ -5115,7 +5228,7 @@ ); name = AWAREFramework; productName = AWAREFramework; - productReference = DD50B9D3B6EFBA29298DB12E28CA3948 /* AWAREFramework.framework */; + productReference = 62D64F39118A62D3D6A8F1BAEA55AB7E /* AWAREFramework.framework */; productType = "com.apple.product-type.framework"; }; 24AB20038158CC7501C1DFA166623B2C /* Pods-AWARE-ConfigURLESM */ = { @@ -5142,7 +5255,7 @@ ); name = "Pods-AWARE-ConfigURLESM"; productName = "Pods-AWARE-ConfigURLESM"; - productReference = D9B6F8AB89D959474B484EBDAAEFB7BD /* Pods_AWARE_ConfigURLESM.framework */; + productReference = F40FE266C8B88E723BE823A58C6E1A0C /* Pods_AWARE_ConfigURLESM.framework */; productType = "com.apple.product-type.framework"; }; 3F366479BDFA5B8FDA48D0F34F864DBB /* TPCircularBuffer */ = { @@ -5160,7 +5273,7 @@ ); name = TPCircularBuffer; productName = TPCircularBuffer; - productReference = 80B01AB80FFA62D458CC26683DB277D1 /* TPCircularBuffer.framework */; + productReference = 4D35A8336C456B8C2E1B7B5553189818 /* TPCircularBuffer.framework */; productType = "com.apple.product-type.framework"; }; 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */ = { @@ -5178,7 +5291,7 @@ ); name = CocoaAsyncSocket; productName = CocoaAsyncSocket; - productReference = F799DCA941C0DC982ACF9596419ED479 /* CocoaAsyncSocket.framework */; + productReference = 2768E0458BC0A3AEF6FB0DB7CABFF847 /* CocoaAsyncSocket.framework */; productType = "com.apple.product-type.framework"; }; 6FE69B9F9AA27445A890A6A95EDF4097 /* AWAREFramework-AWAREFramework */ = { @@ -5195,7 +5308,7 @@ ); name = "AWAREFramework-AWAREFramework"; productName = "AWAREFramework-AWAREFramework"; - productReference = D1DD5272160DB55EA4772D7037B856A3 /* AWAREFramework.bundle */; + productReference = 97DE68EED3285E61A7F4673B8E7862B7 /* AWAREFramework.bundle */; productType = "com.apple.product-type.bundle"; }; 86F587979DD9C5AE179646386DC4C010 /* Pods-AWARE-DynamicESM */ = { @@ -5222,7 +5335,7 @@ ); name = "Pods-AWARE-DynamicESM"; productName = "Pods-AWARE-DynamicESM"; - productReference = 8A767C27B03EEAA54273169FA7DC5BB7 /* Pods_AWARE_DynamicESM.framework */; + productReference = A9F849D845C11F99F2624B2F2DA880E6 /* Pods_AWARE_DynamicESM.framework */; productType = "com.apple.product-type.framework"; }; 89E6E5937F28BD09346F31BD482BCD8B /* Pods-AWARE-InteractiveESM */ = { @@ -5249,7 +5362,7 @@ ); name = "Pods-AWARE-InteractiveESM"; productName = "Pods-AWARE-InteractiveESM"; - productReference = 0204034D3CEEC9DC7B32E702882A5016 /* Pods_AWARE_InteractiveESM.framework */; + productReference = DDBCDA9720B4BAD4572128B2FFE46345 /* Pods_AWARE_InteractiveESM.framework */; productType = "com.apple.product-type.framework"; }; 8BDDF802D1C3216AC15F3203F1C0FF39 /* Pods-AWARE-SimpleClient */ = { @@ -5276,7 +5389,7 @@ ); name = "Pods-AWARE-SimpleClient"; productName = "Pods-AWARE-SimpleClient"; - productReference = FA7DA40F6C67FA97E7397CF1339B6E27 /* Pods_AWARE_SimpleClient.framework */; + productReference = E90466B09CF5C22B881B50B0B685B6E0 /* Pods_AWARE_SimpleClient.framework */; productType = "com.apple.product-type.framework"; }; 915C7F950669C6835E477A12C6A054F8 /* Pods-AWARE-CustomSensor */ = { @@ -5303,7 +5416,7 @@ ); name = "Pods-AWARE-CustomSensor"; productName = "Pods-AWARE-CustomSensor"; - productReference = A748FE1D5ED82E6864DAD19C0A6B43C2 /* Pods_AWARE_CustomSensor.framework */; + productReference = 8E34C283C8BB4305B283DA3B361335DC /* Pods_AWARE_CustomSensor.framework */; productType = "com.apple.product-type.framework"; }; 93AC4012F362CE66E05DB6D49AFE6DF8 /* Pods-AWARE-AmbientNoise */ = { @@ -5330,7 +5443,34 @@ ); name = "Pods-AWARE-AmbientNoise"; productName = "Pods-AWARE-AmbientNoise"; - productReference = 046E3F7AB6516634D641117139DB8FA7 /* Pods_AWARE_AmbientNoise.framework */; + productReference = E1723466949C268485DA279507E93AE6 /* Pods_AWARE_AmbientNoise.framework */; + productType = "com.apple.product-type.framework"; + }; + 958186CF7D75761173A23E66E0CCAF14 /* Pods-Tests */ = { + isa = PBXNativeTarget; + buildConfigurationList = D8D47628E72193868A03C45DC4BA9C14 /* Build configuration list for PBXNativeTarget "Pods-Tests" */; + buildPhases = ( + F671131DAB9F0990DD2F7E0095202356 /* Headers */, + 1266CCE3E7763DAFB2EBEC00D835476D /* Sources */, + 2DCACFB45D0B0D7322B6943C2DE703AC /* Frameworks */, + 23AB50059C1B807D1695DCF40F90E2DA /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 641A2A889DDB1D28A11CB3EA255E5A27 /* PBXTargetDependency */, + B5F0999CC6B5F98B7E8EC7CFDD24CF81 /* PBXTargetDependency */, + 62D6BAAC030EE0502320AF67982C9663 /* PBXTargetDependency */, + B50B6202A279B8B9B3B2F959D5812D5A /* PBXTargetDependency */, + 23462183832F32B16A12BC0647C62886 /* PBXTargetDependency */, + 5711B8C1E4ADCD3DA3AAFECFFAE90A03 /* PBXTargetDependency */, + 276AE5AB6C9F09FF51333A986F6679AF /* PBXTargetDependency */, + 56A6B8C4EFFE2F5D65BFB5D1CC23CBA3 /* PBXTargetDependency */, + F5F66DE259BC6416E743941CBC39FB51 /* PBXTargetDependency */, + ); + name = "Pods-Tests"; + productName = "Pods-Tests"; + productReference = 2243C2593145FE042E48AE82E9046069 /* Pods_Tests.framework */; productType = "com.apple.product-type.framework"; }; A46895471559E9050435D3B16ADEA154 /* Pods-AWARE-GoogleLogin */ = { @@ -5357,7 +5497,7 @@ ); name = "Pods-AWARE-GoogleLogin"; productName = "Pods-AWARE-GoogleLogin"; - productReference = C8FF5A8CF62ED6DA8ABA8C3BBC3D1486 /* Pods_AWARE_GoogleLogin.framework */; + productReference = 487322B7C3ED3A29F745673A31770197 /* Pods_AWARE_GoogleLogin.framework */; productType = "com.apple.product-type.framework"; }; BF03B0B2B8B052092CB5F90CC5FB3757 /* Charts */ = { @@ -5375,7 +5515,7 @@ ); name = Charts; productName = Charts; - productReference = 05B871564E1CA1C76BC6A736A9822C33 /* Charts.framework */; + productReference = 794A68C09CD774740BF7C73FE705F5A8 /* Charts.framework */; productType = "com.apple.product-type.framework"; }; D29FE46C3F13E990CE27A204B2A5F981 /* SCNetworkReachability */ = { @@ -5394,7 +5534,7 @@ ); name = SCNetworkReachability; productName = SCNetworkReachability; - productReference = 688D1C58AD581476B009D0129846D592 /* SCNetworkReachability.framework */; + productReference = 3A0C83F0722F839E6B9A096EF3F4A5B7 /* SCNetworkReachability.framework */; productType = "com.apple.product-type.framework"; }; D47C581D39D227080F83B16A22A56664 /* GoogleToolboxForMac */ = { @@ -5412,7 +5552,7 @@ ); name = GoogleToolboxForMac; productName = GoogleToolboxForMac; - productReference = E05B9FE36B117DD5702DD2F34FB7387C /* GoogleToolboxForMac.framework */; + productReference = 1C4D17BF5FDE70C93EAF599909BA9F28 /* GoogleToolboxForMac.framework */; productType = "com.apple.product-type.framework"; }; D676E21115185671D7258A56944ABE98 /* GTMSessionFetcher */ = { @@ -5430,7 +5570,7 @@ ); name = GTMSessionFetcher; productName = GTMSessionFetcher; - productReference = 4A7F5B2605FE3243684E82F01AFB2794 /* GTMSessionFetcher.framework */; + productReference = 68B6A7D0F2F843870A790FE2C8CC39FD /* GTMSessionFetcher.framework */; productType = "com.apple.product-type.framework"; }; D6B1218838F0BEC16F3BC1C07F4EE1E4 /* ios-ntp */ = { @@ -5449,7 +5589,7 @@ ); name = "ios-ntp"; productName = "ios-ntp"; - productReference = 1BC92C16AD6DA1BDD9B8BCD4D40FD2F0 /* ios_ntp.framework */; + productReference = 0FA55BF9EA75B34C6747437D692CD957 /* ios_ntp.framework */; productType = "com.apple.product-type.framework"; }; DCD7937274E661734EF6DDF866473804 /* Pods-AWARE-ScheduleESM */ = { @@ -5476,7 +5616,7 @@ ); name = "Pods-AWARE-ScheduleESM"; productName = "Pods-AWARE-ScheduleESM"; - productReference = B4D1647B08EDF25A5D63841C62320608 /* Pods_AWARE_ScheduleESM.framework */; + productReference = FC35CA92E32279A7CA87DC7C48FCB064 /* Pods_AWARE_ScheduleESM.framework */; productType = "com.apple.product-type.framework"; }; E7A15D034A801C5338816A549A6A63AA /* Pods-AWARE-Visualizer */ = { @@ -5504,7 +5644,7 @@ ); name = "Pods-AWARE-Visualizer"; productName = "Pods-AWARE-Visualizer"; - productReference = B15DD0FB1FBACF6A94B3C91481FB4089 /* Pods_AWARE_Visualizer.framework */; + productReference = 4B42BF7F814E0BE842693D188008BF5D /* Pods_AWARE_Visualizer.framework */; productType = "com.apple.product-type.framework"; }; FE283269C4CB5CD9118949433306C34E /* Pods-AWARE-Fitbit */ = { @@ -5531,7 +5671,7 @@ ); name = "Pods-AWARE-Fitbit"; productName = "Pods-AWARE-Fitbit"; - productReference = F65437D4AAC434FA1A8164768B4FD9CE /* Pods_AWARE_Fitbit.framework */; + productReference = C6E540297CCA18E8D9F0C609F1D47D7F /* Pods_AWARE_Fitbit.framework */; productType = "com.apple.product-type.framework"; }; /* End PBXNativeTarget section */ @@ -5551,7 +5691,7 @@ en, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = 8038AE92D1BD5BC714246CDB0B9AD820 /* Products */; + productRefGroup = 7BEB8CB5B15B9FD0499587BE1550D72B /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -5576,6 +5716,7 @@ 0F9F954E1671D87367DCCFF0685C0019 /* Pods-AWARE-SensingApp */, 8BDDF802D1C3216AC15F3203F1C0FF39 /* Pods-AWARE-SimpleClient */, E7A15D034A801C5338816A549A6A63AA /* Pods-AWARE-Visualizer */, + 958186CF7D75761173A23E66E0CCAF14 /* Pods-Tests */, D29FE46C3F13E990CE27A204B2A5F981 /* SCNetworkReachability */, 3F366479BDFA5B8FDA48D0F34F864DBB /* TPCircularBuffer */, ); @@ -5661,6 +5802,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 23AB50059C1B807D1695DCF40F90E2DA /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 344350F2B0E9201EDB6BA883557B892F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -5783,6 +5931,14 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ + 1266CCE3E7763DAFB2EBEC00D835476D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 48BC77AB654B9F02EB07C4D0BCE9CFB9 /* Pods-Tests-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 16B856400247C9DDBF234792A9C0146D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -6411,6 +6567,12 @@ target = 2497F7F40FD4DB2B6A8E13C7CA1F63FF /* AWAREFramework */; targetProxy = F3AA4A15512A2B399C81B23EFDA7C4A4 /* PBXContainerItemProxy */; }; + 23462183832F32B16A12BC0647C62886 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleToolboxForMac; + target = D47C581D39D227080F83B16A22A56664 /* GoogleToolboxForMac */; + targetProxy = 79DDEBC754E742E536DEC59A0639D094 /* PBXContainerItemProxy */; + }; 234C7370BF46734EC88C8B3CE9026F45 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleSignIn; @@ -6423,6 +6585,12 @@ target = D6B1218838F0BEC16F3BC1C07F4EE1E4 /* ios-ntp */; targetProxy = 2D75EEA81D2D875AC60D192B235793A9 /* PBXContainerItemProxy */; }; + 276AE5AB6C9F09FF51333A986F6679AF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = TPCircularBuffer; + target = 3F366479BDFA5B8FDA48D0F34F864DBB /* TPCircularBuffer */; + targetProxy = 669C96A2609958C51DF055E180C0A69C /* PBXContainerItemProxy */; + }; 27B672A9171F6FBE82CEA8E0F66D3A6C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleToolboxForMac; @@ -6573,6 +6741,18 @@ target = 76809CB18A35B091EE6A515B2DDF455D /* macros_blocks */; targetProxy = 18AAEBCEB313CEB6DA7E73C4A9184A9B /* PBXContainerItemProxy */; }; + 56A6B8C4EFFE2F5D65BFB5D1CC23CBA3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "ios-ntp"; + target = D6B1218838F0BEC16F3BC1C07F4EE1E4 /* ios-ntp */; + targetProxy = F1E887DD145BD95D84E42BA53AA41E4E /* PBXContainerItemProxy */; + }; + 5711B8C1E4ADCD3DA3AAFECFFAE90A03 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SCNetworkReachability; + target = D29FE46C3F13E990CE27A204B2A5F981 /* SCNetworkReachability */; + targetProxy = FD409CD8E3F4587FE5C25E15A15ACE1C /* PBXContainerItemProxy */; + }; 580346C7181FD7CF6CFA709FA94F4ED0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "ios-ntp"; @@ -6627,12 +6807,24 @@ target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; targetProxy = C6DF262DEC4316F75A6138F992641B20 /* PBXContainerItemProxy */; }; + 62D6BAAC030EE0502320AF67982C9663 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GTMSessionFetcher; + target = D676E21115185671D7258A56944ABE98 /* GTMSessionFetcher */; + targetProxy = A78C467EE6B9A0EE33B8AF74782D04D7 /* PBXContainerItemProxy */; + }; 63EDD80E823B5D87B746A44655AA2DFE /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = AWAREFramework; target = 2497F7F40FD4DB2B6A8E13C7CA1F63FF /* AWAREFramework */; targetProxy = 6C7E8C1CE5B838F39DE1CAC7A0D32D0A /* PBXContainerItemProxy */; }; + 641A2A889DDB1D28A11CB3EA255E5A27 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = AWAREFramework; + target = 2497F7F40FD4DB2B6A8E13C7CA1F63FF /* AWAREFramework */; + targetProxy = FB81FE6C3419D594A6A9FBA299DEA0E1 /* PBXContainerItemProxy */; + }; 64F9E651ECEEF204C927B2DC2DF90604 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SCNetworkReachability; @@ -6849,6 +7041,18 @@ target = D29FE46C3F13E990CE27A204B2A5F981 /* SCNetworkReachability */; targetProxy = 5A7DDA716BDB850A83F9EBDDA68BF0EF /* PBXContainerItemProxy */; }; + B50B6202A279B8B9B3B2F959D5812D5A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleSignIn; + target = CAD3534FC55B0333104E5117C0A9A324 /* GoogleSignIn */; + targetProxy = 93A938C128F907BA323BD2A6AE73FB89 /* PBXContainerItemProxy */; + }; + B5F0999CC6B5F98B7E8EC7CFDD24CF81 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CocoaAsyncSocket; + target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; + targetProxy = EBA0DBA982604B50D84B319637F60EDF /* PBXContainerItemProxy */; + }; B7A15C78CF1CDFFA06A76390EA240862 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GTMSessionFetcher; @@ -6981,6 +7185,12 @@ target = 76809CB18A35B091EE6A515B2DDF455D /* macros_blocks */; targetProxy = CA91F65AE2438DAB3B2F06487EC1A0E4 /* PBXContainerItemProxy */; }; + F5F66DE259BC6416E743941CBC39FB51 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = macros_blocks; + target = 76809CB18A35B091EE6A515B2DDF455D /* macros_blocks */; + targetProxy = B71CDC9FC4B10316378780C9C19B42ED /* PBXContainerItemProxy */; + }; F62AAF4415366EBCD133D25B5F703C25 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = macros_blocks; @@ -7027,9 +7237,44 @@ }; name = Debug; }; + 15ED017C990E26BE502D46CFE2BA7023 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FAF3AF43F30B05D6414D76D442C6443D /* Pods-Tests.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/Pods-Tests/Pods-Tests-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-Tests/Pods-Tests.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; 179A214EC9709CF96EB482F553BA333A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6C0B50BDC138E70D2CE9CB6817FE0950 /* Pods-AWARE-GoogleLogin.release.xcconfig */; + baseConfigurationReference = 931A0F6332A366B1A835E101678E3BF5 /* Pods-AWARE-GoogleLogin.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -7159,7 +7404,7 @@ }; 1C7DD8937C87B327B7D5E06E02CDE245 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6371B6F7E231CA4EFBF3CA0060D4D883 /* Pods-AWARE-CustomSensor.release.xcconfig */; + baseConfigurationReference = 0EF1609ADFBDC5684329F8EE66E64203 /* Pods-AWARE-CustomSensor.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -7286,7 +7531,7 @@ }; 379DB2E565B6358CBD53286BDEFA62F8 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FCFAA7E6DCE60CEE6C63E8F6BF32F3AE /* Pods-AWARE-Fitbit.release.xcconfig */; + baseConfigurationReference = AB3DB793D2E30E1C01C77996F7102A6E /* Pods-AWARE-Fitbit.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -7446,6 +7691,40 @@ }; name = Debug; }; + 5AAB2D556F569D16B2C7F24BFA364F9C /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C0830DB3EF771C113B8DBE6B7ABBB927 /* Pods-Tests.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/Pods-Tests/Pods-Tests-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-Tests/Pods-Tests.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; 5B0C8287D755FD95091CF35D87FB8B2D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { @@ -7558,7 +7837,7 @@ }; 600750C766952BD6D171E8AD9BC2297B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E7328266DF33E608C2C860C25A56239B /* Pods-AWARE-SimpleClient.release.xcconfig */; + baseConfigurationReference = 98FBDF3C2478BF36DBEDC6F5ED91A513 /* Pods-AWARE-SimpleClient.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -7593,7 +7872,7 @@ }; 6B703753E0D9BA46F076784971326C0F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B0E96BB99336ECF4751DB9892CBEB295 /* Pods-AWARE-AmbientNoise.release.xcconfig */; + baseConfigurationReference = 8EE28B3E14953F63B5926E7ABFEEDCE4 /* Pods-AWARE-AmbientNoise.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -7692,7 +7971,7 @@ }; 6E2CAD538ED83CE973C27B196992563A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AA519F39A4194C4E5AB92D35ADAC1789 /* Pods-AWARE-AmbientNoise.debug.xcconfig */; + baseConfigurationReference = 7448D51B9B2C864769B7B0DED3610B4E /* Pods-AWARE-AmbientNoise.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -7726,7 +8005,7 @@ }; 7B1EBFDD219413891EB8CE8592E5F742 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 277F2CBC878663ABDBAAD6BE419CC50E /* Pods-AWARE-DynamicESM.debug.xcconfig */; + baseConfigurationReference = CCC0E002FD9D262BCCA7E25B0CC0731C /* Pods-AWARE-DynamicESM.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -7760,7 +8039,7 @@ }; 7E1C10FACDD955D3E3D971D94C1DD3E1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 70ACD7E9DE8F9A776966024DF20CD50E /* Pods-AWARE-ConfigURLESM.debug.xcconfig */; + baseConfigurationReference = 2FA183BAC0E7FA6EA115CF5D838E713A /* Pods-AWARE-ConfigURLESM.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -7825,7 +8104,7 @@ }; 8A3F0C7FC1C2A845F7328F27E6E4A502 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 737BB7E2F1538F7A730D623BB0C478DC /* Pods-AWARE-InteractiveESM.release.xcconfig */; + baseConfigurationReference = 9D27C5518223BCA328FC255618672645 /* Pods-AWARE-InteractiveESM.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -7860,7 +8139,7 @@ }; 970379C72D26F29BF97334C3EF6C2F42 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0801B35E053DDD517A533D4005E20E4B /* Pods-AWARE-Fitbit.debug.xcconfig */; + baseConfigurationReference = 10E17757B5160E6C07B245A68903D2B3 /* Pods-AWARE-Fitbit.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -7925,7 +8204,7 @@ }; A4693640525650B78BEF63A34C13A0D6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6C89D46BEA31E6E9E0D8450488251F84 /* Pods-AWARE-CustomESM.debug.xcconfig */; + baseConfigurationReference = E2324667635AAA816BDF736D6C2550D5 /* Pods-AWARE-CustomESM.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -7959,7 +8238,7 @@ }; AB2F5AB7686F9B9A7D48D3A6EF3EC5F0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4EBA3CE21C482FD459635978433AF9D2 /* Pods-AWARE-ScheduleESM.release.xcconfig */; + baseConfigurationReference = AD205424F381BCC7DF897F6ABBB8C66D /* Pods-AWARE-ScheduleESM.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -7994,7 +8273,7 @@ }; B8590D701078FB01CF2B2443B8D09175 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D619E69E60E478DD1D502525B1A16677 /* Pods-AWARE-GoogleLogin.debug.xcconfig */; + baseConfigurationReference = DB3FB346FE1B58672A93EA6095A53E19 /* Pods-AWARE-GoogleLogin.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -8028,7 +8307,7 @@ }; BA30A643FF608C5954BAF53749BABAF5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D58716641806279DF2FBB46206149C68 /* Pods-AWARE-CustomSensor.debug.xcconfig */; + baseConfigurationReference = 20470CFEAE0449736EC19A4C8044AE3A /* Pods-AWARE-CustomSensor.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -8062,7 +8341,7 @@ }; BFCD1E213A60CD505AB1C9C65A6E9B1F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5F3D8B80F8E6C4A382341C629D043C55 /* Pods-AWARE-Visualizer.debug.xcconfig */; + baseConfigurationReference = C4010F78583132348D35327863F7CC94 /* Pods-AWARE-Visualizer.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -8096,7 +8375,7 @@ }; C28ADF1AE02740A99F2BF7FBF2B062E3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DFB54C90FCC0FF8A0A2C0D8D6EEFDEFB /* Pods-AWARE-DynamicESM.release.xcconfig */; + baseConfigurationReference = 0412007BEC0D1E5804DC9B03FC615585 /* Pods-AWARE-DynamicESM.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -8131,7 +8410,7 @@ }; C335BE2595922A281C48D355B36235A6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DD6353032F80C093158C9482AAA9E2A9 /* Pods-AWARE-ScheduleESM.debug.xcconfig */; + baseConfigurationReference = AAE0B14CE3E613F04C9F4129F65E96EE /* Pods-AWARE-ScheduleESM.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -8197,7 +8476,7 @@ }; D272D0EB80385D1CD835C59F78F0814B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8495DE2CB2341A10C504F6C49E0B46C1 /* Pods-AWARE-SensingApp.release.xcconfig */; + baseConfigurationReference = 28C06E5F07721C5A025D4F95125BAC75 /* Pods-AWARE-SensingApp.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -8232,7 +8511,7 @@ }; DACA5E94A28787B81483EFB9C099074E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E7210D5946610B823C320E528841C864 /* Pods-AWARE-ConfigURLESM.release.xcconfig */; + baseConfigurationReference = E486AE5EE363EAA80D4A3C5D46BA57E1 /* Pods-AWARE-ConfigURLESM.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -8298,7 +8577,7 @@ }; E1C450646A98665AC6D2EFF31FEFC918 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 09BAD39A795DB0719476E50D6C5C9742 /* Pods-AWARE-CustomESM.release.xcconfig */; + baseConfigurationReference = B3446D2DFF31B35326F798BF3428D050 /* Pods-AWARE-CustomESM.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -8333,7 +8612,7 @@ }; E8B0544EAC0B4BC58AF20D26E2DE7CBC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6CD3F22BC9E910415367A8AE389566FB /* Pods-AWARE-SimpleClient.debug.xcconfig */; + baseConfigurationReference = E3AC9D8021426EEFF2DA0FC8E9531A0A /* Pods-AWARE-SimpleClient.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -8367,7 +8646,7 @@ }; EA1BA8CAC58FAD1733D66077CB54E089 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 25E4A3509A7E9FC6528A495A68489661 /* Pods-AWARE-Visualizer.release.xcconfig */; + baseConfigurationReference = 96B219B870DA7FA7A6275A284ADB73C2 /* Pods-AWARE-Visualizer.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -8429,7 +8708,7 @@ }; F6BABF879F7685EE631F7ECCE97FD162 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E1DF8DA97A6B5C4F18D8FC36466F9C62 /* Pods-AWARE-SensingApp.debug.xcconfig */; + baseConfigurationReference = 14966594A1C1FA7F6F0AFBA70CCA411F /* Pods-AWARE-SensingApp.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -8463,7 +8742,7 @@ }; F6D10DFD26F4D42158C51DFEB343B9B8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4944F0E594D45407B2EE6508C35C586F /* Pods-AWARE-InteractiveESM.debug.xcconfig */; + baseConfigurationReference = 1F5643F29EC926D98FA42FD442FDA2DD /* Pods-AWARE-InteractiveESM.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -8750,6 +9029,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + D8D47628E72193868A03C45DC4BA9C14 /* Build configuration list for PBXNativeTarget "Pods-Tests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 5AAB2D556F569D16B2C7F24BFA364F9C /* Debug */, + 15ED017C990E26BE502D46CFE2BA7023 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; E44FBE7F53ED9EBBB5854A6B8B4DB52E /* Build configuration list for PBXNativeTarget "AWAREFramework-AWAREFramework" */ = { isa = XCConfigurationList; buildConfigurations = ( diff --git a/Example/Tests/Tests.swift b/Example/Tests/Tests.swift index cc9c5c3..6d84477 100644 --- a/Example/Tests/Tests.swift +++ b/Example/Tests/Tests.swift @@ -7,11 +7,19 @@ // import XCTest +import AWAREFramework class Tests: XCTestCase { override func setUp() { // Put setup code here. This method is called before the invocation of each test method in the class. + + //CoreDataHandler.shared().deleteLocalStorage(withName: "AWARE", type: "sqlite") + + AWARECore.shared() + AWAREStudy.shared() + AWARESensorManager.shared() + } override func tearDown() { @@ -22,6 +30,40 @@ class Tests: XCTestCase { // This is an example of a functional test case. // Use XCTAssert and related functions to verify your tests produce the correct results. } + + func testLimitedDataFetch(){ + + let acc = Accelerometer() + + var array = Array>() + for i in 0...999 { + var dict = Dictionary() + dict.updateValue(AWAREUtils.getUnixTimestamp(Date().addingTimeInterval(TimeInterval(i))), forKey: "timestamp") + dict.updateValue(AWAREStudy.shared().getDeviceId(), forKey: "device_id") + dict.updateValue(0, forKey: "double_values_0") + dict.updateValue(1, forKey: "double_values_1") + dict.updateValue(2, forKey: "double_values_2") + dict.updateValue(3, forKey: "accuracy") + dict.updateValue("\(i)", forKey: "label") + array.append(dict) + } + print(array.count) + acc.storage?.saveData(with: array, buffer: false, saveInMainThread: true) + let expectation = XCTestExpectation(description: "test") + acc.storage?.fetchData(from: Date().addingTimeInterval(-1*60*60*24), to: Date().addingTimeInterval(1000), limit: 10, all: false, handler: { (name, data, from, to, isEnd, error) in + print(name, data!.count) + if(isEnd){ + print("done") + DispatchQueue.main.async { + expectation.fulfill() + } + }else{ + print("continue") + + } + }) + wait(for: [expectation], timeout: 10) + } func testPerformanceExample() { // This is an example of a performance test case.