├── .gitignore ├── .swift-version ├── .travis.yml ├── Classes ├── ReversiService.swift ├── Variation.swift └── VariationCompatible.swift ├── Docs ├── Apptimize.md ├── Firebase.md └── Optimizely.md ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Firebase │ │ ├── CoreOnly │ │ │ └── Sources │ │ │ │ ├── Firebase.h │ │ │ │ └── module.modulemap │ │ └── README.md │ ├── FirebaseABTesting │ │ ├── CHANGELOG │ │ ├── Frameworks │ │ │ └── FirebaseABTesting.framework │ │ │ │ ├── FirebaseABTesting │ │ │ │ ├── Headers │ │ │ │ ├── FIRExperimentController.h │ │ │ │ ├── FIRLifecycleEvents.h │ │ │ │ └── FirebaseABTesting.h │ │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ └── README.md │ ├── FirebaseAnalytics │ │ └── Frameworks │ │ │ ├── FIRAnalyticsConnector.framework │ │ │ └── FIRAnalyticsConnector │ │ │ ├── FirebaseAnalytics.framework │ │ │ ├── FirebaseAnalytics │ │ │ ├── Headers │ │ │ │ ├── FIRAnalytics+AppDelegate.h │ │ │ │ ├── FIRAnalytics.h │ │ │ │ ├── FIREventNames.h │ │ │ │ ├── FIRParameterNames.h │ │ │ │ ├── FIRUserPropertyNames.h │ │ │ │ └── FirebaseAnalytics.h │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ │ └── FirebaseCoreDiagnostics.framework │ │ │ ├── FirebaseCoreDiagnostics │ │ │ └── Modules │ │ │ └── module.modulemap │ ├── FirebaseCore │ │ ├── Firebase │ │ │ └── Core │ │ │ │ ├── FIRAnalyticsConfiguration.m │ │ │ │ ├── FIRApp.m │ │ │ │ ├── FIRAppAssociationRegistration.m │ │ │ │ ├── FIRBundleUtil.m │ │ │ │ ├── FIRComponent.m │ │ │ │ ├── FIRComponentContainer.m │ │ │ │ ├── FIRComponentType.m │ │ │ │ ├── FIRConfiguration.m │ │ │ │ ├── FIRDependency.m │ │ │ │ ├── FIRErrors.m │ │ │ │ ├── FIRLogger.m │ │ │ │ ├── FIROptions.m │ │ │ │ ├── FIRVersion.m │ │ │ │ ├── Private │ │ │ │ ├── FIRAnalyticsConfiguration+Internal.h │ │ │ │ ├── FIRAppAssociationRegistration.h │ │ │ │ ├── FIRAppInternal.h │ │ │ │ ├── FIRBundleUtil.h │ │ │ │ ├── FIRComponent.h │ │ │ │ ├── FIRComponentContainer.h │ │ │ │ ├── FIRComponentContainerInternal.h │ │ │ │ ├── FIRComponentType.h │ │ │ │ ├── FIRDependency.h │ │ │ │ ├── FIRErrorCode.h │ │ │ │ ├── FIRErrors.h │ │ │ │ ├── FIRLibrary.h │ │ │ │ ├── FIRLogger.h │ │ │ │ ├── FIROptionsInternal.h │ │ │ │ └── FIRVersion.h │ │ │ │ └── Public │ │ │ │ ├── FIRAnalyticsConfiguration.h │ │ │ │ ├── FIRApp.h │ │ │ │ ├── FIRConfiguration.h │ │ │ │ ├── FIRLoggerLevel.h │ │ │ │ ├── FIROptions.h │ │ │ │ └── FirebaseCore.h │ │ ├── LICENSE │ │ └── README.md │ ├── FirebaseInstanceID │ │ ├── CHANGELOG.md │ │ ├── Frameworks │ │ │ └── FirebaseInstanceID.framework │ │ │ │ ├── FirebaseInstanceID │ │ │ │ ├── Headers │ │ │ │ ├── FIRInstanceID.h │ │ │ │ └── FirebaseInstanceID.h │ │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ └── README.md │ ├── FirebaseRemoteConfig │ │ ├── CHANGELOG │ │ ├── Frameworks │ │ │ └── FirebaseRemoteConfig.framework │ │ │ │ ├── FirebaseRemoteConfig │ │ │ │ ├── Headers │ │ │ │ ├── FIRRemoteConfig.h │ │ │ │ └── FirebaseRemoteConfig.h │ │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ └── README.md │ ├── GoogleAppMeasurement │ │ └── Frameworks │ │ │ └── GoogleAppMeasurement.framework │ │ │ ├── GoogleAppMeasurement │ │ │ └── Modules │ │ │ └── module.modulemap │ ├── GoogleUtilities │ │ ├── GoogleUtilities │ │ │ ├── AppDelegateSwizzler │ │ │ │ ├── GULAppDelegateSwizzler.m │ │ │ │ ├── Internal │ │ │ │ │ └── GULAppDelegateSwizzler_Private.h │ │ │ │ └── Private │ │ │ │ │ └── GULAppDelegateSwizzler.h │ │ │ ├── Common │ │ │ │ └── GULLoggerCodes.h │ │ │ ├── Environment │ │ │ │ └── third_party │ │ │ │ │ ├── GULAppEnvironmentUtil.h │ │ │ │ │ └── GULAppEnvironmentUtil.m │ │ │ ├── Logger │ │ │ │ ├── GULLogger.m │ │ │ │ ├── Private │ │ │ │ │ └── GULLogger.h │ │ │ │ └── Public │ │ │ │ │ └── GULLoggerLevel.h │ │ │ ├── MethodSwizzler │ │ │ │ ├── GULSwizzler.m │ │ │ │ └── Private │ │ │ │ │ ├── GULOriginalIMPConvenienceMacros.h │ │ │ │ │ └── GULSwizzler.h │ │ │ ├── NSData+zlib │ │ │ │ ├── GULNSData+zlib.h │ │ │ │ └── GULNSData+zlib.m │ │ │ ├── Network │ │ │ │ ├── GULMutableDictionary.m │ │ │ │ ├── GULNetwork.m │ │ │ │ ├── GULNetworkConstants.m │ │ │ │ ├── GULNetworkURLSession.m │ │ │ │ └── Private │ │ │ │ │ ├── GULMutableDictionary.h │ │ │ │ │ ├── GULNetwork.h │ │ │ │ │ ├── GULNetworkConstants.h │ │ │ │ │ ├── GULNetworkLoggerProtocol.h │ │ │ │ │ ├── GULNetworkMessageCode.h │ │ │ │ │ └── GULNetworkURLSession.h │ │ │ ├── Reachability │ │ │ │ ├── GULReachabilityChecker+Internal.h │ │ │ │ ├── GULReachabilityChecker.m │ │ │ │ └── Private │ │ │ │ │ ├── GULReachabilityChecker.h │ │ │ │ │ └── GULReachabilityMessageCode.h │ │ │ └── UserDefaults │ │ │ │ ├── GULUserDefaults.m │ │ │ │ └── Private │ │ │ │ └── GULUserDefaults.h │ │ ├── LICENSE │ │ └── README.md │ ├── Headers │ │ ├── Private │ │ │ └── Firebase │ │ │ │ └── Firebase.h │ │ └── Public │ │ │ └── Firebase │ │ │ └── Firebase.h │ ├── Local Podspecs │ │ └── Reversi.podspec.json │ ├── Manifest.lock │ ├── OptimizelySDKCore │ │ ├── LICENSE │ │ ├── OptimizelySDKCore │ │ │ ├── Frameworks │ │ │ │ └── murmur │ │ │ │ │ ├── murmur3.c │ │ │ │ │ └── murmur3.h │ │ │ ├── OPTLYJSONModel │ │ │ │ └── OPTLYJSONModel │ │ │ │ │ ├── OPTLYJSONModel │ │ │ │ │ ├── OPTLYJSONModel.h │ │ │ │ │ ├── OPTLYJSONModel.m │ │ │ │ │ ├── OPTLYJSONModelClassProperty.h │ │ │ │ │ ├── OPTLYJSONModelClassProperty.m │ │ │ │ │ ├── OPTLYJSONModelError.h │ │ │ │ │ └── OPTLYJSONModelError.m │ │ │ │ │ ├── OPTLYJSONModelLib.h │ │ │ │ │ └── OPTLYJSONModelTransformations │ │ │ │ │ ├── OPTLYJSONKeyMapper.h │ │ │ │ │ ├── OPTLYJSONKeyMapper.m │ │ │ │ │ ├── OPTLYJSONValueTransformer.h │ │ │ │ │ └── OPTLYJSONValueTransformer.m │ │ │ └── OptimizelySDKCore │ │ │ │ ├── OPTLYAttribute.h │ │ │ │ ├── OPTLYAttribute.m │ │ │ │ ├── OPTLYAudience.h │ │ │ │ ├── OPTLYAudience.m │ │ │ │ ├── OPTLYBaseCondition.h │ │ │ │ ├── OPTLYBaseCondition.m │ │ │ │ ├── OPTLYBucketer.h │ │ │ │ ├── OPTLYBucketer.m │ │ │ │ ├── OPTLYBuilder.h │ │ │ │ ├── OPTLYBuilder.m │ │ │ │ ├── OPTLYCondition.h │ │ │ │ ├── OPTLYCondition.m │ │ │ │ ├── OPTLYControlAttributes.h │ │ │ │ ├── OPTLYControlAttributes.m │ │ │ │ ├── OPTLYDatafileKeys.h │ │ │ │ ├── OPTLYDatafileKeys.m │ │ │ │ ├── OPTLYDecisionEventTicket.h │ │ │ │ ├── OPTLYDecisionEventTicket.m │ │ │ │ ├── OPTLYDecisionService.h │ │ │ │ ├── OPTLYDecisionService.m │ │ │ │ ├── OPTLYErrorHandler.h │ │ │ │ ├── OPTLYErrorHandler.m │ │ │ │ ├── OPTLYErrorHandlerMessages.h │ │ │ │ ├── OPTLYErrorHandlerMessages.m │ │ │ │ ├── OPTLYEvent.h │ │ │ │ ├── OPTLYEvent.m │ │ │ │ ├── OPTLYEventAudience.h │ │ │ │ ├── OPTLYEventAudience.m │ │ │ │ ├── OPTLYEventBuilder.h │ │ │ │ ├── OPTLYEventBuilder.m │ │ │ │ ├── OPTLYEventDecision.h │ │ │ │ ├── OPTLYEventDecision.m │ │ │ │ ├── OPTLYEventDecisionTicket.h │ │ │ │ ├── OPTLYEventDecisionTicket.m │ │ │ │ ├── OPTLYEventDispatcherBasic.h │ │ │ │ ├── OPTLYEventDispatcherBasic.m │ │ │ │ ├── OPTLYEventFeature.h │ │ │ │ ├── OPTLYEventFeature.m │ │ │ │ ├── OPTLYEventHeader.h │ │ │ │ ├── OPTLYEventHeader.m │ │ │ │ ├── OPTLYEventLayerState.h │ │ │ │ ├── OPTLYEventLayerState.m │ │ │ │ ├── OPTLYEventMetric.h │ │ │ │ ├── OPTLYEventMetric.m │ │ │ │ ├── OPTLYEventParameterKeys.h │ │ │ │ ├── OPTLYEventParameterKeys.m │ │ │ │ ├── OPTLYEventRelatedEvent.h │ │ │ │ ├── OPTLYEventRelatedEvent.m │ │ │ │ ├── OPTLYEventTagUtil.h │ │ │ │ ├── OPTLYEventTagUtil.m │ │ │ │ ├── OPTLYEventView.h │ │ │ │ ├── OPTLYEventView.m │ │ │ │ ├── OPTLYExperiment.h │ │ │ │ ├── OPTLYExperiment.m │ │ │ │ ├── OPTLYExperimentBucketMapEntity.h │ │ │ │ ├── OPTLYExperimentBucketMapEntity.m │ │ │ │ ├── OPTLYFeatureDecision.h │ │ │ │ ├── OPTLYFeatureDecision.m │ │ │ │ ├── OPTLYFeatureFlag.h │ │ │ │ ├── OPTLYFeatureFlag.m │ │ │ │ ├── OPTLYFeatureVariable.h │ │ │ │ ├── OPTLYFeatureVariable.m │ │ │ │ ├── OPTLYGroup.h │ │ │ │ ├── OPTLYGroup.m │ │ │ │ ├── OPTLYHTTPRequestManager.h │ │ │ │ ├── OPTLYHTTPRequestManager.m │ │ │ │ ├── OPTLYLog.h │ │ │ │ ├── OPTLYLog.m │ │ │ │ ├── OPTLYLogger.h │ │ │ │ ├── OPTLYLogger.m │ │ │ │ ├── OPTLYLoggerMessages.h │ │ │ │ ├── OPTLYLoggerMessages.m │ │ │ │ ├── OPTLYNetworkService.h │ │ │ │ ├── OPTLYNetworkService.m │ │ │ │ ├── OPTLYNotificationCenter.h │ │ │ │ ├── OPTLYNotificationCenter.m │ │ │ │ ├── OPTLYProjectConfig.h │ │ │ │ ├── OPTLYProjectConfig.m │ │ │ │ ├── OPTLYProjectConfigBuilder.h │ │ │ │ ├── OPTLYProjectConfigBuilder.m │ │ │ │ ├── OPTLYQueue.h │ │ │ │ ├── OPTLYQueue.m │ │ │ │ ├── OPTLYRollout.h │ │ │ │ ├── OPTLYRollout.m │ │ │ │ ├── OPTLYTrafficAllocation.h │ │ │ │ ├── OPTLYTrafficAllocation.m │ │ │ │ ├── OPTLYUserProfile.h │ │ │ │ ├── OPTLYUserProfile.m │ │ │ │ ├── OPTLYUserProfileServiceBasic.h │ │ │ │ ├── OPTLYUserProfileServiceBasic.m │ │ │ │ ├── OPTLYVariable.h │ │ │ │ ├── OPTLYVariable.m │ │ │ │ ├── OPTLYVariableUsage.h │ │ │ │ ├── OPTLYVariableUsage.m │ │ │ │ ├── OPTLYVariation.h │ │ │ │ ├── OPTLYVariation.m │ │ │ │ ├── OPTLYVariationVariable.h │ │ │ │ ├── OPTLYVariationVariable.m │ │ │ │ ├── Optimizely.h │ │ │ │ ├── Optimizely.m │ │ │ │ └── OptimizelySDKCore.h │ │ └── README.md │ ├── OptimizelySDKDatafileManager │ │ ├── LICENSE │ │ ├── OptimizelySDKDatafileManager │ │ │ └── OptimizelySDKDatafileManager │ │ │ │ ├── OPTLYDatafileManager.h │ │ │ │ ├── OPTLYDatafileManager.m │ │ │ │ ├── OPTLYDatafileManagerBuilder.h │ │ │ │ ├── OPTLYDatafileManagerBuilder.m │ │ │ │ └── OptimizelySDKDatafileManager.h │ │ └── README.md │ ├── OptimizelySDKEventDispatcher │ │ ├── LICENSE │ │ ├── OptimizelySDKEventDispatcher │ │ │ └── OptimizelySDKEventDispatcher │ │ │ │ ├── OPTLYEventDispatcher.h │ │ │ │ ├── OPTLYEventDispatcher.m │ │ │ │ ├── OPTLYEventDispatcherBuilder.h │ │ │ │ ├── OPTLYEventDispatcherBuilder.m │ │ │ │ └── OptimizelySDKEventDispatcher.h │ │ └── README.md │ ├── OptimizelySDKShared │ │ ├── LICENSE │ │ ├── OptimizelySDKShared │ │ │ ├── OPTLYFMDB │ │ │ │ └── src │ │ │ │ │ └── optlyfmdb │ │ │ │ │ ├── OPTLYFMDB.h │ │ │ │ │ ├── OPTLYFMDBDatabase.h │ │ │ │ │ ├── OPTLYFMDBDatabase.m │ │ │ │ │ ├── OPTLYFMDBDatabaseQueue.h │ │ │ │ │ ├── OPTLYFMDBDatabaseQueue.m │ │ │ │ │ ├── OPTLYFMDBResultSet.h │ │ │ │ │ └── OPTLYFMDBResultSet.m │ │ │ └── OptimizelySDKShared │ │ │ │ ├── OPTLYClient.h │ │ │ │ ├── OPTLYClient.m │ │ │ │ ├── OPTLYClientBuilder.h │ │ │ │ ├── OPTLYClientBuilder.m │ │ │ │ ├── OPTLYDataStore.h │ │ │ │ ├── OPTLYDataStore.m │ │ │ │ ├── OPTLYDatabase.h │ │ │ │ ├── OPTLYDatabase.m │ │ │ │ ├── OPTLYDatabaseEntity.h │ │ │ │ ├── OPTLYDatabaseEntity.m │ │ │ │ ├── OPTLYDatafileConfig.h │ │ │ │ ├── OPTLYDatafileConfig.m │ │ │ │ ├── OPTLYDatafileManagerBasic.h │ │ │ │ ├── OPTLYDatafileManagerBasic.m │ │ │ │ ├── OPTLYEventDataStore.h │ │ │ │ ├── OPTLYEventDataStore.m │ │ │ │ ├── OPTLYFileManager.h │ │ │ │ ├── OPTLYFileManager.m │ │ │ │ ├── OPTLYManagerBase.h │ │ │ │ ├── OPTLYManagerBase.m │ │ │ │ ├── OPTLYManagerBasic.h │ │ │ │ ├── OPTLYManagerBasic.m │ │ │ │ ├── OPTLYManagerBuilder.h │ │ │ │ ├── OPTLYManagerBuilder.m │ │ │ │ └── OptimizelySDKShared.h │ │ └── README.md │ ├── OptimizelySDKUserProfileService │ │ ├── LICENSE │ │ ├── OptimizelySDKUserProfileService │ │ │ └── OptimizelySDKUserProfileService │ │ │ │ ├── OPTLYUserProfileService.h │ │ │ │ ├── OPTLYUserProfileService.m │ │ │ │ ├── OPTLYUserProfileServiceBuilder.h │ │ │ │ ├── OPTLYUserProfileServiceBuilder.m │ │ │ │ └── OptimizelySDKUserProfileService.h │ │ └── README.md │ ├── OptimizelySDKiOS │ │ ├── LICENSE │ │ ├── OptimizelySDKiOS │ │ │ └── OptimizelySDKiOS │ │ │ │ ├── OPTLYManager.h │ │ │ │ ├── OPTLYManager.m │ │ │ │ └── OptimizelySDKiOS.h │ │ └── README.md │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Reversi.xcscheme │ ├── Protobuf │ │ ├── LICENSE │ │ ├── README.md │ │ └── objectivec │ │ │ ├── GPBArray.h │ │ │ ├── GPBArray.m │ │ │ ├── GPBArray_PackagePrivate.h │ │ │ ├── GPBBootstrap.h │ │ │ ├── GPBCodedInputStream.h │ │ │ ├── GPBCodedInputStream.m │ │ │ ├── GPBCodedInputStream_PackagePrivate.h │ │ │ ├── GPBCodedOutputStream.h │ │ │ ├── GPBCodedOutputStream.m │ │ │ ├── GPBCodedOutputStream_PackagePrivate.h │ │ │ ├── GPBDescriptor.h │ │ │ ├── GPBDescriptor.m │ │ │ ├── GPBDescriptor_PackagePrivate.h │ │ │ ├── GPBDictionary.h │ │ │ ├── GPBDictionary.m │ │ │ ├── GPBDictionary_PackagePrivate.h │ │ │ ├── GPBExtensionInternals.h │ │ │ ├── GPBExtensionInternals.m │ │ │ ├── GPBExtensionRegistry.h │ │ │ ├── GPBExtensionRegistry.m │ │ │ ├── GPBMessage.h │ │ │ ├── GPBMessage.m │ │ │ ├── GPBMessage_PackagePrivate.h │ │ │ ├── GPBProtocolBuffers.h │ │ │ ├── GPBProtocolBuffers_RuntimeSupport.h │ │ │ ├── GPBRootObject.h │ │ │ ├── GPBRootObject.m │ │ │ ├── GPBRootObject_PackagePrivate.h │ │ │ ├── GPBRuntimeTypes.h │ │ │ ├── GPBUnknownField.h │ │ │ ├── GPBUnknownField.m │ │ │ ├── GPBUnknownFieldSet.h │ │ │ ├── GPBUnknownFieldSet.m │ │ │ ├── GPBUnknownFieldSet_PackagePrivate.h │ │ │ ├── GPBUnknownField_PackagePrivate.h │ │ │ ├── GPBUtilities.h │ │ │ ├── GPBUtilities.m │ │ │ ├── GPBUtilities_PackagePrivate.h │ │ │ ├── GPBWellKnownTypes.h │ │ │ ├── GPBWellKnownTypes.m │ │ │ ├── GPBWireFormat.h │ │ │ ├── GPBWireFormat.m │ │ │ └── google │ │ │ └── protobuf │ │ │ ├── Any.pbobjc.h │ │ │ ├── Any.pbobjc.m │ │ │ ├── Api.pbobjc.h │ │ │ ├── Api.pbobjc.m │ │ │ ├── Duration.pbobjc.h │ │ │ ├── Duration.pbobjc.m │ │ │ ├── Empty.pbobjc.h │ │ │ ├── Empty.pbobjc.m │ │ │ ├── FieldMask.pbobjc.h │ │ │ ├── FieldMask.pbobjc.m │ │ │ ├── SourceContext.pbobjc.h │ │ │ ├── SourceContext.pbobjc.m │ │ │ ├── Struct.pbobjc.h │ │ │ ├── Struct.pbobjc.m │ │ │ ├── Timestamp.pbobjc.h │ │ │ ├── Timestamp.pbobjc.m │ │ │ ├── Type.pbobjc.h │ │ │ ├── Type.pbobjc.m │ │ │ ├── Wrappers.pbobjc.h │ │ │ └── Wrappers.pbobjc.m │ ├── Target Support Files │ │ ├── Firebase │ │ │ └── Firebase.xcconfig │ │ ├── FirebaseABTesting │ │ │ └── FirebaseABTesting.xcconfig │ │ ├── FirebaseAnalytics │ │ │ └── FirebaseAnalytics.xcconfig │ │ ├── FirebaseCore │ │ │ ├── FirebaseCore-Info.plist │ │ │ ├── FirebaseCore-dummy.m │ │ │ ├── FirebaseCore-umbrella.h │ │ │ ├── FirebaseCore.modulemap │ │ │ └── FirebaseCore.xcconfig │ │ ├── FirebaseInstanceID │ │ │ └── FirebaseInstanceID.xcconfig │ │ ├── FirebaseRemoteConfig │ │ │ └── FirebaseRemoteConfig.xcconfig │ │ ├── GoogleAppMeasurement │ │ │ └── GoogleAppMeasurement.xcconfig │ │ ├── GoogleUtilities │ │ │ ├── GoogleUtilities-Info.plist │ │ │ ├── GoogleUtilities-dummy.m │ │ │ ├── GoogleUtilities-prefix.pch │ │ │ ├── GoogleUtilities-umbrella.h │ │ │ ├── GoogleUtilities.modulemap │ │ │ └── GoogleUtilities.xcconfig │ │ ├── OptimizelySDKCore │ │ │ ├── OptimizelySDKCore-Info.plist │ │ │ ├── OptimizelySDKCore-dummy.m │ │ │ ├── OptimizelySDKCore-prefix.pch │ │ │ ├── OptimizelySDKCore-umbrella.h │ │ │ ├── OptimizelySDKCore.modulemap │ │ │ └── OptimizelySDKCore.xcconfig │ │ ├── OptimizelySDKDatafileManager │ │ │ ├── OptimizelySDKDatafileManager-Info.plist │ │ │ ├── OptimizelySDKDatafileManager-dummy.m │ │ │ ├── OptimizelySDKDatafileManager-prefix.pch │ │ │ ├── OptimizelySDKDatafileManager-umbrella.h │ │ │ ├── OptimizelySDKDatafileManager.modulemap │ │ │ └── OptimizelySDKDatafileManager.xcconfig │ │ ├── OptimizelySDKEventDispatcher │ │ │ ├── OptimizelySDKEventDispatcher-Info.plist │ │ │ ├── OptimizelySDKEventDispatcher-dummy.m │ │ │ ├── OptimizelySDKEventDispatcher-prefix.pch │ │ │ ├── OptimizelySDKEventDispatcher-umbrella.h │ │ │ ├── OptimizelySDKEventDispatcher.modulemap │ │ │ └── OptimizelySDKEventDispatcher.xcconfig │ │ ├── OptimizelySDKShared │ │ │ ├── OptimizelySDKShared-Info.plist │ │ │ ├── OptimizelySDKShared-dummy.m │ │ │ ├── OptimizelySDKShared-prefix.pch │ │ │ ├── OptimizelySDKShared-umbrella.h │ │ │ ├── OptimizelySDKShared.modulemap │ │ │ └── OptimizelySDKShared.xcconfig │ │ ├── OptimizelySDKUserProfileService │ │ │ ├── OptimizelySDKUserProfileService-Info.plist │ │ │ ├── OptimizelySDKUserProfileService-dummy.m │ │ │ ├── OptimizelySDKUserProfileService-prefix.pch │ │ │ ├── OptimizelySDKUserProfileService-umbrella.h │ │ │ ├── OptimizelySDKUserProfileService.modulemap │ │ │ └── OptimizelySDKUserProfileService.xcconfig │ │ ├── OptimizelySDKiOS │ │ │ ├── OptimizelySDKiOS-Info.plist │ │ │ ├── OptimizelySDKiOS-dummy.m │ │ │ ├── OptimizelySDKiOS-prefix.pch │ │ │ ├── OptimizelySDKiOS-umbrella.h │ │ │ ├── OptimizelySDKiOS.modulemap │ │ │ └── OptimizelySDKiOS.xcconfig │ │ ├── Pods-Reversi_Example │ │ │ ├── Pods-Reversi_Example-Info.plist │ │ │ ├── Pods-Reversi_Example-acknowledgements.markdown │ │ │ ├── Pods-Reversi_Example-acknowledgements.plist │ │ │ ├── Pods-Reversi_Example-dummy.m │ │ │ ├── Pods-Reversi_Example-frameworks.sh │ │ │ ├── Pods-Reversi_Example-umbrella.h │ │ │ ├── Pods-Reversi_Example.debug.xcconfig │ │ │ ├── Pods-Reversi_Example.modulemap │ │ │ └── Pods-Reversi_Example.release.xcconfig │ │ ├── Protobuf │ │ │ ├── Protobuf-Info.plist │ │ │ ├── Protobuf-dummy.m │ │ │ ├── Protobuf-prefix.pch │ │ │ ├── Protobuf-umbrella.h │ │ │ ├── Protobuf.modulemap │ │ │ └── Protobuf.xcconfig │ │ ├── Reversi │ │ │ ├── Reversi-Info.plist │ │ │ ├── Reversi-dummy.m │ │ │ ├── Reversi-prefix.pch │ │ │ ├── Reversi-umbrella.h │ │ │ ├── Reversi.modulemap │ │ │ └── Reversi.xcconfig │ │ └── nanopb │ │ │ ├── nanopb-Info.plist │ │ │ ├── nanopb-dummy.m │ │ │ ├── nanopb-prefix.pch │ │ │ ├── nanopb-umbrella.h │ │ │ ├── nanopb.modulemap │ │ │ └── nanopb.xcconfig │ └── nanopb │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── pb.h │ │ ├── pb_common.c │ │ ├── pb_common.h │ │ ├── pb_decode.c │ │ ├── pb_decode.h │ │ ├── pb_encode.c │ │ └── pb_encode.h ├── Reversi.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Reversi-Example.xcscheme ├── Reversi.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── Reversi │ ├── AppDelegate.swift │ ├── ApptimizeConfiguration.swift │ ├── ApptimizeMock.swift │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── FirebaseConfiguration.swift │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ ├── LocalConfig.json │ ├── LocalFileConfiguration.swift │ ├── OptimizelyConfiguration.swift │ └── ViewController.swift ├── LICENSE ├── Package.swift ├── README.md ├── Reversi.podspec ├── Sources └── Reversi │ ├── ReversiConfiguration.swift │ ├── ReversiService.swift │ ├── Variation.swift │ └── VariationCompatible.swift └── Tests ├── LinuxMain.swift └── ReversiTests ├── ReversiServiceTests.swift ├── VariationTests.swift └── XCTestManifests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/.travis.yml -------------------------------------------------------------------------------- /Classes/ReversiService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Classes/ReversiService.swift -------------------------------------------------------------------------------- /Classes/Variation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Classes/Variation.swift -------------------------------------------------------------------------------- /Classes/VariationCompatible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Classes/VariationCompatible.swift -------------------------------------------------------------------------------- /Docs/Apptimize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Docs/Apptimize.md -------------------------------------------------------------------------------- /Docs/Firebase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Docs/Firebase.md -------------------------------------------------------------------------------- /Docs/Optimizely.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Docs/Optimizely.md -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Firebase/CoreOnly/Sources/Firebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /Example/Pods/Firebase/CoreOnly/Sources/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Firebase/CoreOnly/Sources/module.modulemap -------------------------------------------------------------------------------- /Example/Pods/Firebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Firebase/README.md -------------------------------------------------------------------------------- /Example/Pods/FirebaseABTesting/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseABTesting/CHANGELOG -------------------------------------------------------------------------------- /Example/Pods/FirebaseABTesting/Frameworks/FirebaseABTesting.framework/FirebaseABTesting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseABTesting/Frameworks/FirebaseABTesting.framework/FirebaseABTesting -------------------------------------------------------------------------------- /Example/Pods/FirebaseABTesting/Frameworks/FirebaseABTesting.framework/Headers/FIRExperimentController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseABTesting/Frameworks/FirebaseABTesting.framework/Headers/FIRExperimentController.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseABTesting/Frameworks/FirebaseABTesting.framework/Headers/FIRLifecycleEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseABTesting/Frameworks/FirebaseABTesting.framework/Headers/FIRLifecycleEvents.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseABTesting/Frameworks/FirebaseABTesting.framework/Headers/FirebaseABTesting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseABTesting/Frameworks/FirebaseABTesting.framework/Headers/FirebaseABTesting.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseABTesting/Frameworks/FirebaseABTesting.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseABTesting/Frameworks/FirebaseABTesting.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Example/Pods/FirebaseABTesting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseABTesting/README.md -------------------------------------------------------------------------------- /Example/Pods/FirebaseAnalytics/Frameworks/FIRAnalyticsConnector.framework/FIRAnalyticsConnector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseAnalytics/Frameworks/FIRAnalyticsConnector.framework/FIRAnalyticsConnector -------------------------------------------------------------------------------- /Example/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/FirebaseAnalytics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/FirebaseAnalytics -------------------------------------------------------------------------------- /Example/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics+AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics+AppDelegate.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIREventNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIREventNames.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRParameterNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRParameterNames.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRUserPropertyNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRUserPropertyNames.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Example/Pods/FirebaseAnalytics/Frameworks/FirebaseCoreDiagnostics.framework/FirebaseCoreDiagnostics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseAnalytics/Frameworks/FirebaseCoreDiagnostics.framework/FirebaseCoreDiagnostics -------------------------------------------------------------------------------- /Example/Pods/FirebaseAnalytics/Frameworks/FirebaseCoreDiagnostics.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseAnalytics/Frameworks/FirebaseCoreDiagnostics.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/FIRAnalyticsConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/FIRAnalyticsConfiguration.m -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/FIRApp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/FIRApp.m -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/FIRAppAssociationRegistration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/FIRAppAssociationRegistration.m -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/FIRBundleUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/FIRBundleUtil.m -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/FIRComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/FIRComponent.m -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/FIRComponentContainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/FIRComponentContainer.m -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/FIRComponentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/FIRComponentType.m -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/FIRConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/FIRConfiguration.m -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/FIRDependency.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/FIRDependency.m -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/FIRErrors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/FIRErrors.m -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/FIRLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/FIRLogger.m -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/FIROptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/FIROptions.m -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/FIRVersion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/FIRVersion.m -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/Private/FIRAnalyticsConfiguration+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/Private/FIRAnalyticsConfiguration+Internal.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/Private/FIRAppAssociationRegistration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/Private/FIRAppAssociationRegistration.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/Private/FIRAppInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/Private/FIRAppInternal.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/Private/FIRBundleUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/Private/FIRBundleUtil.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/Private/FIRComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/Private/FIRComponent.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/Private/FIRComponentContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/Private/FIRComponentContainer.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/Private/FIRComponentContainerInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/Private/FIRComponentContainerInternal.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/Private/FIRComponentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/Private/FIRComponentType.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/Private/FIRDependency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/Private/FIRDependency.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/Private/FIRErrorCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/Private/FIRErrorCode.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/Private/FIRErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/Private/FIRErrors.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/Private/FIRLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/Private/FIRLibrary.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/Private/FIRLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/Private/FIRLogger.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/Private/FIROptionsInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/Private/FIROptionsInternal.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/Private/FIRVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/Private/FIRVersion.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/Public/FIRAnalyticsConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/Public/FIRAnalyticsConfiguration.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/Public/FIRApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/Public/FIRApp.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/Public/FIRConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/Public/FIRConfiguration.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/Public/FIRLoggerLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/Public/FIRLoggerLevel.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/Public/FIROptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/Public/FIROptions.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/Firebase/Core/Public/FirebaseCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/Firebase/Core/Public/FirebaseCore.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/LICENSE -------------------------------------------------------------------------------- /Example/Pods/FirebaseCore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseCore/README.md -------------------------------------------------------------------------------- /Example/Pods/FirebaseInstanceID/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseInstanceID/CHANGELOG.md -------------------------------------------------------------------------------- /Example/Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/FirebaseInstanceID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/FirebaseInstanceID -------------------------------------------------------------------------------- /Example/Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Headers/FIRInstanceID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Headers/FIRInstanceID.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Headers/FirebaseInstanceID.h: -------------------------------------------------------------------------------- 1 | #import "FIRInstanceID.h" 2 | -------------------------------------------------------------------------------- /Example/Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Example/Pods/FirebaseInstanceID/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseInstanceID/README.md -------------------------------------------------------------------------------- /Example/Pods/FirebaseRemoteConfig/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseRemoteConfig/CHANGELOG -------------------------------------------------------------------------------- /Example/Pods/FirebaseRemoteConfig/Frameworks/FirebaseRemoteConfig.framework/FirebaseRemoteConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseRemoteConfig/Frameworks/FirebaseRemoteConfig.framework/FirebaseRemoteConfig -------------------------------------------------------------------------------- /Example/Pods/FirebaseRemoteConfig/Frameworks/FirebaseRemoteConfig.framework/Headers/FIRRemoteConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseRemoteConfig/Frameworks/FirebaseRemoteConfig.framework/Headers/FIRRemoteConfig.h -------------------------------------------------------------------------------- /Example/Pods/FirebaseRemoteConfig/Frameworks/FirebaseRemoteConfig.framework/Headers/FirebaseRemoteConfig.h: -------------------------------------------------------------------------------- 1 | #import "FIRRemoteConfig.h" 2 | -------------------------------------------------------------------------------- /Example/Pods/FirebaseRemoteConfig/Frameworks/FirebaseRemoteConfig.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseRemoteConfig/Frameworks/FirebaseRemoteConfig.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Example/Pods/FirebaseRemoteConfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/FirebaseRemoteConfig/README.md -------------------------------------------------------------------------------- /Example/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.framework/GoogleAppMeasurement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.framework/GoogleAppMeasurement -------------------------------------------------------------------------------- /Example/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/Private/GULAppDelegateSwizzler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/Private/GULAppDelegateSwizzler.h -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/Common/GULLoggerCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/Common/GULLoggerCodes.h -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.h -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/Logger/GULLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/Logger/GULLogger.m -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/Logger/Private/GULLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/Logger/Private/GULLogger.h -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/Logger/Public/GULLoggerLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/Logger/Public/GULLoggerLevel.h -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/MethodSwizzler/GULSwizzler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/MethodSwizzler/GULSwizzler.m -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/MethodSwizzler/Private/GULOriginalIMPConvenienceMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/MethodSwizzler/Private/GULOriginalIMPConvenienceMacros.h -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/MethodSwizzler/Private/GULSwizzler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/MethodSwizzler/Private/GULSwizzler.h -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/NSData+zlib/GULNSData+zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/NSData+zlib/GULNSData+zlib.h -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/NSData+zlib/GULNSData+zlib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/NSData+zlib/GULNSData+zlib.m -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/Network/GULMutableDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/Network/GULMutableDictionary.m -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/Network/GULNetwork.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/Network/GULNetwork.m -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/Network/GULNetworkConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/Network/GULNetworkConstants.m -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/Network/GULNetworkURLSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/Network/GULNetworkURLSession.m -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/Network/Private/GULMutableDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/Network/Private/GULMutableDictionary.h -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/Network/Private/GULNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/Network/Private/GULNetwork.h -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/Network/Private/GULNetworkConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/Network/Private/GULNetworkConstants.h -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/Network/Private/GULNetworkLoggerProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/Network/Private/GULNetworkLoggerProtocol.h -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/Network/Private/GULNetworkMessageCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/Network/Private/GULNetworkMessageCode.h -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/Network/Private/GULNetworkURLSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/Network/Private/GULNetworkURLSession.h -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/Reachability/GULReachabilityChecker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/Reachability/GULReachabilityChecker.m -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/Reachability/Private/GULReachabilityChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/Reachability/Private/GULReachabilityChecker.h -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/Reachability/Private/GULReachabilityMessageCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/Reachability/Private/GULReachabilityMessageCode.h -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/UserDefaults/GULUserDefaults.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/UserDefaults/GULUserDefaults.m -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/GoogleUtilities/UserDefaults/Private/GULUserDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/GoogleUtilities/UserDefaults/Private/GULUserDefaults.h -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/LICENSE -------------------------------------------------------------------------------- /Example/Pods/GoogleUtilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/GoogleUtilities/README.md -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/Reversi.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Local Podspecs/Reversi.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/LICENSE -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/Frameworks/murmur/murmur3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/Frameworks/murmur/murmur3.c -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/Frameworks/murmur/murmur3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/Frameworks/murmur/murmur3.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModel.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModel.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModelClassProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModelClassProperty.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModelClassProperty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModelClassProperty.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModelError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModelError.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModelError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModelError.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModelLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModelLib.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModelTransformations/OPTLYJSONKeyMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModelTransformations/OPTLYJSONKeyMapper.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModelTransformations/OPTLYJSONKeyMapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModelTransformations/OPTLYJSONKeyMapper.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModelTransformations/OPTLYJSONValueTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModelTransformations/OPTLYJSONValueTransformer.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModelTransformations/OPTLYJSONValueTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OPTLYJSONModel/OPTLYJSONModel/OPTLYJSONModelTransformations/OPTLYJSONValueTransformer.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYAttribute.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYAttribute.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYAudience.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYAudience.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYAudience.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYAudience.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYBaseCondition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYBaseCondition.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYBaseCondition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYBaseCondition.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYBucketer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYBucketer.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYBucketer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYBucketer.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYBuilder.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYBuilder.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYCondition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYCondition.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYCondition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYCondition.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYControlAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYControlAttributes.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYControlAttributes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYControlAttributes.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYDatafileKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYDatafileKeys.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYDatafileKeys.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYDatafileKeys.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYDecisionEventTicket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYDecisionEventTicket.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYDecisionEventTicket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYDecisionEventTicket.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYDecisionService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYDecisionService.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYDecisionService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYDecisionService.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYErrorHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYErrorHandler.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYErrorHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYErrorHandler.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYErrorHandlerMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYErrorHandlerMessages.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYErrorHandlerMessages.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYErrorHandlerMessages.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEvent.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEvent.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventAudience.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventAudience.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventAudience.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventAudience.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventBuilder.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventBuilder.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventDecision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventDecision.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventDecision.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventDecision.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventDecisionTicket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventDecisionTicket.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventDecisionTicket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventDecisionTicket.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventDispatcherBasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventDispatcherBasic.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventDispatcherBasic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventDispatcherBasic.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventFeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventFeature.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventFeature.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventFeature.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventHeader.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventHeader.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventLayerState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventLayerState.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventLayerState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventLayerState.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventMetric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventMetric.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventMetric.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventMetric.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventParameterKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventParameterKeys.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventParameterKeys.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventParameterKeys.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventRelatedEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventRelatedEvent.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventRelatedEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventRelatedEvent.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventTagUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventTagUtil.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventTagUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventTagUtil.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventView.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYEventView.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYExperiment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYExperiment.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYExperiment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYExperiment.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYExperimentBucketMapEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYExperimentBucketMapEntity.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYExperimentBucketMapEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYExperimentBucketMapEntity.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYFeatureDecision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYFeatureDecision.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYFeatureDecision.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYFeatureDecision.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYFeatureFlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYFeatureFlag.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYFeatureFlag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYFeatureFlag.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYFeatureVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYFeatureVariable.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYFeatureVariable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYFeatureVariable.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYGroup.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYGroup.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYHTTPRequestManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYHTTPRequestManager.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYHTTPRequestManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYHTTPRequestManager.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYLog.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYLog.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYLogger.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYLogger.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYLoggerMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYLoggerMessages.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYLoggerMessages.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYLoggerMessages.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYNetworkService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYNetworkService.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYNetworkService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYNetworkService.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYNotificationCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYNotificationCenter.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYNotificationCenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYNotificationCenter.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYProjectConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYProjectConfig.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYProjectConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYProjectConfig.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYProjectConfigBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYProjectConfigBuilder.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYProjectConfigBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYProjectConfigBuilder.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYQueue.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYQueue.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYRollout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYRollout.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYRollout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYRollout.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYTrafficAllocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYTrafficAllocation.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYTrafficAllocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYTrafficAllocation.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYUserProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYUserProfile.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYUserProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYUserProfile.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYUserProfileServiceBasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYUserProfileServiceBasic.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYUserProfileServiceBasic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYUserProfileServiceBasic.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYVariable.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYVariable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYVariable.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYVariableUsage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYVariableUsage.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYVariableUsage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYVariableUsage.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYVariation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYVariation.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYVariation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYVariation.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYVariationVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYVariationVariable.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYVariationVariable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OPTLYVariationVariable.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/Optimizely.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/Optimizely.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/Optimizely.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/Optimizely.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore/OptimizelySDKCore.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKCore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKCore/README.md -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKDatafileManager/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKDatafileManager/LICENSE -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager/OPTLYDatafileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager/OPTLYDatafileManager.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager/OPTLYDatafileManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager/OPTLYDatafileManager.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager/OPTLYDatafileManagerBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager/OPTLYDatafileManagerBuilder.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager/OPTLYDatafileManagerBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager/OPTLYDatafileManagerBuilder.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKDatafileManager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKDatafileManager/README.md -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKEventDispatcher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKEventDispatcher/LICENSE -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher/OPTLYEventDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher/OPTLYEventDispatcher.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher/OPTLYEventDispatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher/OPTLYEventDispatcher.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher/OPTLYEventDispatcherBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher/OPTLYEventDispatcherBuilder.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher/OPTLYEventDispatcherBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher/OPTLYEventDispatcherBuilder.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKEventDispatcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKEventDispatcher/README.md -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/LICENSE -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OPTLYFMDB/src/optlyfmdb/OPTLYFMDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OPTLYFMDB/src/optlyfmdb/OPTLYFMDB.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OPTLYFMDB/src/optlyfmdb/OPTLYFMDBDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OPTLYFMDB/src/optlyfmdb/OPTLYFMDBDatabase.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OPTLYFMDB/src/optlyfmdb/OPTLYFMDBDatabase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OPTLYFMDB/src/optlyfmdb/OPTLYFMDBDatabase.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OPTLYFMDB/src/optlyfmdb/OPTLYFMDBDatabaseQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OPTLYFMDB/src/optlyfmdb/OPTLYFMDBDatabaseQueue.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OPTLYFMDB/src/optlyfmdb/OPTLYFMDBDatabaseQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OPTLYFMDB/src/optlyfmdb/OPTLYFMDBDatabaseQueue.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OPTLYFMDB/src/optlyfmdb/OPTLYFMDBResultSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OPTLYFMDB/src/optlyfmdb/OPTLYFMDBResultSet.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OPTLYFMDB/src/optlyfmdb/OPTLYFMDBResultSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OPTLYFMDB/src/optlyfmdb/OPTLYFMDBResultSet.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYClient.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYClient.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYClientBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYClientBuilder.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYClientBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYClientBuilder.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYDataStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYDataStore.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYDataStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYDataStore.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYDatabase.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYDatabase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYDatabase.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYDatabaseEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYDatabaseEntity.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYDatabaseEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYDatabaseEntity.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYDatafileConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYDatafileConfig.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYDatafileConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYDatafileConfig.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYDatafileManagerBasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYDatafileManagerBasic.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYDatafileManagerBasic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYDatafileManagerBasic.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYEventDataStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYEventDataStore.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYEventDataStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYEventDataStore.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYFileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYFileManager.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYFileManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYFileManager.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYManagerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYManagerBase.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYManagerBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYManagerBase.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYManagerBasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYManagerBasic.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYManagerBasic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYManagerBasic.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYManagerBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYManagerBuilder.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYManagerBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OPTLYManagerBuilder.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared/OptimizelySDKShared.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKShared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKShared/README.md -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKUserProfileService/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKUserProfileService/LICENSE -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService/OPTLYUserProfileService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService/OPTLYUserProfileService.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService/OPTLYUserProfileService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService/OPTLYUserProfileService.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService/OPTLYUserProfileServiceBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService/OPTLYUserProfileServiceBuilder.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService/OPTLYUserProfileServiceBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService/OPTLYUserProfileServiceBuilder.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKUserProfileService/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKUserProfileService/README.md -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKiOS/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKiOS/LICENSE -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKiOS/OptimizelySDKiOS/OptimizelySDKiOS/OPTLYManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKiOS/OptimizelySDKiOS/OptimizelySDKiOS/OPTLYManager.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKiOS/OptimizelySDKiOS/OptimizelySDKiOS/OPTLYManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKiOS/OptimizelySDKiOS/OptimizelySDKiOS/OPTLYManager.m -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKiOS/OptimizelySDKiOS/OptimizelySDKiOS/OptimizelySDKiOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKiOS/OptimizelySDKiOS/OptimizelySDKiOS/OptimizelySDKiOS.h -------------------------------------------------------------------------------- /Example/Pods/OptimizelySDKiOS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/OptimizelySDKiOS/README.md -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Reversi.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Reversi.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Protobuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/README.md -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBArray.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBArray.m -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBArray_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBArray_PackagePrivate.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBBootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBBootstrap.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBCodedInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBCodedInputStream.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBCodedInputStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBCodedInputStream.m -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBCodedInputStream_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBCodedInputStream_PackagePrivate.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBCodedOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBCodedOutputStream.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBCodedOutputStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBCodedOutputStream.m -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBCodedOutputStream_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBCodedOutputStream_PackagePrivate.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBDescriptor.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBDescriptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBDescriptor.m -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBDescriptor_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBDescriptor_PackagePrivate.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBDictionary.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBDictionary.m -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBDictionary_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBDictionary_PackagePrivate.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBExtensionInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBExtensionInternals.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBExtensionInternals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBExtensionInternals.m -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBExtensionRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBExtensionRegistry.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBExtensionRegistry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBExtensionRegistry.m -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBMessage.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBMessage.m -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBMessage_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBMessage_PackagePrivate.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBProtocolBuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBProtocolBuffers.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBProtocolBuffers_RuntimeSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBProtocolBuffers_RuntimeSupport.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBRootObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBRootObject.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBRootObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBRootObject.m -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBRootObject_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBRootObject_PackagePrivate.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBRuntimeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBRuntimeTypes.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBUnknownField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBUnknownField.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBUnknownField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBUnknownField.m -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBUnknownFieldSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBUnknownFieldSet.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBUnknownFieldSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBUnknownFieldSet.m -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBUnknownFieldSet_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBUnknownFieldSet_PackagePrivate.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBUnknownField_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBUnknownField_PackagePrivate.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBUtilities.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBUtilities.m -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBUtilities_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBUtilities_PackagePrivate.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBWellKnownTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBWellKnownTypes.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBWellKnownTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBWellKnownTypes.m -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBWireFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBWireFormat.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/GPBWireFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/GPBWireFormat.m -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/google/protobuf/Any.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/google/protobuf/Any.pbobjc.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/google/protobuf/Any.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/google/protobuf/Any.pbobjc.m -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/google/protobuf/Api.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/google/protobuf/Api.pbobjc.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/google/protobuf/Api.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/google/protobuf/Api.pbobjc.m -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/google/protobuf/Duration.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/google/protobuf/Duration.pbobjc.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/google/protobuf/Duration.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/google/protobuf/Duration.pbobjc.m -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/google/protobuf/Empty.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/google/protobuf/Empty.pbobjc.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/google/protobuf/Empty.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/google/protobuf/Empty.pbobjc.m -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/google/protobuf/FieldMask.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/google/protobuf/FieldMask.pbobjc.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/google/protobuf/FieldMask.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/google/protobuf/FieldMask.pbobjc.m -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/google/protobuf/SourceContext.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/google/protobuf/SourceContext.pbobjc.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/google/protobuf/SourceContext.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/google/protobuf/SourceContext.pbobjc.m -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/google/protobuf/Struct.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/google/protobuf/Struct.pbobjc.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/google/protobuf/Struct.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/google/protobuf/Struct.pbobjc.m -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/google/protobuf/Timestamp.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/google/protobuf/Timestamp.pbobjc.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/google/protobuf/Timestamp.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/google/protobuf/Timestamp.pbobjc.m -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/google/protobuf/Type.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/google/protobuf/Type.pbobjc.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/google/protobuf/Type.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/google/protobuf/Type.pbobjc.m -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/google/protobuf/Wrappers.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/google/protobuf/Wrappers.pbobjc.h -------------------------------------------------------------------------------- /Example/Pods/Protobuf/objectivec/google/protobuf/Wrappers.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Protobuf/objectivec/google/protobuf/Wrappers.pbobjc.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Firebase/Firebase.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/Firebase/Firebase.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FirebaseABTesting/FirebaseABTesting.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/FirebaseABTesting/FirebaseABTesting.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FirebaseCore/FirebaseCore-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/FirebaseCore/FirebaseCore-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FirebaseCore/FirebaseCore-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/FirebaseCore/FirebaseCore-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FirebaseCore/FirebaseCore-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/FirebaseCore/FirebaseCore-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FirebaseCore/FirebaseCore.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/FirebaseCore/FirebaseCore.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FirebaseCore/FirebaseCore.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/FirebaseCore/FirebaseCore.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FirebaseInstanceID/FirebaseInstanceID.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/FirebaseInstanceID/FirebaseInstanceID.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FirebaseRemoteConfig/FirebaseRemoteConfig.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/FirebaseRemoteConfig/FirebaseRemoteConfig.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GoogleUtilities/GoogleUtilities-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/GoogleUtilities/GoogleUtilities-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GoogleUtilities/GoogleUtilities-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/GoogleUtilities/GoogleUtilities-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GoogleUtilities/GoogleUtilities-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/GoogleUtilities/GoogleUtilities-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GoogleUtilities/GoogleUtilities.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/GoogleUtilities/GoogleUtilities.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GoogleUtilities/GoogleUtilities.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/GoogleUtilities/GoogleUtilities.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKCore/OptimizelySDKCore-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKCore/OptimizelySDKCore-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKCore/OptimizelySDKCore-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKCore/OptimizelySDKCore-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKCore/OptimizelySDKCore-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKCore/OptimizelySDKCore-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKCore/OptimizelySDKCore-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKCore/OptimizelySDKCore-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKCore/OptimizelySDKCore.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKCore/OptimizelySDKCore.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKCore/OptimizelySDKCore.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKCore/OptimizelySDKCore.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKDatafileManager/OptimizelySDKDatafileManager.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKShared/OptimizelySDKShared-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKShared/OptimizelySDKShared-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKShared/OptimizelySDKShared-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKShared/OptimizelySDKShared-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKShared/OptimizelySDKShared-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKShared/OptimizelySDKShared-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKShared/OptimizelySDKShared-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKShared/OptimizelySDKShared-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKShared/OptimizelySDKShared.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKShared/OptimizelySDKShared.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKShared/OptimizelySDKShared.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKShared/OptimizelySDKShared.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKUserProfileService/OptimizelySDKUserProfileService.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKiOS/OptimizelySDKiOS-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKiOS/OptimizelySDKiOS-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKiOS/OptimizelySDKiOS-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKiOS/OptimizelySDKiOS-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKiOS/OptimizelySDKiOS-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKiOS/OptimizelySDKiOS-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKiOS/OptimizelySDKiOS-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKiOS/OptimizelySDKiOS-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKiOS/OptimizelySDKiOS.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKiOS/OptimizelySDKiOS.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OptimizelySDKiOS/OptimizelySDKiOS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/OptimizelySDKiOS/OptimizelySDKiOS.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Reversi_Example/Pods-Reversi_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/Pods-Reversi_Example/Pods-Reversi_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Reversi_Example/Pods-Reversi_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/Pods-Reversi_Example/Pods-Reversi_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Reversi_Example/Pods-Reversi_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/Pods-Reversi_Example/Pods-Reversi_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Reversi_Example/Pods-Reversi_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/Pods-Reversi_Example/Pods-Reversi_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Reversi_Example/Pods-Reversi_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/Pods-Reversi_Example/Pods-Reversi_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Reversi_Example/Pods-Reversi_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/Pods-Reversi_Example/Pods-Reversi_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Reversi_Example/Pods-Reversi_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/Pods-Reversi_Example/Pods-Reversi_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Reversi_Example/Pods-Reversi_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/Pods-Reversi_Example/Pods-Reversi_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Reversi_Example/Pods-Reversi_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/Pods-Reversi_Example/Pods-Reversi_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Protobuf/Protobuf-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/Protobuf/Protobuf-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Protobuf/Protobuf-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/Protobuf/Protobuf-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Protobuf/Protobuf-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/Protobuf/Protobuf-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Protobuf/Protobuf-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/Protobuf/Protobuf-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Protobuf/Protobuf.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/Protobuf/Protobuf.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Protobuf/Protobuf.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/Protobuf/Protobuf.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Reversi/Reversi-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/Reversi/Reversi-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Reversi/Reversi-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/Reversi/Reversi-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Reversi/Reversi-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/Reversi/Reversi-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Reversi/Reversi-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/Reversi/Reversi-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Reversi/Reversi.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/Reversi/Reversi.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Reversi/Reversi.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/Reversi/Reversi.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/nanopb/nanopb-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/nanopb/nanopb-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/nanopb/nanopb-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/nanopb/nanopb-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/nanopb/nanopb-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/nanopb/nanopb-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/nanopb/nanopb-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/nanopb/nanopb-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/nanopb/nanopb.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/nanopb/nanopb.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/nanopb/nanopb.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/Target Support Files/nanopb/nanopb.xcconfig -------------------------------------------------------------------------------- /Example/Pods/nanopb/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/nanopb/LICENSE.txt -------------------------------------------------------------------------------- /Example/Pods/nanopb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/nanopb/README.md -------------------------------------------------------------------------------- /Example/Pods/nanopb/pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/nanopb/pb.h -------------------------------------------------------------------------------- /Example/Pods/nanopb/pb_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/nanopb/pb_common.c -------------------------------------------------------------------------------- /Example/Pods/nanopb/pb_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/nanopb/pb_common.h -------------------------------------------------------------------------------- /Example/Pods/nanopb/pb_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/nanopb/pb_decode.c -------------------------------------------------------------------------------- /Example/Pods/nanopb/pb_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/nanopb/pb_decode.h -------------------------------------------------------------------------------- /Example/Pods/nanopb/pb_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/nanopb/pb_encode.c -------------------------------------------------------------------------------- /Example/Pods/nanopb/pb_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Pods/nanopb/pb_encode.h -------------------------------------------------------------------------------- /Example/Reversi.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Reversi.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Reversi.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Reversi.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Reversi.xcodeproj/xcshareddata/xcschemes/Reversi-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Reversi.xcodeproj/xcshareddata/xcschemes/Reversi-Example.xcscheme -------------------------------------------------------------------------------- /Example/Reversi.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Reversi.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Reversi.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Reversi.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Reversi/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Reversi/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Reversi/ApptimizeConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Reversi/ApptimizeConfiguration.swift -------------------------------------------------------------------------------- /Example/Reversi/ApptimizeMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Reversi/ApptimizeMock.swift -------------------------------------------------------------------------------- /Example/Reversi/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Reversi/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/Reversi/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Reversi/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Reversi/FirebaseConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Reversi/FirebaseConfiguration.swift -------------------------------------------------------------------------------- /Example/Reversi/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Reversi/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Reversi/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Reversi/Info.plist -------------------------------------------------------------------------------- /Example/Reversi/LocalConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Reversi/LocalConfig.json -------------------------------------------------------------------------------- /Example/Reversi/LocalFileConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Reversi/LocalFileConfiguration.swift -------------------------------------------------------------------------------- /Example/Reversi/OptimizelyConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Reversi/OptimizelyConfiguration.swift -------------------------------------------------------------------------------- /Example/Reversi/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Example/Reversi/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/README.md -------------------------------------------------------------------------------- /Reversi.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Reversi.podspec -------------------------------------------------------------------------------- /Sources/Reversi/ReversiConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Sources/Reversi/ReversiConfiguration.swift -------------------------------------------------------------------------------- /Sources/Reversi/ReversiService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Sources/Reversi/ReversiService.swift -------------------------------------------------------------------------------- /Sources/Reversi/Variation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Sources/Reversi/Variation.swift -------------------------------------------------------------------------------- /Sources/Reversi/VariationCompatible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Sources/Reversi/VariationCompatible.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/ReversiTests/ReversiServiceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Tests/ReversiTests/ReversiServiceTests.swift -------------------------------------------------------------------------------- /Tests/ReversiTests/VariationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Tests/ReversiTests/VariationTests.swift -------------------------------------------------------------------------------- /Tests/ReversiTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popei69/reversi/HEAD/Tests/ReversiTests/XCTestManifests.swift --------------------------------------------------------------------------------