[
  {
    "path": ".gitignore",
    "content": "# OS X\n.DS_Store\n\n# Xcode\nbuild/\n*.pbxuser\n!default.pbxuser\n*.mode1v3\n!default.mode1v3\n*.mode2v3\n!default.mode2v3\n*.perspectivev3\n!default.perspectivev3\nxcuserdata/\n*.xccheckout\nprofile\n*.moved-aside\nDerivedData\n*.hmap\n*.ipa\n\n# Bundler\n.bundle\n\nCarthage\n# We recommend against adding the Pods directory to your .gitignore. However\n# you should judge for yourself, the pros and cons are mentioned at:\n# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control\n# \n# Note: if you ignore the Pods directory, make sure to uncomment\n# `pod install` in .travis.yml\n#\n!Pods/\nPods/*\n!Pods/Pods.xcodeproj/\nPodfile.lock\n"
  },
  {
    "path": ".swift-version",
    "content": "3.1\n"
  },
  {
    "path": ".travis.yml",
    "content": "# references:\n# * http://www.objc.io/issue-6/travis-ci.html\n# * https://github.com/supermarin/xcpretty#usage\n\nosx_image: xcode8.3\nlanguage: objective-c\n# cache: cocoapods\n# podfile: Example/Podfile\n# before_install:\n# - gem install cocoapods # Since Travis is not always on latest version\n# - pod install --project-directory=Example\nbefore_install: cd Example && pod install && cd -\ninstall:\n- gem install xcpretty --no-rdoc --no-ri --no-document --quiet\nscript:\n- set -o pipefail && xcodebuild test -workspace Example/PersistentStorageSerializable.xcworkspace -scheme PersistentStorageSerializable-Tests -sdk iphonesimulator10.0 -destination 'platform=iOS Simulator,name=iPhone SE,OS=10.0' ONLY_ACTIVE_ARCH=NO | xcpretty\n- pod lib lint\n"
  },
  {
    "path": "Cartfile",
    "content": "github \"Zewo/Reflection\" ~> 0.14\n"
  },
  {
    "path": "Cartfile.private",
    "content": "github \"jspahrsummers/xcconfigs\" \"2055f18\"\n"
  },
  {
    "path": "Cartfile.resolved",
    "content": "github \"Zewo/Reflection\" \"0.14.3\"\ngithub \"jspahrsummers/xcconfigs\" \"2055f18efbe18e77408f7f43947f7ad92b2d4ff0\"\n"
  },
  {
    "path": "Example/ExamplesOfUsage.playground/Contents.swift",
    "content": "//: # PersistentStorageSerializable library. \nimport UIKit\nimport PersistentStorageSerializable\n\n/*:\n ## Custom persistent storage\n \n Usually, we use `UserDefaultsStorage` class provided by the library to serialize type values with the system user defaults.\n \n We can define a custom persistent storage by adopting `PersistentStorage` protocol. Let's define a memory storage and use it instead `UserDefaultsStorage` for demonstration purposes.\n */\nfinal class MemoryStorage {\n    var dictionary = [String : Any]()\n}\n\nextension MemoryStorage: PersistentStorage {\n    func beginTransaction() throws {}\n    \n    func register(defaultValues: [String : Any]) {}\n    \n    func get(valueOf key: String) -> Any? {\n        return dictionary[key]\n    }\n    \n    func set(value: Any?, for key: String) throws {\n        dictionary[key] = value\n    }\n    \n    func finishTransaction() throws {}\n}\n\nlet memoryStorage = MemoryStorage()\n\n/*:\n ---\n \n ## Serializing a struct type\n \n Declare struct type for your user preferences and adopt `PersistentStorageSerializable` protocol.\n */\nstruct UserPreferences: PersistentStorageSerializable {\n    var myString = \"Hello\"\n    var myBool = false\n    \n    // MARK: Adopt PersistentStorageSerializable\n    var persistentStorage: PersistentStorage!\n    var persistentStorageKeyPrefix: String! = \"UserPreferences\"\n}\n\nmemoryStorage.dictionary\n\nvar preferences = try! UserPreferences(from: memoryStorage)\n\npreferences.myString = \"Greetings\"\npreferences.myBool = true\n\ntry! preferences.persist()\n\n//: Preferences values are persisted in storage.\nmemoryStorage.dictionary\n\n/*:\n ---\n\n ## Serializing a class type\n \n If we use classes as a data structure for settings then we can use a custom subclass to adopt serialization functionality.\n */\nclass Serializable: PersistentStorageSerializable {\n    var persistentStorage: PersistentStorage!\n    var persistentStorageKeyPrefix: String!\n    \n    required init() {}\n}\n\nclass AppSettings: Serializable {\n    var myUInt = UInt.max\n    var myDouble = 125.76\n    \n//: - We can use only plist types and collections of such types for properties. If we have to persist some other type we should convert it to plist one as shown below.\n    var _myColor = [Float](arrayLiteral: 0, 0, 0, 0)\n    var myColor: UIColor {\n        get {\n            return UIColor(colorLiteralRed: _myColor[0], green: _myColor[1], blue: _myColor[2], alpha: _myColor[3])\n        }\n        set {\n            var r: CGFloat = 0, g: CGFloat = 0, b: CGFloat = 0, a: CGFloat = 0\n            newValue.getRed(&r, green: &g, blue: &b, alpha: &a)\n            _myColor = [Float(r), Float(g), Float(b), Float(a)]\n        }\n    }\n    \n}\n\nvar settings = try! AppSettings(from: memoryStorage, keyPrefix: \"AppSettings\")\nsettings.myColor = UIColor.red\ntry! settings.persist()\n\n//: The memory storage contains values of both `preferences` and `settings` instances.\nmemoryStorage.dictionary\n\n/*:\n ---\n\n ## Reading data stored by the previous version of the app\n \n When you have some data persisted in user defaults by the previous version of the app and want `PersistentStorageSerializable` library to read that data into your structure you need to provide a mapping between properties names and User Defaults keys.\n\n Say we have our data persisted in storage.\n*/\nmemoryStorage.dictionary.removeAll()\nmemoryStorage.dictionary[\"oldGoogTitle\"] = \"Superhero\"\nmemoryStorage.dictionary[\"well.persisted.option\"] = true\nmemoryStorage.dictionary\n\n//: We want those to be serialized with the following class.\nfinal class ApplicationConfiguration: PersistentStorageSerializable {\n    var title = \"\"\n    var showIntro = false\n    \n    // MARK: Adopt PersistentStorageSerializable\n    var persistentStorage: PersistentStorage!\n    var persistentStorageKeyPrefix: String!\n}\n\n//: Provide key mapping by overloading `persistentStorageKey(for:)` function.\nextension ApplicationConfiguration {\n    func persistentStorageKey(for propertyName: String) -> String {\n        let keyMap = [\"title\" : \"oldGoogTitle\", \"showIntro\" : \"well.persisted.option\"]\n        return keyMap[propertyName]!\n    }\n}\n\n//: Now we can load data persisted in the storage.\nlet configuration = try! ApplicationConfiguration(from: memoryStorage, keyPrefix: \"\")\n\nconfiguration.title\nconfiguration.showIntro\n\n//: ### Same with a custom subclass\nclass SerializableWithKeyMap: PersistentStorageSerializable {\n    var persistentStorage: PersistentStorage!\n    var persistentStorageKeyPrefix: String!\n    \n    required init() {}\n    \n    var keyMap: [String : String]!\n    \n    func persistentStorageKey(for propertyName: String) -> String {\n        return keyMap[propertyName]!\n    }\n}\n\nclass ApplicationConfiguration2: SerializableWithKeyMap {\n    var title = \"\"\n    var showIntro = false\n    \n    required init() {\n        super.init()\n        keyMap = [\"title\" : \"oldGoogTitle\", \"showIntro\" : \"well.persisted.option\"]\n    }\n}\n\nlet configuration2 = try! ApplicationConfiguration2(from: memoryStorage, keyPrefix: \"\")\n\nconfiguration2.title\nconfiguration2.showIntro\n\n\n/*:\n \n ---\n*/\n"
  },
  {
    "path": "Example/ExamplesOfUsage.playground/contents.xcplayground",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<playground version='5.0' target-platform='ios' display-mode='rendered'>\n    <timeline fileName='timeline.xctimeline'/>\n</playground>"
  },
  {
    "path": "Example/ExamplesOfUsage.playground/timeline.xctimeline",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Timeline\n   version = \"3.0\">\n   <TimelineItems>\n      <LoggerValueHistoryTimelineItem\n         documentLocation = \"#CharacterRangeLen=24&amp;CharacterRangeLoc=2882&amp;EndingColumnNumber=25&amp;EndingLineNumber=99&amp;StartingColumnNumber=1&amp;StartingLineNumber=99&amp;Timestamp=513353327.344433\"\n         selectedRepresentationIndex = \"0\"\n         shouldTrackSuperviewWidth = \"NO\">\n      </LoggerValueHistoryTimelineItem>\n   </TimelineItems>\n</Timeline>\n"
  },
  {
    "path": "Example/PersistentStorageSerializable/AppDelegate.swift",
    "content": "//\n//  AppDelegate.swift\n//  PersistentStorageSerializable\n//\n//  Created by IvanRublev on 04/05/2017.\n//  Copyright (c) 2017 IvanRublev. All rights reserved.\n//\n\nimport UIKit\n\n@UIApplicationMain\nclass AppDelegate: UIResponder, UIApplicationDelegate {\n\n    var window: UIWindow?\n\n\n    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {\n        // Override point for customization after application launch.\n        return true\n    }\n\n    func applicationWillResignActive(_ application: UIApplication) {\n        // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.\n        // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.\n    }\n\n    func applicationDidEnterBackground(_ application: UIApplication) {\n        // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.\n        // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.\n    }\n\n    func applicationWillEnterForeground(_ application: UIApplication) {\n        // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.\n    }\n\n    func applicationDidBecomeActive(_ application: UIApplication) {\n        // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.\n    }\n\n    func applicationWillTerminate(_ application: UIApplication) {\n        // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.\n    }\n\n\n}\n\n"
  },
  {
    "path": "Example/PersistentStorageSerializable/Base.lproj/LaunchScreen.xib",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.XIB\" version=\"3.0\" toolsVersion=\"6214\" systemVersion=\"14A314h\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" launchScreen=\"YES\" useTraitCollections=\"YES\">\n    <dependencies>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"6207\"/>\n        <capability name=\"Constraints with non-1.0 multipliers\" minToolsVersion=\"5.1\"/>\n    </dependencies>\n    <objects>\n        <placeholder placeholderIdentifier=\"IBFilesOwner\" id=\"-1\" userLabel=\"File's Owner\"/>\n        <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"-2\" customClass=\"UIResponder\"/>\n        <view contentMode=\"scaleToFill\" id=\"iN0-l3-epB\">\n            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"480\" height=\"480\"/>\n            <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n            <subviews>\n                <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"  Copyright (c) 2015 CocoaPods. All rights reserved.\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" minimumFontSize=\"9\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"8ie-xW-0ye\">\n                    <rect key=\"frame\" x=\"20\" y=\"439\" width=\"441\" height=\"21\"/>\n                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"17\"/>\n                    <color key=\"textColor\" cocoaTouchSystemColor=\"darkTextColor\"/>\n                    <nil key=\"highlightedColor\"/>\n                </label>\n                <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"PersistentStorageSerializable\" textAlignment=\"center\" lineBreakMode=\"middleTruncation\" baselineAdjustment=\"alignBaselines\" minimumFontSize=\"18\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"kId-c2-rCX\">\n                    <rect key=\"frame\" x=\"20\" y=\"140\" width=\"441\" height=\"43\"/>\n                    <fontDescription key=\"fontDescription\" type=\"boldSystem\" pointSize=\"36\"/>\n                    <color key=\"textColor\" cocoaTouchSystemColor=\"darkTextColor\"/>\n                    <nil key=\"highlightedColor\"/>\n                </label>\n            </subviews>\n            <color key=\"backgroundColor\" white=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"calibratedWhite\"/>\n            <constraints>\n                <constraint firstItem=\"kId-c2-rCX\" firstAttribute=\"centerY\" secondItem=\"iN0-l3-epB\" secondAttribute=\"bottom\" multiplier=\"1/3\" constant=\"1\" id=\"5cJ-9S-tgC\"/>\n                <constraint firstAttribute=\"centerX\" secondItem=\"kId-c2-rCX\" secondAttribute=\"centerX\" id=\"Koa-jz-hwk\"/>\n                <constraint firstAttribute=\"bottom\" secondItem=\"8ie-xW-0ye\" secondAttribute=\"bottom\" constant=\"20\" id=\"Kzo-t9-V3l\"/>\n                <constraint firstItem=\"8ie-xW-0ye\" firstAttribute=\"leading\" secondItem=\"iN0-l3-epB\" secondAttribute=\"leading\" constant=\"20\" symbolic=\"YES\" id=\"MfP-vx-nX0\"/>\n                <constraint firstAttribute=\"centerX\" secondItem=\"8ie-xW-0ye\" secondAttribute=\"centerX\" id=\"ZEH-qu-HZ9\"/>\n                <constraint firstItem=\"kId-c2-rCX\" firstAttribute=\"leading\" secondItem=\"iN0-l3-epB\" secondAttribute=\"leading\" constant=\"20\" symbolic=\"YES\" id=\"fvb-Df-36g\"/>\n            </constraints>\n            <nil key=\"simulatedStatusBarMetrics\"/>\n            <freeformSimulatedSizeMetrics key=\"simulatedDestinationMetrics\"/>\n            <point key=\"canvasLocation\" x=\"548\" y=\"455\"/>\n        </view>\n    </objects>\n</document>\n"
  },
  {
    "path": "Example/PersistentStorageSerializable/Base.lproj/Main.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"12118\" systemVersion=\"16E195\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" useTraitCollections=\"YES\" colorMatched=\"YES\" initialViewController=\"vXZ-lx-hvc\">\n    <device id=\"retina4_0\" orientation=\"portrait\">\n        <adaptation id=\"fullscreen\"/>\n    </device>\n    <dependencies>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"12086\"/>\n        <capability name=\"Constraints to layout margins\" minToolsVersion=\"6.0\"/>\n        <capability name=\"documents saved in the Xcode 8 format\" minToolsVersion=\"8.0\"/>\n    </dependencies>\n    <scenes>\n        <!--View Controller-->\n        <scene sceneID=\"ufC-wZ-h7g\">\n            <objects>\n                <viewController id=\"vXZ-lx-hvc\" customClass=\"ViewController\" customModule=\"PersistentStorageSerializable_Example\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <layoutGuides>\n                        <viewControllerLayoutGuide type=\"top\" id=\"jyV-Pf-zRb\"/>\n                        <viewControllerLayoutGuide type=\"bottom\" id=\"2fi-mo-0CV\"/>\n                    </layoutGuides>\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"kh9-bI-dsS\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"320\" height=\"568\"/>\n                        <autoresizingMask key=\"autoresizingMask\" flexibleMaxX=\"YES\" flexibleMaxY=\"YES\"/>\n                        <subviews>\n                            <stackView opaque=\"NO\" contentMode=\"scaleToFill\" axis=\"vertical\" spacing=\"20\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Q9z-79-WYI\">\n                                <rect key=\"frame\" x=\"16\" y=\"40\" width=\"288\" height=\"518\"/>\n                                <subviews>\n                                    <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"Settings instance\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"F6x-5X-JXM\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"288\" height=\"20.5\"/>\n                                        <fontDescription key=\"fontDescription\" style=\"UICTFontTextStyleHeadline\"/>\n                                        <nil key=\"textColor\"/>\n                                        <nil key=\"highlightedColor\"/>\n                                    </label>\n                                    <stackView opaque=\"NO\" contentMode=\"scaleToFill\" alignment=\"center\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"wf5-AT-vTG\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"40.5\" width=\"288\" height=\"31\"/>\n                                        <subviews>\n                                            <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"Value\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"rxc-BF-p3h\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"6\" width=\"239\" height=\"19.5\"/>\n                                                <fontDescription key=\"fontDescription\" style=\"UICTFontTextStyleCallout\"/>\n                                                <nil key=\"highlightedColor\"/>\n                                            </label>\n                                            <switch opaque=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"750\" verticalHuggingPriority=\"750\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" on=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"2Zc-2r-WXA\">\n                                                <rect key=\"frame\" x=\"239\" y=\"0.0\" width=\"51\" height=\"31\"/>\n                                                <connections>\n                                                    <action selector=\"updateSettings:\" destination=\"vXZ-lx-hvc\" eventType=\"valueChanged\" id=\"BMF-WX-glS\"/>\n                                                </connections>\n                                            </switch>\n                                        </subviews>\n                                    </stackView>\n                                    <stackView opaque=\"NO\" contentMode=\"scaleToFill\" alignment=\"center\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"ti9-MD-xMT\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"91.5\" width=\"288\" height=\"30\"/>\n                                        <subviews>\n                                            <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"Title\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"ZOy-d3-Qxb\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"5.5\" width=\"138\" height=\"19.5\"/>\n                                                <fontDescription key=\"fontDescription\" style=\"UICTFontTextStyleCallout\"/>\n                                                <nil key=\"highlightedColor\"/>\n                                            </label>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"mr9-G7-WFn\">\n                                                <rect key=\"frame\" x=\"138\" y=\"0.0\" width=\"150\" height=\"30\"/>\n                                                <constraints>\n                                                    <constraint firstAttribute=\"width\" constant=\"150\" id=\"BSj-ib-lry\"/>\n                                                </constraints>\n                                                <fontDescription key=\"fontDescription\" style=\"UICTFontTextStyleBody\"/>\n                                                <textInputTraits key=\"textInputTraits\" returnKeyType=\"done\"/>\n                                                <connections>\n                                                    <action selector=\"donePressed:\" destination=\"vXZ-lx-hvc\" eventType=\"primaryActionTriggered\" id=\"t3C-eB-faN\"/>\n                                                    <action selector=\"updateSettings:\" destination=\"vXZ-lx-hvc\" eventType=\"editingChanged\" id=\"OlA-1B-NR6\"/>\n                                                </connections>\n                                            </textField>\n                                        </subviews>\n                                    </stackView>\n                                    <stackView opaque=\"NO\" contentMode=\"scaleToFill\" alignment=\"center\" spacing=\"10\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"9dT-ro-hat\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"141.5\" width=\"288\" height=\"29\"/>\n                                        <subviews>\n                                            <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"252\" verticalHuggingPriority=\"251\" horizontalCompressionResistancePriority=\"749\" text=\"Number\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"gWg-Sf-0Lv\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"5\" width=\"58.5\" height=\"19.5\"/>\n                                                <fontDescription key=\"fontDescription\" style=\"UICTFontTextStyleCallout\"/>\n                                                <nil key=\"highlightedColor\"/>\n                                            </label>\n                                            <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"0\" textAlignment=\"right\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"1kQ-kd-Exp\">\n                                                <rect key=\"frame\" x=\"68.5\" y=\"4.5\" width=\"115.5\" height=\"20.5\"/>\n                                                <fontDescription key=\"fontDescription\" style=\"UICTFontTextStyleBody\"/>\n                                                <nil key=\"textColor\"/>\n                                                <nil key=\"highlightedColor\"/>\n                                            </label>\n                                            <stepper opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"750\" verticalHuggingPriority=\"750\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" wraps=\"YES\" maximumValue=\"100\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"ozo-a0-QZK\">\n                                                <rect key=\"frame\" x=\"194\" y=\"0.0\" width=\"94\" height=\"29\"/>\n                                                <connections>\n                                                    <action selector=\"updateSettings:\" destination=\"vXZ-lx-hvc\" eventType=\"valueChanged\" id=\"wH2-Tz-VBR\"/>\n                                                </connections>\n                                            </stepper>\n                                        </subviews>\n                                    </stackView>\n                                    <stackView opaque=\"NO\" contentMode=\"scaleToFill\" distribution=\"fillEqually\" spacing=\"20\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"tnY-bp-Q3l\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"190.5\" width=\"288\" height=\"39\"/>\n                                        <subviews>\n                                            <button opaque=\"NO\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" buttonType=\"roundedRect\" lineBreakMode=\"middleTruncation\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Skt-fi-IcQ\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"82.5\" height=\"39\"/>\n                                                <fontDescription key=\"fontDescription\" style=\"UICTFontTextStyleTitle2\"/>\n                                                <state key=\"normal\" title=\"Save\"/>\n                                                <connections>\n                                                    <action selector=\"save:\" destination=\"vXZ-lx-hvc\" eventType=\"touchUpInside\" id=\"aFt-JW-oeR\"/>\n                                                </connections>\n                                            </button>\n                                            <button opaque=\"NO\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" buttonType=\"roundedRect\" lineBreakMode=\"middleTruncation\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Xrr-Sj-XGi\">\n                                                <rect key=\"frame\" x=\"102.5\" y=\"0.0\" width=\"83\" height=\"39\"/>\n                                                <fontDescription key=\"fontDescription\" style=\"UICTFontTextStyleTitle2\"/>\n                                                <state key=\"normal\" title=\"Load\"/>\n                                                <connections>\n                                                    <action selector=\"load:\" destination=\"vXZ-lx-hvc\" eventType=\"touchUpInside\" id=\"C0D-xl-4GJ\"/>\n                                                </connections>\n                                            </button>\n                                            <button opaque=\"NO\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" buttonType=\"roundedRect\" lineBreakMode=\"middleTruncation\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"tQz-Cg-Hd9\">\n                                                <rect key=\"frame\" x=\"205.5\" y=\"0.0\" width=\"82.5\" height=\"39\"/>\n                                                <fontDescription key=\"fontDescription\" style=\"UICTFontTextStyleTitle2\"/>\n                                                <state key=\"normal\" title=\"Reset\"/>\n                                                <connections>\n                                                    <action selector=\"reset:\" destination=\"vXZ-lx-hvc\" eventType=\"touchUpInside\" id=\"Vyz-et-dVB\"/>\n                                                </connections>\n                                            </button>\n                                        </subviews>\n                                    </stackView>\n                                    <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"User Defaults representation:\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"k09-sA-uyX\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"249.5\" width=\"288\" height=\"20.5\"/>\n                                        <fontDescription key=\"fontDescription\" style=\"UICTFontTextStyleHeadline\"/>\n                                        <nil key=\"textColor\"/>\n                                        <nil key=\"highlightedColor\"/>\n                                    </label>\n                                    <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" verticalCompressionResistancePriority=\"749\" text=\"\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" minimumScaleFactor=\"0.5\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"mhg-dF-s98\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"290\" width=\"288\" height=\"228\"/>\n                                        <color key=\"backgroundColor\" red=\"0.97688749182394885\" green=\"0.97830893708835531\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"15\"/>\n                                        <nil key=\"textColor\"/>\n                                        <nil key=\"highlightedColor\"/>\n                                    </label>\n                                </subviews>\n                            </stackView>\n                        </subviews>\n                        <color key=\"backgroundColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                        <constraints>\n                            <constraint firstAttribute=\"trailingMargin\" secondItem=\"Q9z-79-WYI\" secondAttribute=\"trailing\" id=\"Mb0-Ow-0VP\"/>\n                            <constraint firstItem=\"Q9z-79-WYI\" firstAttribute=\"leading\" secondItem=\"kh9-bI-dsS\" secondAttribute=\"leadingMargin\" id=\"Ng5-3W-pHe\"/>\n                            <constraint firstAttribute=\"bottomMargin\" relation=\"greaterThanOrEqual\" secondItem=\"mhg-dF-s98\" secondAttribute=\"bottom\" priority=\"999\" constant=\"10\" id=\"Rvp-tp-5YH\"/>\n                            <constraint firstItem=\"Q9z-79-WYI\" firstAttribute=\"top\" secondItem=\"jyV-Pf-zRb\" secondAttribute=\"bottom\" constant=\"20\" id=\"Y99-FW-ZrE\"/>\n                        </constraints>\n                    </view>\n                    <connections>\n                        <outlet property=\"flagSwitch\" destination=\"2Zc-2r-WXA\" id=\"Ns5-bl-lXB\"/>\n                        <outlet property=\"numberLabel\" destination=\"1kQ-kd-Exp\" id=\"qB0-Ns-4qc\"/>\n                        <outlet property=\"numberStepper\" destination=\"ozo-a0-QZK\" id=\"rI5-Ss-AwI\"/>\n                        <outlet property=\"textField\" destination=\"mr9-G7-WFn\" id=\"xNJ-9E-8pM\"/>\n                        <outlet property=\"userDefaultsLabel\" destination=\"mhg-dF-s98\" id=\"Vqp-63-8lY\"/>\n                    </connections>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"x5A-6p-PRh\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"24.375\" y=\"34.859154929577464\"/>\n        </scene>\n    </scenes>\n</document>\n"
  },
  {
    "path": "Example/PersistentStorageSerializable/Images.xcassets/AppIcon.appiconset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"29x29\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"29x29\",\n      \"scale\" : \"3x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"40x40\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"40x40\",\n      \"scale\" : \"3x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"60x60\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"60x60\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}\n"
  },
  {
    "path": "Example/PersistentStorageSerializable/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>en</string>\n\t<key>CFBundleExecutable</key>\n\t<string>$(EXECUTABLE_NAME)</string>\n\t<key>CFBundleIdentifier</key>\n\t<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundleName</key>\n\t<string>$(PRODUCT_NAME)</string>\n\t<key>CFBundlePackageType</key>\n\t<string>APPL</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>1.0</string>\n\t<key>CFBundleSignature</key>\n\t<string>????</string>\n\t<key>CFBundleVersion</key>\n\t<string>1</string>\n\t<key>LSRequiresIPhoneOS</key>\n\t<true/>\n\t<key>UILaunchStoryboardName</key>\n\t<string>LaunchScreen</string>\n\t<key>UIMainStoryboardFile</key>\n\t<string>Main</string>\n\t<key>UIRequiredDeviceCapabilities</key>\n\t<array>\n\t\t<string>armv7</string>\n\t</array>\n\t<key>UISupportedInterfaceOrientations</key>\n\t<array>\n\t\t<string>UIInterfaceOrientationPortrait</string>\n\t</array>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/PersistentStorageSerializable/Settings.swift",
    "content": "//\n//  Settings.swift\n//  PersistentStorageSerializable\n//\n//  Created by Ivan Rublev on 4/5/17.\n//  Copyright © 2017 CocoaPods. All rights reserved.\n//\n\nimport Foundation\nimport PersistentStorageSerializable\n\nstruct Settings: PersistentStorageSerializable {\n    var flag = false\n    var title = \"\"\n    var number = 1\n    \n    // MARK: Adopt PersistentStorageSerializable\n    var persistentStorage: PersistentStorage!\n    var persistentStorageKeyPrefix: String!\n}\n"
  },
  {
    "path": "Example/PersistentStorageSerializable/ViewController.swift",
    "content": "//\n//  ViewController.swift\n//  PersistentStorageSerializable\n//\n//  Created by IvanRublev on 04/05/2017.\n//  Copyright (c) 2017 IvanRublev. All rights reserved.\n//\n\nimport UIKit\nimport PersistentStorageSerializable\n\nclass ViewController: UIViewController {\n    @IBOutlet var flagSwitch: UISwitch!\n    @IBOutlet var textField: UITextField!\n    @IBOutlet var numberStepper: UIStepper!\n    @IBOutlet var numberLabel: UILabel!\n    @IBOutlet var userDefaultsLabel: UILabel!\n    \n    var settings: Settings!\n\n    override func viewDidLoad() {\n        super.viewDidLoad()\n        load(0)\n    }\n\n    func updateViews() {\n        flagSwitch.isOn = settings.flag\n        textField.text = settings.title\n        numberStepper.value = Double(settings.number)\n        numberLabel.text = String(Int(numberStepper.value))\n        userDefaultsLabel.text = try! String(describing: settings.persistedDictionaryRepresentation())\n    }\n}\n\n// MARK: - Input controls actions\nextension ViewController {\n    @IBAction func updateSettings(_ sender: Any) {\n        settings.flag = flagSwitch.isOn\n        settings.title = textField.text ?? \"\"\n        settings.number = Int(numberStepper.value)\n        updateViews()\n    }\n    \n    @IBAction func donePressed(_ sender: Any) {\n        textField.resignFirstResponder()\n    }\n}\n\n// MARK: - Buttons actions\nextension ViewController {\n    @IBAction func load(_ sender: Any) {\n        settings = try! Settings(from: UserDefaultsStorage.standard, keyPrefix: \"Settings\")\n        updateViews()\n    }\n    \n    @IBAction func save(_ sender: Any) {\n        try! settings.persist()\n        updateViews()\n    }\n    \n    @IBAction func reset(_ sender: Any) {\n        try! settings.removeFromPersistentStorage()\n        updateViews()\n    }\n}\n"
  },
  {
    "path": "Example/PersistentStorageSerializable.xcodeproj/project.pbxproj",
    "content": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 46;\n\tobjects = {\n\n/* Begin PBXBuildFile section */\n\t\t607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; };\n\t\t607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; };\n\t\t607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; };\n\t\t607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; };\n\t\t607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; };\n\t\t607FACEC1AFB9204008FA782 /* PersistentStorageSerializableTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* PersistentStorageSerializableTests.swift */; };\n\t\t80E924A82C6F4D136EF6DAFB /* Pods_PersistentStorageSerializable_iOSExample.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 095426B6186FB283A8442B6E /* Pods_PersistentStorageSerializable_iOSExample.framework */; };\n\t\t98D5D52F222783CA20C2F8FD /* Pods_PersistentStorageSerializable_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C6F0D1E550D38F1ACE0CFCF6 /* Pods_PersistentStorageSerializable_Tests.framework */; };\n\t\tAB2E65E91E97E506009A8531 /* Car.plist in Resources */ = {isa = PBXBuildFile; fileRef = AB2E65E81E97E506009A8531 /* Car.plist */; };\n\t\tAB6AC3AF1E950D5300F735CB /* PersistentStorageMock.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB6AC3AD1E950C5E00F735CB /* PersistentStorageMock.swift */; };\n\t\tAB6AC3B61E95513E00F735CB /* Settings.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB6AC3B51E95513E00F735CB /* Settings.swift */; };\n\t\tAB6AC3C01E9680AE00F735CB /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB6AC3BF1E9680AE00F735CB /* AppDelegate.swift */; };\n\t\tAB6AC3C21E9680AE00F735CB /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB6AC3C11E9680AE00F735CB /* ViewController.swift */; };\n\t\tAB6AC3C41E9680AE00F735CB /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = AB6AC3C31E9680AE00F735CB /* Assets.xcassets */; };\n\t\tAB6AC3C71E9680AE00F735CB /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = AB6AC3C51E9680AE00F735CB /* Main.storyboard */; };\n\t\tAB6AC3CD1E96819C00F735CB /* AppSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB6AC3CC1E96819C00F735CB /* AppSettings.swift */; };\n\t\tAB76415C1E97CD57007279BE /* SupportedSerializableTypeTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB76415A1E97CD54007279BE /* SupportedSerializableTypeTests.swift */; };\n\t\tB057D67654FF5F791A3E93A6 /* Pods_PersistentStorageSerializable_MacExample.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B107F7FEBC35A8A1C3631674 /* Pods_PersistentStorageSerializable_MacExample.framework */; };\n/* End PBXBuildFile section */\n\n/* Begin PBXFileReference section */\n\t\t095426B6186FB283A8442B6E /* Pods_PersistentStorageSerializable_iOSExample.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_PersistentStorageSerializable_iOSExample.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t1430E68C73DA958AEE435B2B /* Pods-PersistentStorageSerializable_iOSExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"Pods-PersistentStorageSerializable_iOSExample.debug.xcconfig\"; path = \"Pods/Target Support Files/Pods-PersistentStorageSerializable_iOSExample/Pods-PersistentStorageSerializable_iOSExample.debug.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t2588AA89C5187E3CEA89DD6E /* Pods-PersistentStorageSerializable_iOSExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"Pods-PersistentStorageSerializable_iOSExample.release.xcconfig\"; path = \"Pods/Target Support Files/Pods-PersistentStorageSerializable_iOSExample/Pods-PersistentStorageSerializable_iOSExample.release.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t410ED040FF5FC9E233E71DA9 /* Pods-PersistentStorageSerializable_MacExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"Pods-PersistentStorageSerializable_MacExample.debug.xcconfig\"; path = \"Pods/Target Support Files/Pods-PersistentStorageSerializable_MacExample/Pods-PersistentStorageSerializable_MacExample.debug.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t607FACD01AFB9204008FA782 /* PersistentStorageSerializable_iOSExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = PersistentStorageSerializable_iOSExample.app; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\t607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = \"<group>\"; };\n\t\t607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = \"<group>\"; };\n\t\t607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = \"<group>\"; };\n\t\t607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = \"<group>\"; };\n\t\t607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = \"<group>\"; };\n\t\t607FACE51AFB9204008FA782 /* PersistentStorageSerializable_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = PersistentStorageSerializable_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\t607FACEB1AFB9204008FA782 /* PersistentStorageSerializableTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PersistentStorageSerializableTests.swift; sourceTree = \"<group>\"; };\n\t\t6C1240DEA24D615B61502A9B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = \"<group>\"; };\n\t\t77A4C7A9C48761BFB96E9009 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = \"<group>\"; };\n\t\tAB2E65E81E97E506009A8531 /* Car.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Car.plist; sourceTree = \"<group>\"; };\n\t\tAB2E65EA1E98C6E2009A8531 /* ExamplesOfUsage.playground */ = {isa = PBXFileReference; lastKnownFileType = file.playground; path = ExamplesOfUsage.playground; sourceTree = \"<group>\"; };\n\t\tAB6AC3AD1E950C5E00F735CB /* PersistentStorageMock.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PersistentStorageMock.swift; sourceTree = \"<group>\"; };\n\t\tAB6AC3B51E95513E00F735CB /* Settings.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Settings.swift; sourceTree = \"<group>\"; };\n\t\tAB6AC3BD1E9680AE00F735CB /* PersistentStorageSerializable_MacExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = PersistentStorageSerializable_MacExample.app; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tAB6AC3BF1E9680AE00F735CB /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = \"<group>\"; };\n\t\tAB6AC3C11E9680AE00F735CB /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = \"<group>\"; };\n\t\tAB6AC3C31E9680AE00F735CB /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = \"<group>\"; };\n\t\tAB6AC3C61E9680AE00F735CB /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = \"<group>\"; };\n\t\tAB6AC3C81E9680AE00F735CB /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\tAB6AC3CC1E96819C00F735CB /* AppSettings.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppSettings.swift; sourceTree = \"<group>\"; };\n\t\tAB76415A1E97CD54007279BE /* SupportedSerializableTypeTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SupportedSerializableTypeTests.swift; sourceTree = \"<group>\"; };\n\t\tB107F7FEBC35A8A1C3631674 /* Pods_PersistentStorageSerializable_MacExample.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_PersistentStorageSerializable_MacExample.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tC6F0D1E550D38F1ACE0CFCF6 /* Pods_PersistentStorageSerializable_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_PersistentStorageSerializable_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tD0F7B87E59D17DF5674E4175 /* Pods-PersistentStorageSerializable_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"Pods-PersistentStorageSerializable_Tests.release.xcconfig\"; path = \"Pods/Target Support Files/Pods-PersistentStorageSerializable_Tests/Pods-PersistentStorageSerializable_Tests.release.xcconfig\"; sourceTree = \"<group>\"; };\n\t\tD61EE2F47F5FCAFA282DF7DD /* Pods-PersistentStorageSerializable_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"Pods-PersistentStorageSerializable_Tests.debug.xcconfig\"; path = \"Pods/Target Support Files/Pods-PersistentStorageSerializable_Tests/Pods-PersistentStorageSerializable_Tests.debug.xcconfig\"; sourceTree = \"<group>\"; };\n\t\tDDAF776488859913631134E6 /* PersistentStorageSerializable.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = PersistentStorageSerializable.podspec; path = ../PersistentStorageSerializable.podspec; sourceTree = \"<group>\"; };\n\t\tE1CCB00B943B4FE159A27022 /* Pods-PersistentStorageSerializable_MacExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"Pods-PersistentStorageSerializable_MacExample.release.xcconfig\"; path = \"Pods/Target Support Files/Pods-PersistentStorageSerializable_MacExample/Pods-PersistentStorageSerializable_MacExample.release.xcconfig\"; sourceTree = \"<group>\"; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\t607FACCD1AFB9204008FA782 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t80E924A82C6F4D136EF6DAFB /* Pods_PersistentStorageSerializable_iOSExample.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t607FACE21AFB9204008FA782 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t98D5D52F222783CA20C2F8FD /* Pods_PersistentStorageSerializable_Tests.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tAB6AC3BA1E9680AE00F735CB /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tB057D67654FF5F791A3E93A6 /* Pods_PersistentStorageSerializable_MacExample.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXFrameworksBuildPhase section */\n\n/* Begin PBXGroup section */\n\t\t607FACC71AFB9204008FA782 = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tAB2E65EA1E98C6E2009A8531 /* ExamplesOfUsage.playground */,\n\t\t\t\t607FACF51AFB993E008FA782 /* Podspec Metadata */,\n\t\t\t\t607FACD21AFB9204008FA782 /* iOS Example for PersistentStorageSerializable */,\n\t\t\t\tAB6AC3BE1E9680AE00F735CB /* macOS Example for PersistentStorageSerializable */,\n\t\t\t\t607FACE81AFB9204008FA782 /* Tests */,\n\t\t\t\t607FACD11AFB9204008FA782 /* Products */,\n\t\t\t\tD03860B7B98A1F763B5BB4CC /* Pods */,\n\t\t\t\t9A2B6143D980D7AC4AA0886D /* Frameworks */,\n\t\t\t);\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t607FACD11AFB9204008FA782 /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t607FACD01AFB9204008FA782 /* PersistentStorageSerializable_iOSExample.app */,\n\t\t\t\t607FACE51AFB9204008FA782 /* PersistentStorageSerializable_Tests.xctest */,\n\t\t\t\tAB6AC3BD1E9680AE00F735CB /* PersistentStorageSerializable_MacExample.app */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t607FACD21AFB9204008FA782 /* iOS Example for PersistentStorageSerializable */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t607FACD51AFB9204008FA782 /* AppDelegate.swift */,\n\t\t\t\t607FACD71AFB9204008FA782 /* ViewController.swift */,\n\t\t\t\tAB6AC3B51E95513E00F735CB /* Settings.swift */,\n\t\t\t\t607FACD91AFB9204008FA782 /* Main.storyboard */,\n\t\t\t\t607FACDC1AFB9204008FA782 /* Images.xcassets */,\n\t\t\t\t607FACDE1AFB9204008FA782 /* LaunchScreen.xib */,\n\t\t\t\t607FACD31AFB9204008FA782 /* Supporting Files */,\n\t\t\t);\n\t\t\tname = \"iOS Example for PersistentStorageSerializable\";\n\t\t\tpath = PersistentStorageSerializable;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t607FACD31AFB9204008FA782 /* Supporting Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t607FACD41AFB9204008FA782 /* Info.plist */,\n\t\t\t);\n\t\t\tname = \"Supporting Files\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t607FACE81AFB9204008FA782 /* Tests */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t607FACEB1AFB9204008FA782 /* PersistentStorageSerializableTests.swift */,\n\t\t\t\tAB76415A1E97CD54007279BE /* SupportedSerializableTypeTests.swift */,\n\t\t\t\tAB6AC3AD1E950C5E00F735CB /* PersistentStorageMock.swift */,\n\t\t\t\tAB2E65E81E97E506009A8531 /* Car.plist */,\n\t\t\t\t607FACE91AFB9204008FA782 /* Supporting Files */,\n\t\t\t);\n\t\t\tpath = Tests;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t607FACE91AFB9204008FA782 /* Supporting Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t607FACEA1AFB9204008FA782 /* Info.plist */,\n\t\t\t);\n\t\t\tname = \"Supporting Files\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t607FACF51AFB993E008FA782 /* Podspec Metadata */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tDDAF776488859913631134E6 /* PersistentStorageSerializable.podspec */,\n\t\t\t\t6C1240DEA24D615B61502A9B /* README.md */,\n\t\t\t\t77A4C7A9C48761BFB96E9009 /* LICENSE */,\n\t\t\t);\n\t\t\tname = \"Podspec Metadata\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t9A2B6143D980D7AC4AA0886D /* Frameworks */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC6F0D1E550D38F1ACE0CFCF6 /* Pods_PersistentStorageSerializable_Tests.framework */,\n\t\t\t\tB107F7FEBC35A8A1C3631674 /* Pods_PersistentStorageSerializable_MacExample.framework */,\n\t\t\t\t095426B6186FB283A8442B6E /* Pods_PersistentStorageSerializable_iOSExample.framework */,\n\t\t\t);\n\t\t\tname = Frameworks;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tAB6AC3BE1E9680AE00F735CB /* macOS Example for PersistentStorageSerializable */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tAB6AC3BF1E9680AE00F735CB /* AppDelegate.swift */,\n\t\t\t\tAB6AC3C11E9680AE00F735CB /* ViewController.swift */,\n\t\t\t\tAB6AC3CC1E96819C00F735CB /* AppSettings.swift */,\n\t\t\t\tAB6AC3C31E9680AE00F735CB /* Assets.xcassets */,\n\t\t\t\tAB6AC3C51E9680AE00F735CB /* Main.storyboard */,\n\t\t\t\tAB6AC3C81E9680AE00F735CB /* Info.plist */,\n\t\t\t);\n\t\t\tname = \"macOS Example for PersistentStorageSerializable\";\n\t\t\tpath = PersistentStorageSerializable_MacExample;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tD03860B7B98A1F763B5BB4CC /* Pods */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tD61EE2F47F5FCAFA282DF7DD /* Pods-PersistentStorageSerializable_Tests.debug.xcconfig */,\n\t\t\t\tD0F7B87E59D17DF5674E4175 /* Pods-PersistentStorageSerializable_Tests.release.xcconfig */,\n\t\t\t\t410ED040FF5FC9E233E71DA9 /* Pods-PersistentStorageSerializable_MacExample.debug.xcconfig */,\n\t\t\t\tE1CCB00B943B4FE159A27022 /* Pods-PersistentStorageSerializable_MacExample.release.xcconfig */,\n\t\t\t\t1430E68C73DA958AEE435B2B /* Pods-PersistentStorageSerializable_iOSExample.debug.xcconfig */,\n\t\t\t\t2588AA89C5187E3CEA89DD6E /* Pods-PersistentStorageSerializable_iOSExample.release.xcconfig */,\n\t\t\t);\n\t\t\tname = Pods;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXNativeTarget section */\n\t\t607FACCF1AFB9204008FA782 /* PersistentStorageSerializable_iOSExample */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget \"PersistentStorageSerializable_iOSExample\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t66755897DE9E279750DF07F9 /* [CP] Check Pods Manifest.lock */,\n\t\t\t\t607FACCC1AFB9204008FA782 /* Sources */,\n\t\t\t\t607FACCD1AFB9204008FA782 /* Frameworks */,\n\t\t\t\t607FACCE1AFB9204008FA782 /* Resources */,\n\t\t\t\t236D08738204335D7A43DEF1 /* [CP] Embed Pods Frameworks */,\n\t\t\t\t27432223C0DD7682AC675BDF /* [CP] Copy Pods Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = PersistentStorageSerializable_iOSExample;\n\t\t\tproductName = PersistentStorageSerializable;\n\t\t\tproductReference = 607FACD01AFB9204008FA782 /* PersistentStorageSerializable_iOSExample.app */;\n\t\t\tproductType = \"com.apple.product-type.application\";\n\t\t};\n\t\t607FACE41AFB9204008FA782 /* PersistentStorageSerializable_Tests */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget \"PersistentStorageSerializable_Tests\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t82A9B6DE26A7AA265E46262D /* [CP] Check Pods Manifest.lock */,\n\t\t\t\t607FACE11AFB9204008FA782 /* Sources */,\n\t\t\t\t607FACE21AFB9204008FA782 /* Frameworks */,\n\t\t\t\t607FACE31AFB9204008FA782 /* Resources */,\n\t\t\t\t33157687998EEACBC2651DA7 /* [CP] Embed Pods Frameworks */,\n\t\t\t\t389211693118A2DFD7B74393 /* [CP] Copy Pods Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = PersistentStorageSerializable_Tests;\n\t\t\tproductName = Tests;\n\t\t\tproductReference = 607FACE51AFB9204008FA782 /* PersistentStorageSerializable_Tests.xctest */;\n\t\t\tproductType = \"com.apple.product-type.bundle.unit-test\";\n\t\t};\n\t\tAB6AC3BC1E9680AE00F735CB /* PersistentStorageSerializable_MacExample */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = AB6AC3CB1E9680AE00F735CB /* Build configuration list for PBXNativeTarget \"PersistentStorageSerializable_MacExample\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t83656AD5AD449BE38007FB5D /* [CP] Check Pods Manifest.lock */,\n\t\t\t\tAB6AC3B91E9680AE00F735CB /* Sources */,\n\t\t\t\tAB6AC3BA1E9680AE00F735CB /* Frameworks */,\n\t\t\t\tAB6AC3BB1E9680AE00F735CB /* Resources */,\n\t\t\t\tBB48EDF876C9F1A254792873 /* [CP] Embed Pods Frameworks */,\n\t\t\t\t69E40D21BFAF5A6983432BE8 /* [CP] Copy Pods Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = PersistentStorageSerializable_MacExample;\n\t\t\tproductName = PersistentStorageSerializable_MacExample;\n\t\t\tproductReference = AB6AC3BD1E9680AE00F735CB /* PersistentStorageSerializable_MacExample.app */;\n\t\t\tproductType = \"com.apple.product-type.application\";\n\t\t};\n/* End PBXNativeTarget section */\n\n/* Begin PBXProject section */\n\t\t607FACC81AFB9204008FA782 /* Project object */ = {\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tLastSwiftUpdateCheck = 0830;\n\t\t\t\tLastUpgradeCheck = 0830;\n\t\t\t\tORGANIZATIONNAME = CocoaPods;\n\t\t\t\tTargetAttributes = {\n\t\t\t\t\t607FACCF1AFB9204008FA782 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 6.3.1;\n\t\t\t\t\t\tLastSwiftMigration = 0820;\n\t\t\t\t\t};\n\t\t\t\t\t607FACE41AFB9204008FA782 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 6.3.1;\n\t\t\t\t\t\tLastSwiftMigration = 0820;\n\t\t\t\t\t};\n\t\t\t\t\tAB6AC3BC1E9680AE00F735CB = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 8.3;\n\t\t\t\t\t\tProvisioningStyle = Automatic;\n\t\t\t\t\t};\n\t\t\t\t};\n\t\t\t};\n\t\t\tbuildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject \"PersistentStorageSerializable\" */;\n\t\t\tcompatibilityVersion = \"Xcode 3.2\";\n\t\t\tdevelopmentRegion = English;\n\t\t\thasScannedForEncodings = 0;\n\t\t\tknownRegions = (\n\t\t\t\ten,\n\t\t\t\tBase,\n\t\t\t);\n\t\t\tmainGroup = 607FACC71AFB9204008FA782;\n\t\t\tproductRefGroup = 607FACD11AFB9204008FA782 /* Products */;\n\t\t\tprojectDirPath = \"\";\n\t\t\tprojectRoot = \"\";\n\t\t\ttargets = (\n\t\t\t\t607FACCF1AFB9204008FA782 /* PersistentStorageSerializable_iOSExample */,\n\t\t\t\tAB6AC3BC1E9680AE00F735CB /* PersistentStorageSerializable_MacExample */,\n\t\t\t\t607FACE41AFB9204008FA782 /* PersistentStorageSerializable_Tests */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin PBXResourcesBuildPhase section */\n\t\t607FACCE1AFB9204008FA782 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */,\n\t\t\t\t607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */,\n\t\t\t\t607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t607FACE31AFB9204008FA782 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tAB2E65E91E97E506009A8531 /* Car.plist in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tAB6AC3BB1E9680AE00F735CB /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tAB6AC3C41E9680AE00F735CB /* Assets.xcassets in Resources */,\n\t\t\t\tAB6AC3C71E9680AE00F735CB /* Main.storyboard in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXResourcesBuildPhase section */\n\n/* Begin PBXShellScriptBuildPhase section */\n\t\t236D08738204335D7A43DEF1 /* [CP] Embed Pods Frameworks */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t);\n\t\t\tname = \"[CP] Embed Pods Frameworks\";\n\t\t\toutputPaths = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"\\\"${SRCROOT}/Pods/Target Support Files/Pods-PersistentStorageSerializable_iOSExample/Pods-PersistentStorageSerializable_iOSExample-frameworks.sh\\\"\\n\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n\t\t27432223C0DD7682AC675BDF /* [CP] Copy Pods Resources */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t);\n\t\t\tname = \"[CP] Copy Pods Resources\";\n\t\t\toutputPaths = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"\\\"${SRCROOT}/Pods/Target Support Files/Pods-PersistentStorageSerializable_iOSExample/Pods-PersistentStorageSerializable_iOSExample-resources.sh\\\"\\n\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n\t\t33157687998EEACBC2651DA7 /* [CP] Embed Pods Frameworks */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t);\n\t\t\tname = \"[CP] Embed Pods Frameworks\";\n\t\t\toutputPaths = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"\\\"${SRCROOT}/Pods/Target Support Files/Pods-PersistentStorageSerializable_Tests/Pods-PersistentStorageSerializable_Tests-frameworks.sh\\\"\\n\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n\t\t389211693118A2DFD7B74393 /* [CP] Copy Pods Resources */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t);\n\t\t\tname = \"[CP] Copy Pods Resources\";\n\t\t\toutputPaths = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"\\\"${SRCROOT}/Pods/Target Support Files/Pods-PersistentStorageSerializable_Tests/Pods-PersistentStorageSerializable_Tests-resources.sh\\\"\\n\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n\t\t66755897DE9E279750DF07F9 /* [CP] Check Pods Manifest.lock */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t);\n\t\t\tname = \"[CP] Check Pods Manifest.lock\";\n\t\t\toutputPaths = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"diff \\\"${PODS_ROOT}/../Podfile.lock\\\" \\\"${PODS_ROOT}/Manifest.lock\\\" > /dev/null\\nif [ $? != 0 ] ; then\\n    # print error to STDERR\\n    echo \\\"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\\\" >&2\\n    exit 1\\nfi\\n\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n\t\t69E40D21BFAF5A6983432BE8 /* [CP] Copy Pods Resources */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t);\n\t\t\tname = \"[CP] Copy Pods Resources\";\n\t\t\toutputPaths = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"\\\"${SRCROOT}/Pods/Target Support Files/Pods-PersistentStorageSerializable_MacExample/Pods-PersistentStorageSerializable_MacExample-resources.sh\\\"\\n\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n\t\t82A9B6DE26A7AA265E46262D /* [CP] Check Pods Manifest.lock */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t);\n\t\t\tname = \"[CP] Check Pods Manifest.lock\";\n\t\t\toutputPaths = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"diff \\\"${PODS_ROOT}/../Podfile.lock\\\" \\\"${PODS_ROOT}/Manifest.lock\\\" > /dev/null\\nif [ $? != 0 ] ; then\\n    # print error to STDERR\\n    echo \\\"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\\\" >&2\\n    exit 1\\nfi\\n\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n\t\t83656AD5AD449BE38007FB5D /* [CP] Check Pods Manifest.lock */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t);\n\t\t\tname = \"[CP] Check Pods Manifest.lock\";\n\t\t\toutputPaths = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"diff \\\"${PODS_ROOT}/../Podfile.lock\\\" \\\"${PODS_ROOT}/Manifest.lock\\\" > /dev/null\\nif [ $? != 0 ] ; then\\n    # print error to STDERR\\n    echo \\\"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\\\" >&2\\n    exit 1\\nfi\\n\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n\t\tBB48EDF876C9F1A254792873 /* [CP] Embed Pods Frameworks */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t);\n\t\t\tname = \"[CP] Embed Pods Frameworks\";\n\t\t\toutputPaths = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"\\\"${SRCROOT}/Pods/Target Support Files/Pods-PersistentStorageSerializable_MacExample/Pods-PersistentStorageSerializable_MacExample-frameworks.sh\\\"\\n\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n/* End PBXShellScriptBuildPhase section */\n\n/* Begin PBXSourcesBuildPhase section */\n\t\t607FACCC1AFB9204008FA782 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tAB6AC3B61E95513E00F735CB /* Settings.swift in Sources */,\n\t\t\t\t607FACD81AFB9204008FA782 /* ViewController.swift in Sources */,\n\t\t\t\t607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t607FACE11AFB9204008FA782 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tAB6AC3AF1E950D5300F735CB /* PersistentStorageMock.swift in Sources */,\n\t\t\t\t607FACEC1AFB9204008FA782 /* PersistentStorageSerializableTests.swift in Sources */,\n\t\t\t\tAB76415C1E97CD57007279BE /* SupportedSerializableTypeTests.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tAB6AC3B91E9680AE00F735CB /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tAB6AC3CD1E96819C00F735CB /* AppSettings.swift in Sources */,\n\t\t\t\tAB6AC3C21E9680AE00F735CB /* ViewController.swift in Sources */,\n\t\t\t\tAB6AC3C01E9680AE00F735CB /* AppDelegate.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXSourcesBuildPhase section */\n\n/* Begin PBXVariantGroup section */\n\t\t607FACD91AFB9204008FA782 /* Main.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\t607FACDA1AFB9204008FA782 /* Base */,\n\t\t\t);\n\t\t\tname = Main.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\t607FACDF1AFB9204008FA782 /* Base */,\n\t\t\t);\n\t\t\tname = LaunchScreen.xib;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tAB6AC3C51E9680AE00F735CB /* Main.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\tAB6AC3C61E9680AE00F735CB /* Base */,\n\t\t\t);\n\t\t\tname = Main.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXVariantGroup section */\n\n/* Begin XCBuildConfiguration section */\n\t\t607FACED1AFB9204008FA782 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tENABLE_TESTABILITY = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_DYNAMIC_NO_PIC = NO;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_OPTIMIZATION_LEVEL = 0;\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"DEBUG=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tGCC_SYMBOLS_PRIVATE_EXTERN = NO;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.11;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = YES;\n\t\t\t\tONLY_ACTIVE_ARCH = YES;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Onone\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t607FACEE1AFB9204008FA782 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tENABLE_NS_ASSERTIONS = NO;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.11;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Owholemodule\";\n\t\t\t\tVALIDATE_PRODUCT = YES;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t607FACF01AFB9204008FA782 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 1430E68C73DA958AEE435B2B /* Pods-PersistentStorageSerializable_iOSExample.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tINFOPLIST_FILE = PersistentStorageSerializable/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks\";\n\t\t\t\tMODULE_NAME = ExampleApp;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSWIFT_VERSION = 3.0;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t607FACF11AFB9204008FA782 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 2588AA89C5187E3CEA89DD6E /* Pods-PersistentStorageSerializable_iOSExample.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tINFOPLIST_FILE = PersistentStorageSerializable/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks\";\n\t\t\t\tMODULE_NAME = ExampleApp;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSWIFT_VERSION = 3.0;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t607FACF31AFB9204008FA782 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = D61EE2F47F5FCAFA282DF7DD /* Pods-PersistentStorageSerializable_Tests.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"DEBUG=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tINFOPLIST_FILE = Tests/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSWIFT_VERSION = 3.0;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t607FACF41AFB9204008FA782 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = D0F7B87E59D17DF5674E4175 /* Pods-PersistentStorageSerializable_Tests.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tINFOPLIST_FILE = Tests/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSWIFT_VERSION = 3.0;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\tAB6AC3C91E9680AE00F735CB /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 410ED040FF5FC9E233E71DA9 /* Pods-PersistentStorageSerializable_MacExample.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCODE_SIGN_IDENTITY = \"Mac Developer\";\n\t\t\t\tCOMBINE_HIDPI_IMAGES = YES;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tDEVELOPMENT_TEAM = \"\";\n\t\t\t\tINFOPLIST_FILE = PersistentStorageSerializable_MacExample/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/../Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.demo.PersistentStorageSerializable-MacExample\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tPROVISIONING_PROFILE_SPECIFIER = \"\";\n\t\t\t\tSDKROOT = macosx;\n\t\t\t\tSWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;\n\t\t\t\tSWIFT_VERSION = 3.0;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tAB6AC3CA1E9680AE00F735CB /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = E1CCB00B943B4FE159A27022 /* Pods-PersistentStorageSerializable_MacExample.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCODE_SIGN_IDENTITY = \"Mac Developer\";\n\t\t\t\tCOMBINE_HIDPI_IMAGES = YES;\n\t\t\t\tDEVELOPMENT_TEAM = \"\";\n\t\t\t\tINFOPLIST_FILE = PersistentStorageSerializable_MacExample/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/../Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.demo.PersistentStorageSerializable-MacExample\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tPROVISIONING_PROFILE_SPECIFIER = \"\";\n\t\t\t\tSDKROOT = macosx;\n\t\t\t\tSWIFT_VERSION = 3.0;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n/* End XCBuildConfiguration section */\n\n/* Begin XCConfigurationList section */\n\t\t607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject \"PersistentStorageSerializable\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t607FACED1AFB9204008FA782 /* Debug */,\n\t\t\t\t607FACEE1AFB9204008FA782 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget \"PersistentStorageSerializable_iOSExample\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t607FACF01AFB9204008FA782 /* Debug */,\n\t\t\t\t607FACF11AFB9204008FA782 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget \"PersistentStorageSerializable_Tests\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t607FACF31AFB9204008FA782 /* Debug */,\n\t\t\t\t607FACF41AFB9204008FA782 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tAB6AC3CB1E9680AE00F735CB /* Build configuration list for PBXNativeTarget \"PersistentStorageSerializable_MacExample\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tAB6AC3C91E9680AE00F735CB /* Debug */,\n\t\t\t\tAB6AC3CA1E9680AE00F735CB /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n/* End XCConfigurationList section */\n\t};\n\trootObject = 607FACC81AFB9204008FA782 /* Project object */;\n}\n"
  },
  {
    "path": "Example/PersistentStorageSerializable.xcodeproj/project.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"self:PersistentStorageSerializable.xcodeproj\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "Example/PersistentStorageSerializable.xcodeproj/xcshareddata/xcschemes/PersistentStorageSerializable-MacExample.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"0830\"\n   version = \"1.3\">\n   <BuildAction\n      parallelizeBuildables = \"YES\"\n      buildImplicitDependencies = \"YES\">\n      <BuildActionEntries>\n         <BuildActionEntry\n            buildForTesting = \"NO\"\n            buildForRunning = \"YES\"\n            buildForProfiling = \"YES\"\n            buildForArchiving = \"YES\"\n            buildForAnalyzing = \"YES\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"AB6AC3BC1E9680AE00F735CB\"\n               BuildableName = \"PersistentStorageSerializable_MacExample.app\"\n               BlueprintName = \"PersistentStorageSerializable_MacExample\"\n               ReferencedContainer = \"container:PersistentStorageSerializable.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\">\n      <Testables>\n      </Testables>\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"AB6AC3BC1E9680AE00F735CB\"\n            BuildableName = \"PersistentStorageSerializable_MacExample.app\"\n            BlueprintName = \"PersistentStorageSerializable_MacExample\"\n            ReferencedContainer = \"container:PersistentStorageSerializable.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </TestAction>\n   <LaunchAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      debugServiceExtension = \"internal\"\n      allowLocationSimulation = \"YES\">\n      <BuildableProductRunnable\n         runnableDebuggingMode = \"0\">\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"AB6AC3BC1E9680AE00F735CB\"\n            BuildableName = \"PersistentStorageSerializable_MacExample.app\"\n            BlueprintName = \"PersistentStorageSerializable_MacExample\"\n            ReferencedContainer = \"container:PersistentStorageSerializable.xcodeproj\">\n         </BuildableReference>\n      </BuildableProductRunnable>\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </LaunchAction>\n   <ProfileAction\n      buildConfiguration = \"Release\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      debugDocumentVersioning = \"YES\">\n      <BuildableProductRunnable\n         runnableDebuggingMode = \"0\">\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"AB6AC3BC1E9680AE00F735CB\"\n            BuildableName = \"PersistentStorageSerializable_MacExample.app\"\n            BlueprintName = \"PersistentStorageSerializable_MacExample\"\n            ReferencedContainer = \"container:PersistentStorageSerializable.xcodeproj\">\n         </BuildableReference>\n      </BuildableProductRunnable>\n   </ProfileAction>\n   <AnalyzeAction\n      buildConfiguration = \"Debug\">\n   </AnalyzeAction>\n   <ArchiveAction\n      buildConfiguration = \"Release\"\n      revealArchiveInOrganizer = \"YES\">\n   </ArchiveAction>\n</Scheme>\n"
  },
  {
    "path": "Example/PersistentStorageSerializable.xcodeproj/xcshareddata/xcschemes/PersistentStorageSerializable-Tests.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"0830\"\n   version = \"1.3\">\n   <BuildAction\n      parallelizeBuildables = \"YES\"\n      buildImplicitDependencies = \"YES\">\n      <BuildActionEntries>\n         <BuildActionEntry\n            buildForTesting = \"YES\"\n            buildForRunning = \"NO\"\n            buildForProfiling = \"NO\"\n            buildForArchiving = \"NO\"\n            buildForAnalyzing = \"NO\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"607FACE41AFB9204008FA782\"\n               BuildableName = \"PersistentStorageSerializable_Tests.xctest\"\n               BlueprintName = \"PersistentStorageSerializable_Tests\"\n               ReferencedContainer = \"container:PersistentStorageSerializable.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\">\n      <Testables>\n         <TestableReference\n            skipped = \"NO\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"607FACE41AFB9204008FA782\"\n               BuildableName = \"PersistentStorageSerializable_Tests.xctest\"\n               BlueprintName = \"PersistentStorageSerializable_Tests\"\n               ReferencedContainer = \"container:PersistentStorageSerializable.xcodeproj\">\n            </BuildableReference>\n         </TestableReference>\n      </Testables>\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"607FACE41AFB9204008FA782\"\n            BuildableName = \"PersistentStorageSerializable_Tests.xctest\"\n            BlueprintName = \"PersistentStorageSerializable_Tests\"\n            ReferencedContainer = \"container:PersistentStorageSerializable.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </TestAction>\n   <LaunchAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      debugServiceExtension = \"internal\"\n      allowLocationSimulation = \"YES\">\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </LaunchAction>\n   <ProfileAction\n      buildConfiguration = \"Release\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      debugDocumentVersioning = \"YES\">\n   </ProfileAction>\n   <AnalyzeAction\n      buildConfiguration = \"Debug\">\n   </AnalyzeAction>\n   <ArchiveAction\n      buildConfiguration = \"Release\"\n      revealArchiveInOrganizer = \"YES\">\n   </ArchiveAction>\n</Scheme>\n"
  },
  {
    "path": "Example/PersistentStorageSerializable.xcodeproj/xcshareddata/xcschemes/PersistentStorageSerializable-iOSExample.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"0830\"\n   version = \"1.3\">\n   <BuildAction\n      parallelizeBuildables = \"YES\"\n      buildImplicitDependencies = \"YES\">\n      <BuildActionEntries>\n         <BuildActionEntry\n            buildForTesting = \"NO\"\n            buildForRunning = \"YES\"\n            buildForProfiling = \"YES\"\n            buildForArchiving = \"YES\"\n            buildForAnalyzing = \"YES\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"607FACCF1AFB9204008FA782\"\n               BuildableName = \"PersistentStorageSerializable_iOSExample.app\"\n               BlueprintName = \"PersistentStorageSerializable_iOSExample\"\n               ReferencedContainer = \"container:PersistentStorageSerializable.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\">\n      <Testables>\n      </Testables>\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"607FACCF1AFB9204008FA782\"\n            BuildableName = \"PersistentStorageSerializable_iOSExample.app\"\n            BlueprintName = \"PersistentStorageSerializable_iOSExample\"\n            ReferencedContainer = \"container:PersistentStorageSerializable.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </TestAction>\n   <LaunchAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      debugServiceExtension = \"internal\"\n      allowLocationSimulation = \"YES\">\n      <BuildableProductRunnable\n         runnableDebuggingMode = \"0\">\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"607FACCF1AFB9204008FA782\"\n            BuildableName = \"PersistentStorageSerializable_iOSExample.app\"\n            BlueprintName = \"PersistentStorageSerializable_iOSExample\"\n            ReferencedContainer = \"container:PersistentStorageSerializable.xcodeproj\">\n         </BuildableReference>\n      </BuildableProductRunnable>\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </LaunchAction>\n   <ProfileAction\n      buildConfiguration = \"Release\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      debugDocumentVersioning = \"YES\">\n      <BuildableProductRunnable\n         runnableDebuggingMode = \"0\">\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"607FACCF1AFB9204008FA782\"\n            BuildableName = \"PersistentStorageSerializable_iOSExample.app\"\n            BlueprintName = \"PersistentStorageSerializable_iOSExample\"\n            ReferencedContainer = \"container:PersistentStorageSerializable.xcodeproj\">\n         </BuildableReference>\n      </BuildableProductRunnable>\n   </ProfileAction>\n   <AnalyzeAction\n      buildConfiguration = \"Debug\">\n   </AnalyzeAction>\n   <ArchiveAction\n      buildConfiguration = \"Release\"\n      revealArchiveInOrganizer = \"YES\">\n   </ArchiveAction>\n</Scheme>\n"
  },
  {
    "path": "Example/PersistentStorageSerializable.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"group:PersistentStorageSerializable.xcodeproj\">\n   </FileRef>\n   <FileRef\n      location = \"group:Pods/Pods.xcodeproj\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "Example/PersistentStorageSerializable_MacExample/AppDelegate.swift",
    "content": "//\n//  AppDelegate.swift\n//  PersistentStorageSerializable_MacExample\n//\n//  Created by Ivan Rublev on 4/6/17.\n//  Copyright © 2017 CocoaPods. All rights reserved.\n//\n\nimport Cocoa\n\n@NSApplicationMain\nclass AppDelegate: NSObject, NSApplicationDelegate {\n\n    func applicationDidFinishLaunching(_ aNotification: Notification) {\n        // Insert code here to initialize your application\n    }\n\n    func applicationWillTerminate(_ aNotification: Notification) {\n        // Insert code here to tear down your application\n    }\n\n}\n\n"
  },
  {
    "path": "Example/PersistentStorageSerializable_MacExample/AppSettings.swift",
    "content": "//\n//  AppSettings.swift\n//  PersistentStorageSerializable\n//\n//  Created by Ivan Rublev on 4/6/17.\n//  Copyright © 2017 CocoaPods. All rights reserved.\n//\n\nimport Foundation\nimport PersistentStorageSerializable\n\nfinal class AppSettings: NSObject, PersistentStorageSerializable {\n    dynamic var flag = false\n    dynamic var title = \"Default text\"\n    dynamic var number = 1\n    \n    // MARK: Adopt PersistentStorageSerializable\n    var persistentStorage: PersistentStorage! = PlistStorage(at: FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).last!.appendingPathComponent(\"storage.plist\"))\n    var persistentStorageKeyPrefix: String! = \"AppSettings\"\n}\n"
  },
  {
    "path": "Example/PersistentStorageSerializable_MacExample/Assets.xcassets/AppIcon.appiconset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"mac\",\n      \"size\" : \"16x16\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"mac\",\n      \"size\" : \"16x16\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"mac\",\n      \"size\" : \"32x32\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"mac\",\n      \"size\" : \"32x32\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"mac\",\n      \"size\" : \"128x128\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"mac\",\n      \"size\" : \"128x128\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"mac\",\n      \"size\" : \"256x256\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"mac\",\n      \"size\" : \"256x256\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"mac\",\n      \"size\" : \"512x512\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"mac\",\n      \"size\" : \"512x512\",\n      \"scale\" : \"2x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Example/PersistentStorageSerializable_MacExample/Base.lproj/Main.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.Cocoa.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"12118\" systemVersion=\"16E195\" targetRuntime=\"MacOSX.Cocoa\" propertyAccessControl=\"none\" useAutolayout=\"YES\" initialViewController=\"B8D-0N-5wS\">\n    <dependencies>\n        <deployment identifier=\"macosx\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.CocoaPlugin\" version=\"12118\"/>\n        <capability name=\"box content view\" minToolsVersion=\"7.0\"/>\n        <capability name=\"documents saved in the Xcode 8 format\" minToolsVersion=\"8.0\"/>\n        <capability name=\"stacking Non-gravity area distributions on NSStackView\" minToolsVersion=\"7.0\" minSystemVersion=\"10.11\"/>\n    </dependencies>\n    <scenes>\n        <!--Application-->\n        <scene sceneID=\"JPo-4y-FX3\">\n            <objects>\n                <application id=\"hnw-xV-0zn\" sceneMemberID=\"viewController\">\n                    <menu key=\"mainMenu\" title=\"Main Menu\" systemMenu=\"main\" id=\"AYu-sK-qS6\">\n                        <items>\n                            <menuItem title=\"PersistentStorageSerializable_MacExample\" id=\"1Xt-HY-uBw\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <menu key=\"submenu\" title=\"PersistentStorageSerializable_MacExample\" systemMenu=\"apple\" id=\"uQy-DD-JDr\">\n                                    <items>\n                                        <menuItem title=\"About PersistentStorageSerializable_MacExample\" id=\"5kV-Vb-QxS\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"orderFrontStandardAboutPanel:\" target=\"Ady-hI-5gd\" id=\"Exp-CZ-Vem\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem isSeparatorItem=\"YES\" id=\"VOq-y0-SEH\"/>\n                                        <menuItem title=\"Preferences…\" keyEquivalent=\",\" id=\"BOF-NM-1cW\"/>\n                                        <menuItem isSeparatorItem=\"YES\" id=\"wFC-TO-SCJ\"/>\n                                        <menuItem title=\"Services\" id=\"NMo-om-nkz\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <menu key=\"submenu\" title=\"Services\" systemMenu=\"services\" id=\"hz9-B4-Xy5\"/>\n                                        </menuItem>\n                                        <menuItem isSeparatorItem=\"YES\" id=\"4je-JR-u6R\"/>\n                                        <menuItem title=\"Hide PersistentStorageSerializable_MacExample\" keyEquivalent=\"h\" id=\"Olw-nP-bQN\">\n                                            <connections>\n                                                <action selector=\"hide:\" target=\"Ady-hI-5gd\" id=\"PnN-Uc-m68\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Hide Others\" keyEquivalent=\"h\" id=\"Vdr-fp-XzO\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\" option=\"YES\" command=\"YES\"/>\n                                            <connections>\n                                                <action selector=\"hideOtherApplications:\" target=\"Ady-hI-5gd\" id=\"VT4-aY-XCT\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Show All\" id=\"Kd2-mp-pUS\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"unhideAllApplications:\" target=\"Ady-hI-5gd\" id=\"Dhg-Le-xox\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem isSeparatorItem=\"YES\" id=\"kCx-OE-vgT\"/>\n                                        <menuItem title=\"Quit PersistentStorageSerializable_MacExample\" keyEquivalent=\"q\" id=\"4sb-4s-VLi\">\n                                            <connections>\n                                                <action selector=\"terminate:\" target=\"Ady-hI-5gd\" id=\"Te7-pn-YzF\"/>\n                                            </connections>\n                                        </menuItem>\n                                    </items>\n                                </menu>\n                            </menuItem>\n                            <menuItem title=\"File\" id=\"dMs-cI-mzQ\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <menu key=\"submenu\" title=\"File\" id=\"bib-Uj-vzu\">\n                                    <items>\n                                        <menuItem title=\"New\" keyEquivalent=\"n\" id=\"Was-JA-tGl\">\n                                            <connections>\n                                                <action selector=\"newDocument:\" target=\"Ady-hI-5gd\" id=\"4Si-XN-c54\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Open…\" keyEquivalent=\"o\" id=\"IAo-SY-fd9\">\n                                            <connections>\n                                                <action selector=\"openDocument:\" target=\"Ady-hI-5gd\" id=\"bVn-NM-KNZ\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Open Recent\" id=\"tXI-mr-wws\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <menu key=\"submenu\" title=\"Open Recent\" systemMenu=\"recentDocuments\" id=\"oas-Oc-fiZ\">\n                                                <items>\n                                                    <menuItem title=\"Clear Menu\" id=\"vNY-rz-j42\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"clearRecentDocuments:\" target=\"Ady-hI-5gd\" id=\"Daa-9d-B3U\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                </items>\n                                            </menu>\n                                        </menuItem>\n                                        <menuItem isSeparatorItem=\"YES\" id=\"m54-Is-iLE\"/>\n                                        <menuItem title=\"Close\" keyEquivalent=\"w\" id=\"DVo-aG-piG\">\n                                            <connections>\n                                                <action selector=\"performClose:\" target=\"Ady-hI-5gd\" id=\"HmO-Ls-i7Q\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Save…\" keyEquivalent=\"s\" id=\"pxx-59-PXV\">\n                                            <connections>\n                                                <action selector=\"saveDocument:\" target=\"Ady-hI-5gd\" id=\"teZ-XB-qJY\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Save As…\" keyEquivalent=\"S\" id=\"Bw7-FT-i3A\">\n                                            <connections>\n                                                <action selector=\"saveDocumentAs:\" target=\"Ady-hI-5gd\" id=\"mDf-zr-I0C\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Revert to Saved\" keyEquivalent=\"r\" id=\"KaW-ft-85H\">\n                                            <connections>\n                                                <action selector=\"revertDocumentToSaved:\" target=\"Ady-hI-5gd\" id=\"iJ3-Pv-kwq\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem isSeparatorItem=\"YES\" id=\"aJh-i4-bef\"/>\n                                        <menuItem title=\"Page Setup…\" keyEquivalent=\"P\" id=\"qIS-W8-SiK\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\" shift=\"YES\" command=\"YES\"/>\n                                            <connections>\n                                                <action selector=\"runPageLayout:\" target=\"Ady-hI-5gd\" id=\"Din-rz-gC5\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Print…\" keyEquivalent=\"p\" id=\"aTl-1u-JFS\">\n                                            <connections>\n                                                <action selector=\"print:\" target=\"Ady-hI-5gd\" id=\"qaZ-4w-aoO\"/>\n                                            </connections>\n                                        </menuItem>\n                                    </items>\n                                </menu>\n                            </menuItem>\n                            <menuItem title=\"Edit\" id=\"5QF-Oa-p0T\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <menu key=\"submenu\" title=\"Edit\" id=\"W48-6f-4Dl\">\n                                    <items>\n                                        <menuItem title=\"Undo\" keyEquivalent=\"z\" id=\"dRJ-4n-Yzg\">\n                                            <connections>\n                                                <action selector=\"undo:\" target=\"Ady-hI-5gd\" id=\"M6e-cu-g7V\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Redo\" keyEquivalent=\"Z\" id=\"6dh-zS-Vam\">\n                                            <connections>\n                                                <action selector=\"redo:\" target=\"Ady-hI-5gd\" id=\"oIA-Rs-6OD\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem isSeparatorItem=\"YES\" id=\"WRV-NI-Exz\"/>\n                                        <menuItem title=\"Cut\" keyEquivalent=\"x\" id=\"uRl-iY-unG\">\n                                            <connections>\n                                                <action selector=\"cut:\" target=\"Ady-hI-5gd\" id=\"YJe-68-I9s\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Copy\" keyEquivalent=\"c\" id=\"x3v-GG-iWU\">\n                                            <connections>\n                                                <action selector=\"copy:\" target=\"Ady-hI-5gd\" id=\"G1f-GL-Joy\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Paste\" keyEquivalent=\"v\" id=\"gVA-U4-sdL\">\n                                            <connections>\n                                                <action selector=\"paste:\" target=\"Ady-hI-5gd\" id=\"UvS-8e-Qdg\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Paste and Match Style\" keyEquivalent=\"V\" id=\"WeT-3V-zwk\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\" option=\"YES\" command=\"YES\"/>\n                                            <connections>\n                                                <action selector=\"pasteAsPlainText:\" target=\"Ady-hI-5gd\" id=\"cEh-KX-wJQ\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Delete\" id=\"pa3-QI-u2k\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"delete:\" target=\"Ady-hI-5gd\" id=\"0Mk-Ml-PaM\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Select All\" keyEquivalent=\"a\" id=\"Ruw-6m-B2m\">\n                                            <connections>\n                                                <action selector=\"selectAll:\" target=\"Ady-hI-5gd\" id=\"VNm-Mi-diN\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem isSeparatorItem=\"YES\" id=\"uyl-h8-XO2\"/>\n                                        <menuItem title=\"Find\" id=\"4EN-yA-p0u\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <menu key=\"submenu\" title=\"Find\" id=\"1b7-l0-nxx\">\n                                                <items>\n                                                    <menuItem title=\"Find…\" tag=\"1\" keyEquivalent=\"f\" id=\"Xz5-n4-O0W\">\n                                                        <connections>\n                                                            <action selector=\"performFindPanelAction:\" target=\"Ady-hI-5gd\" id=\"cD7-Qs-BN4\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Find and Replace…\" tag=\"12\" keyEquivalent=\"f\" id=\"YEy-JH-Tfz\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\" option=\"YES\" command=\"YES\"/>\n                                                        <connections>\n                                                            <action selector=\"performFindPanelAction:\" target=\"Ady-hI-5gd\" id=\"WD3-Gg-5AJ\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Find Next\" tag=\"2\" keyEquivalent=\"g\" id=\"q09-fT-Sye\">\n                                                        <connections>\n                                                            <action selector=\"performFindPanelAction:\" target=\"Ady-hI-5gd\" id=\"NDo-RZ-v9R\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Find Previous\" tag=\"3\" keyEquivalent=\"G\" id=\"OwM-mh-QMV\">\n                                                        <connections>\n                                                            <action selector=\"performFindPanelAction:\" target=\"Ady-hI-5gd\" id=\"HOh-sY-3ay\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Use Selection for Find\" tag=\"7\" keyEquivalent=\"e\" id=\"buJ-ug-pKt\">\n                                                        <connections>\n                                                            <action selector=\"performFindPanelAction:\" target=\"Ady-hI-5gd\" id=\"U76-nv-p5D\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Jump to Selection\" keyEquivalent=\"j\" id=\"S0p-oC-mLd\">\n                                                        <connections>\n                                                            <action selector=\"centerSelectionInVisibleArea:\" target=\"Ady-hI-5gd\" id=\"IOG-6D-g5B\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                </items>\n                                            </menu>\n                                        </menuItem>\n                                        <menuItem title=\"Spelling and Grammar\" id=\"Dv1-io-Yv7\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <menu key=\"submenu\" title=\"Spelling\" id=\"3IN-sU-3Bg\">\n                                                <items>\n                                                    <menuItem title=\"Show Spelling and Grammar\" keyEquivalent=\":\" id=\"HFo-cy-zxI\">\n                                                        <connections>\n                                                            <action selector=\"showGuessPanel:\" target=\"Ady-hI-5gd\" id=\"vFj-Ks-hy3\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Check Document Now\" keyEquivalent=\";\" id=\"hz2-CU-CR7\">\n                                                        <connections>\n                                                            <action selector=\"checkSpelling:\" target=\"Ady-hI-5gd\" id=\"fz7-VC-reM\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem isSeparatorItem=\"YES\" id=\"bNw-od-mp5\"/>\n                                                    <menuItem title=\"Check Spelling While Typing\" id=\"rbD-Rh-wIN\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"toggleContinuousSpellChecking:\" target=\"Ady-hI-5gd\" id=\"7w6-Qz-0kB\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Check Grammar With Spelling\" id=\"mK6-2p-4JG\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"toggleGrammarChecking:\" target=\"Ady-hI-5gd\" id=\"muD-Qn-j4w\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Correct Spelling Automatically\" id=\"78Y-hA-62v\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"toggleAutomaticSpellingCorrection:\" target=\"Ady-hI-5gd\" id=\"2lM-Qi-WAP\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                </items>\n                                            </menu>\n                                        </menuItem>\n                                        <menuItem title=\"Substitutions\" id=\"9ic-FL-obx\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <menu key=\"submenu\" title=\"Substitutions\" id=\"FeM-D8-WVr\">\n                                                <items>\n                                                    <menuItem title=\"Show Substitutions\" id=\"z6F-FW-3nz\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"orderFrontSubstitutionsPanel:\" target=\"Ady-hI-5gd\" id=\"oku-mr-iSq\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem isSeparatorItem=\"YES\" id=\"gPx-C9-uUO\"/>\n                                                    <menuItem title=\"Smart Copy/Paste\" id=\"9yt-4B-nSM\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"toggleSmartInsertDelete:\" target=\"Ady-hI-5gd\" id=\"3IJ-Se-DZD\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Smart Quotes\" id=\"hQb-2v-fYv\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"toggleAutomaticQuoteSubstitution:\" target=\"Ady-hI-5gd\" id=\"ptq-xd-QOA\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Smart Dashes\" id=\"rgM-f4-ycn\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"toggleAutomaticDashSubstitution:\" target=\"Ady-hI-5gd\" id=\"oCt-pO-9gS\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Smart Links\" id=\"cwL-P1-jid\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"toggleAutomaticLinkDetection:\" target=\"Ady-hI-5gd\" id=\"Gip-E3-Fov\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Data Detectors\" id=\"tRr-pd-1PS\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"toggleAutomaticDataDetection:\" target=\"Ady-hI-5gd\" id=\"R1I-Nq-Kbl\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Text Replacement\" id=\"HFQ-gK-NFA\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"toggleAutomaticTextReplacement:\" target=\"Ady-hI-5gd\" id=\"DvP-Fe-Py6\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                </items>\n                                            </menu>\n                                        </menuItem>\n                                        <menuItem title=\"Transformations\" id=\"2oI-Rn-ZJC\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <menu key=\"submenu\" title=\"Transformations\" id=\"c8a-y6-VQd\">\n                                                <items>\n                                                    <menuItem title=\"Make Upper Case\" id=\"vmV-6d-7jI\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"uppercaseWord:\" target=\"Ady-hI-5gd\" id=\"sPh-Tk-edu\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Make Lower Case\" id=\"d9M-CD-aMd\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"lowercaseWord:\" target=\"Ady-hI-5gd\" id=\"iUZ-b5-hil\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Capitalize\" id=\"UEZ-Bs-lqG\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"capitalizeWord:\" target=\"Ady-hI-5gd\" id=\"26H-TL-nsh\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                </items>\n                                            </menu>\n                                        </menuItem>\n                                        <menuItem title=\"Speech\" id=\"xrE-MZ-jX0\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <menu key=\"submenu\" title=\"Speech\" id=\"3rS-ZA-NoH\">\n                                                <items>\n                                                    <menuItem title=\"Start Speaking\" id=\"Ynk-f8-cLZ\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"startSpeaking:\" target=\"Ady-hI-5gd\" id=\"654-Ng-kyl\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Stop Speaking\" id=\"Oyz-dy-DGm\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"stopSpeaking:\" target=\"Ady-hI-5gd\" id=\"dX8-6p-jy9\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                </items>\n                                            </menu>\n                                        </menuItem>\n                                    </items>\n                                </menu>\n                            </menuItem>\n                            <menuItem title=\"Format\" id=\"jxT-CU-nIS\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <menu key=\"submenu\" title=\"Format\" id=\"GEO-Iw-cKr\">\n                                    <items>\n                                        <menuItem title=\"Font\" id=\"Gi5-1S-RQB\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <menu key=\"submenu\" title=\"Font\" systemMenu=\"font\" id=\"aXa-aM-Jaq\">\n                                                <items>\n                                                    <menuItem title=\"Show Fonts\" keyEquivalent=\"t\" id=\"Q5e-8K-NDq\"/>\n                                                    <menuItem title=\"Bold\" tag=\"2\" keyEquivalent=\"b\" id=\"GB9-OM-e27\"/>\n                                                    <menuItem title=\"Italic\" tag=\"1\" keyEquivalent=\"i\" id=\"Vjx-xi-njq\"/>\n                                                    <menuItem title=\"Underline\" keyEquivalent=\"u\" id=\"WRG-CD-K1S\">\n                                                        <connections>\n                                                            <action selector=\"underline:\" target=\"Ady-hI-5gd\" id=\"FYS-2b-JAY\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem isSeparatorItem=\"YES\" id=\"5gT-KC-WSO\"/>\n                                                    <menuItem title=\"Bigger\" tag=\"3\" keyEquivalent=\"+\" id=\"Ptp-SP-VEL\"/>\n                                                    <menuItem title=\"Smaller\" tag=\"4\" keyEquivalent=\"-\" id=\"i1d-Er-qST\"/>\n                                                    <menuItem isSeparatorItem=\"YES\" id=\"kx3-Dk-x3B\"/>\n                                                    <menuItem title=\"Kern\" id=\"jBQ-r6-VK2\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <menu key=\"submenu\" title=\"Kern\" id=\"tlD-Oa-oAM\">\n                                                            <items>\n                                                                <menuItem title=\"Use Default\" id=\"GUa-eO-cwY\">\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"useStandardKerning:\" target=\"Ady-hI-5gd\" id=\"6dk-9l-Ckg\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                                <menuItem title=\"Use None\" id=\"cDB-IK-hbR\">\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"turnOffKerning:\" target=\"Ady-hI-5gd\" id=\"U8a-gz-Maa\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                                <menuItem title=\"Tighten\" id=\"46P-cB-AYj\">\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"tightenKerning:\" target=\"Ady-hI-5gd\" id=\"hr7-Nz-8ro\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                                <menuItem title=\"Loosen\" id=\"ogc-rX-tC1\">\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"loosenKerning:\" target=\"Ady-hI-5gd\" id=\"8i4-f9-FKE\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                            </items>\n                                                        </menu>\n                                                    </menuItem>\n                                                    <menuItem title=\"Ligatures\" id=\"o6e-r0-MWq\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <menu key=\"submenu\" title=\"Ligatures\" id=\"w0m-vy-SC9\">\n                                                            <items>\n                                                                <menuItem title=\"Use Default\" id=\"agt-UL-0e3\">\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"useStandardLigatures:\" target=\"Ady-hI-5gd\" id=\"7uR-wd-Dx6\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                                <menuItem title=\"Use None\" id=\"J7y-lM-qPV\">\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"turnOffLigatures:\" target=\"Ady-hI-5gd\" id=\"iX2-gA-Ilz\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                                <menuItem title=\"Use All\" id=\"xQD-1f-W4t\">\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"useAllLigatures:\" target=\"Ady-hI-5gd\" id=\"KcB-kA-TuK\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                            </items>\n                                                        </menu>\n                                                    </menuItem>\n                                                    <menuItem title=\"Baseline\" id=\"OaQ-X3-Vso\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <menu key=\"submenu\" title=\"Baseline\" id=\"ijk-EB-dga\">\n                                                            <items>\n                                                                <menuItem title=\"Use Default\" id=\"3Om-Ey-2VK\">\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"unscript:\" target=\"Ady-hI-5gd\" id=\"0vZ-95-Ywn\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                                <menuItem title=\"Superscript\" id=\"Rqc-34-cIF\">\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"superscript:\" target=\"Ady-hI-5gd\" id=\"3qV-fo-wpU\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                                <menuItem title=\"Subscript\" id=\"I0S-gh-46l\">\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"subscript:\" target=\"Ady-hI-5gd\" id=\"Q6W-4W-IGz\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                                <menuItem title=\"Raise\" id=\"2h7-ER-AoG\">\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"raiseBaseline:\" target=\"Ady-hI-5gd\" id=\"4sk-31-7Q9\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                                <menuItem title=\"Lower\" id=\"1tx-W0-xDw\">\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"lowerBaseline:\" target=\"Ady-hI-5gd\" id=\"OF1-bc-KW4\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                            </items>\n                                                        </menu>\n                                                    </menuItem>\n                                                    <menuItem isSeparatorItem=\"YES\" id=\"Ndw-q3-faq\"/>\n                                                    <menuItem title=\"Show Colors\" keyEquivalent=\"C\" id=\"bgn-CT-cEk\">\n                                                        <connections>\n                                                            <action selector=\"orderFrontColorPanel:\" target=\"Ady-hI-5gd\" id=\"mSX-Xz-DV3\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem isSeparatorItem=\"YES\" id=\"iMs-zA-UFJ\"/>\n                                                    <menuItem title=\"Copy Style\" keyEquivalent=\"c\" id=\"5Vv-lz-BsD\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\" option=\"YES\" command=\"YES\"/>\n                                                        <connections>\n                                                            <action selector=\"copyFont:\" target=\"Ady-hI-5gd\" id=\"GJO-xA-L4q\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Paste Style\" keyEquivalent=\"v\" id=\"vKC-jM-MkH\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\" option=\"YES\" command=\"YES\"/>\n                                                        <connections>\n                                                            <action selector=\"pasteFont:\" target=\"Ady-hI-5gd\" id=\"JfD-CL-leO\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                </items>\n                                            </menu>\n                                        </menuItem>\n                                        <menuItem title=\"Text\" id=\"Fal-I4-PZk\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <menu key=\"submenu\" title=\"Text\" id=\"d9c-me-L2H\">\n                                                <items>\n                                                    <menuItem title=\"Align Left\" keyEquivalent=\"{\" id=\"ZM1-6Q-yy1\">\n                                                        <connections>\n                                                            <action selector=\"alignLeft:\" target=\"Ady-hI-5gd\" id=\"zUv-R1-uAa\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Center\" keyEquivalent=\"|\" id=\"VIY-Ag-zcb\">\n                                                        <connections>\n                                                            <action selector=\"alignCenter:\" target=\"Ady-hI-5gd\" id=\"spX-mk-kcS\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Justify\" id=\"J5U-5w-g23\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"alignJustified:\" target=\"Ady-hI-5gd\" id=\"ljL-7U-jND\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Align Right\" keyEquivalent=\"}\" id=\"wb2-vD-lq4\">\n                                                        <connections>\n                                                            <action selector=\"alignRight:\" target=\"Ady-hI-5gd\" id=\"r48-bG-YeY\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem isSeparatorItem=\"YES\" id=\"4s2-GY-VfK\"/>\n                                                    <menuItem title=\"Writing Direction\" id=\"H1b-Si-o9J\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <menu key=\"submenu\" title=\"Writing Direction\" id=\"8mr-sm-Yjd\">\n                                                            <items>\n                                                                <menuItem title=\"Paragraph\" enabled=\"NO\" id=\"ZvO-Gk-QUH\">\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                </menuItem>\n                                                                <menuItem id=\"YGs-j5-SAR\">\n                                                                    <string key=\"title\">\tDefault</string>\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"makeBaseWritingDirectionNatural:\" target=\"Ady-hI-5gd\" id=\"qtV-5e-UBP\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                                <menuItem id=\"Lbh-J2-qVU\">\n                                                                    <string key=\"title\">\tLeft to Right</string>\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"makeBaseWritingDirectionLeftToRight:\" target=\"Ady-hI-5gd\" id=\"S0X-9S-QSf\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                                <menuItem id=\"jFq-tB-4Kx\">\n                                                                    <string key=\"title\">\tRight to Left</string>\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"makeBaseWritingDirectionRightToLeft:\" target=\"Ady-hI-5gd\" id=\"5fk-qB-AqJ\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                                <menuItem isSeparatorItem=\"YES\" id=\"swp-gr-a21\"/>\n                                                                <menuItem title=\"Selection\" enabled=\"NO\" id=\"cqv-fj-IhA\">\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                </menuItem>\n                                                                <menuItem id=\"Nop-cj-93Q\">\n                                                                    <string key=\"title\">\tDefault</string>\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"makeTextWritingDirectionNatural:\" target=\"Ady-hI-5gd\" id=\"lPI-Se-ZHp\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                                <menuItem id=\"BgM-ve-c93\">\n                                                                    <string key=\"title\">\tLeft to Right</string>\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"makeTextWritingDirectionLeftToRight:\" target=\"Ady-hI-5gd\" id=\"caW-Bv-w94\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                                <menuItem id=\"RB4-Sm-HuC\">\n                                                                    <string key=\"title\">\tRight to Left</string>\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"makeTextWritingDirectionRightToLeft:\" target=\"Ady-hI-5gd\" id=\"EXD-6r-ZUu\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                            </items>\n                                                        </menu>\n                                                    </menuItem>\n                                                    <menuItem isSeparatorItem=\"YES\" id=\"fKy-g9-1gm\"/>\n                                                    <menuItem title=\"Show Ruler\" id=\"vLm-3I-IUL\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"toggleRuler:\" target=\"Ady-hI-5gd\" id=\"FOx-HJ-KwY\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Copy Ruler\" keyEquivalent=\"c\" id=\"MkV-Pr-PK5\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\" control=\"YES\" command=\"YES\"/>\n                                                        <connections>\n                                                            <action selector=\"copyRuler:\" target=\"Ady-hI-5gd\" id=\"71i-fW-3W2\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Paste Ruler\" keyEquivalent=\"v\" id=\"LVM-kO-fVI\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\" control=\"YES\" command=\"YES\"/>\n                                                        <connections>\n                                                            <action selector=\"pasteRuler:\" target=\"Ady-hI-5gd\" id=\"cSh-wd-qM2\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                </items>\n                                            </menu>\n                                        </menuItem>\n                                    </items>\n                                </menu>\n                            </menuItem>\n                            <menuItem title=\"View\" id=\"H8h-7b-M4v\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <menu key=\"submenu\" title=\"View\" id=\"HyV-fh-RgO\">\n                                    <items>\n                                        <menuItem title=\"Show Toolbar\" keyEquivalent=\"t\" id=\"snW-S8-Cw5\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\" option=\"YES\" command=\"YES\"/>\n                                            <connections>\n                                                <action selector=\"toggleToolbarShown:\" target=\"Ady-hI-5gd\" id=\"BXY-wc-z0C\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Customize Toolbar…\" id=\"1UK-8n-QPP\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"runToolbarCustomizationPalette:\" target=\"Ady-hI-5gd\" id=\"pQI-g3-MTW\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem isSeparatorItem=\"YES\" id=\"hB3-LF-h0Y\"/>\n                                        <menuItem title=\"Show Sidebar\" keyEquivalent=\"s\" id=\"kIP-vf-haE\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\" control=\"YES\" command=\"YES\"/>\n                                            <connections>\n                                                <action selector=\"toggleSourceList:\" target=\"Ady-hI-5gd\" id=\"iwa-gc-5KM\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Enter Full Screen\" keyEquivalent=\"f\" id=\"4J7-dP-txa\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\" control=\"YES\" command=\"YES\"/>\n                                            <connections>\n                                                <action selector=\"toggleFullScreen:\" target=\"Ady-hI-5gd\" id=\"dU3-MA-1Rq\"/>\n                                            </connections>\n                                        </menuItem>\n                                    </items>\n                                </menu>\n                            </menuItem>\n                            <menuItem title=\"Window\" id=\"aUF-d1-5bR\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <menu key=\"submenu\" title=\"Window\" systemMenu=\"window\" id=\"Td7-aD-5lo\">\n                                    <items>\n                                        <menuItem title=\"Minimize\" keyEquivalent=\"m\" id=\"OY7-WF-poV\">\n                                            <connections>\n                                                <action selector=\"performMiniaturize:\" target=\"Ady-hI-5gd\" id=\"VwT-WD-YPe\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Zoom\" id=\"R4o-n2-Eq4\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"performZoom:\" target=\"Ady-hI-5gd\" id=\"DIl-cC-cCs\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem isSeparatorItem=\"YES\" id=\"eu3-7i-yIM\"/>\n                                        <menuItem title=\"Bring All to Front\" id=\"LE2-aR-0XJ\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"arrangeInFront:\" target=\"Ady-hI-5gd\" id=\"DRN-fu-gQh\"/>\n                                            </connections>\n                                        </menuItem>\n                                    </items>\n                                </menu>\n                            </menuItem>\n                            <menuItem title=\"Help\" id=\"wpr-3q-Mcd\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <menu key=\"submenu\" title=\"Help\" systemMenu=\"help\" id=\"F2S-fz-NVQ\">\n                                    <items>\n                                        <menuItem title=\"PersistentStorageSerializable_MacExample Help\" keyEquivalent=\"?\" id=\"FKE-Sm-Kum\">\n                                            <connections>\n                                                <action selector=\"showHelp:\" target=\"Ady-hI-5gd\" id=\"y7X-2Q-9no\"/>\n                                            </connections>\n                                        </menuItem>\n                                    </items>\n                                </menu>\n                            </menuItem>\n                        </items>\n                    </menu>\n                    <connections>\n                        <outlet property=\"delegate\" destination=\"Voe-Tx-rLC\" id=\"PrD-fu-P6m\"/>\n                    </connections>\n                </application>\n                <customObject id=\"Voe-Tx-rLC\" customClass=\"AppDelegate\" customModule=\"PersistentStorageSerializable_MacExample\" customModuleProvider=\"target\"/>\n                <customObject id=\"Ady-hI-5gd\" userLabel=\"First Responder\" customClass=\"NSResponder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"75\" y=\"0.0\"/>\n        </scene>\n        <!--Window Controller-->\n        <scene sceneID=\"R2V-B0-nI4\">\n            <objects>\n                <windowController id=\"B8D-0N-5wS\" sceneMemberID=\"viewController\">\n                    <window key=\"window\" title=\"Window\" allowsToolTipsWhenApplicationIsInactive=\"NO\" autorecalculatesKeyViewLoop=\"NO\" restorable=\"NO\" oneShot=\"NO\" releasedWhenClosed=\"NO\" showsToolbarButton=\"NO\" animationBehavior=\"default\" id=\"IQv-IB-iLA\">\n                        <windowStyleMask key=\"styleMask\" titled=\"YES\" closable=\"YES\" miniaturizable=\"YES\"/>\n                        <windowPositionMask key=\"initialPositionMask\" leftStrut=\"YES\" rightStrut=\"YES\" topStrut=\"YES\" bottomStrut=\"YES\"/>\n                        <rect key=\"contentRect\" x=\"196\" y=\"240\" width=\"480\" height=\"270\"/>\n                        <rect key=\"screenRect\" x=\"0.0\" y=\"0.0\" width=\"1680\" height=\"1027\"/>\n                    </window>\n                    <connections>\n                        <segue destination=\"XfG-lQ-9wD\" kind=\"relationship\" relationship=\"window.shadowedContentViewController\" id=\"cq2-FE-JQM\"/>\n                    </connections>\n                </windowController>\n                <customObject id=\"Oky-zY-oP4\" userLabel=\"First Responder\" customClass=\"NSResponder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"75\" y=\"250\"/>\n        </scene>\n        <!--View Controller-->\n        <scene sceneID=\"hIz-AP-VOD\">\n            <objects>\n                <viewController id=\"XfG-lQ-9wD\" customClass=\"ViewController\" customModule=\"PersistentStorageSerializable_MacExample\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" wantsLayer=\"YES\" id=\"m2S-Jp-Qdl\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"480\" height=\"272\"/>\n                        <autoresizingMask key=\"autoresizingMask\"/>\n                        <subviews>\n                            <box title=\"App Settings\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Ke3-r6-R4y\">\n                                <rect key=\"frame\" x=\"17\" y=\"95\" width=\"446\" height=\"157\"/>\n                                <view key=\"contentView\" id=\"KuP-us-3IV\">\n                                    <rect key=\"frame\" x=\"2\" y=\"2\" width=\"442\" height=\"140\"/>\n                                    <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                                    <subviews>\n                                        <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"20\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"YT1-zP-ni8\">\n                                            <rect key=\"frame\" x=\"80\" y=\"17\" width=\"283\" height=\"107\"/>\n                                            <subviews>\n                                                <stackView distribution=\"fillEqually\" orientation=\"vertical\" alignment=\"leading\" spacing=\"20\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"ksL-P2-hec\">\n                                                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"200\" height=\"107\"/>\n                                                    <subviews>\n                                                        <button translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"AZZ-OG-kSm\">\n                                                            <rect key=\"frame\" x=\"-2\" y=\"83\" width=\"48\" height=\"26\"/>\n                                                            <buttonCell key=\"cell\" type=\"check\" title=\"Flag\" bezelStyle=\"regularSquare\" imagePosition=\"left\" state=\"on\" inset=\"2\" id=\"TbI-UQ-dlP\">\n                                                                <behavior key=\"behavior\" changeContents=\"YES\" doesNotDimImage=\"YES\" lightByContents=\"YES\"/>\n                                                                <font key=\"font\" metaFont=\"system\"/>\n                                                            </buttonCell>\n                                                            <connections>\n                                                                <binding destination=\"XfG-lQ-9wD\" name=\"value\" keyPath=\"settings.flag\" id=\"VDr-nL-cIG\"/>\n                                                            </connections>\n                                                        </button>\n                                                        <textField verticalHuggingPriority=\"750\" allowsCharacterPickerTouchBarItem=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"aLb-Pm-WKj\">\n                                                            <rect key=\"frame\" x=\"0.0\" y=\"43\" width=\"200\" height=\"22\"/>\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"width\" constant=\"200\" id=\"aOP-PA-aU6\"/>\n                                                            </constraints>\n                                                            <textFieldCell key=\"cell\" scrollable=\"YES\" lineBreakMode=\"clipping\" selectable=\"YES\" editable=\"YES\" sendsActionOnEndEditing=\"YES\" state=\"on\" borderStyle=\"bezel\" placeholderString=\"Title\" drawsBackground=\"YES\" id=\"D8l-pO-Fr8\">\n                                                                <font key=\"font\" metaFont=\"system\"/>\n                                                                <color key=\"textColor\" name=\"textColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                            </textFieldCell>\n                                                            <connections>\n                                                                <binding destination=\"XfG-lQ-9wD\" name=\"value\" keyPath=\"settings.title\" id=\"xNB-Kk-mNW\"/>\n                                                            </connections>\n                                                        </textField>\n                                                        <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"oD8-bI-J75\">\n                                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"200\" height=\"23\"/>\n                                                            <subviews>\n                                                                <textField verticalHuggingPriority=\"750\" allowsCharacterPickerTouchBarItem=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Ns9-dQ-V8o\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"1\" width=\"179\" height=\"22\"/>\n                                                                    <textFieldCell key=\"cell\" scrollable=\"YES\" lineBreakMode=\"clipping\" selectable=\"YES\" editable=\"YES\" sendsActionOnEndEditing=\"YES\" state=\"on\" borderStyle=\"bezel\" placeholderString=\"Number\" drawsBackground=\"YES\" id=\"5e0-yx-V6I\">\n                                                                        <numberFormatter key=\"formatter\" formatterBehavior=\"custom10_4\" positiveFormat=\"0\" negativeFormat=\"-0\" numberStyle=\"decimal\" usesGroupingSeparator=\"NO\" groupingSize=\"0\" minimumIntegerDigits=\"1\" maximumIntegerDigits=\"2000000000\" nilSymbol=\"0\" id=\"j29-BL-cb2\"/>\n                                                                        <font key=\"font\" metaFont=\"system\"/>\n                                                                        <color key=\"textColor\" name=\"textColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                        <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                    </textFieldCell>\n                                                                    <connections>\n                                                                        <binding destination=\"XfG-lQ-9wD\" name=\"value\" keyPath=\"settings.number\" id=\"fxf-7a-O4i\"/>\n                                                                    </connections>\n                                                                </textField>\n                                                                <stepper horizontalHuggingPriority=\"750\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"hLE-es-U7d\">\n                                                                    <rect key=\"frame\" x=\"184\" y=\"-2\" width=\"19\" height=\"27\"/>\n                                                                    <stepperCell key=\"cell\" continuous=\"YES\" alignment=\"left\" minValue=\"-100\" maxValue=\"100\" valueWraps=\"YES\" id=\"nmJ-HV-dDe\"/>\n                                                                    <connections>\n                                                                        <binding destination=\"XfG-lQ-9wD\" name=\"value\" keyPath=\"settings.number\" id=\"4gM-zL-ztI\"/>\n                                                                    </connections>\n                                                                </stepper>\n                                                            </subviews>\n                                                            <visibilityPriorities>\n                                                                <integer value=\"1000\"/>\n                                                                <integer value=\"1000\"/>\n                                                            </visibilityPriorities>\n                                                            <customSpacing>\n                                                                <real value=\"3.4028234663852886e+38\"/>\n                                                                <real value=\"3.4028234663852886e+38\"/>\n                                                            </customSpacing>\n                                                        </stackView>\n                                                    </subviews>\n                                                    <visibilityPriorities>\n                                                        <integer value=\"1000\"/>\n                                                        <integer value=\"1000\"/>\n                                                        <integer value=\"1000\"/>\n                                                    </visibilityPriorities>\n                                                    <customSpacing>\n                                                        <real value=\"3.4028234663852886e+38\"/>\n                                                        <real value=\"3.4028234663852886e+38\"/>\n                                                        <real value=\"3.4028234663852886e+38\"/>\n                                                    </customSpacing>\n                                                </stackView>\n                                                <stackView distribution=\"fill\" orientation=\"vertical\" alignment=\"centerX\" spacing=\"20\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"ao3-Zd-aBL\">\n                                                    <rect key=\"frame\" x=\"220\" y=\"2\" width=\"63\" height=\"103\"/>\n                                                    <subviews>\n                                                        <button verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"v3x-SO-TVd\">\n                                                            <rect key=\"frame\" x=\"-6\" y=\"75\" width=\"75\" height=\"32\"/>\n                                                            <buttonCell key=\"cell\" type=\"push\" title=\"Save\" bezelStyle=\"rounded\" alignment=\"center\" borderStyle=\"border\" imageScaling=\"proportionallyDown\" inset=\"2\" id=\"EiQ-e0-wlA\">\n                                                                <behavior key=\"behavior\" pushIn=\"YES\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                                <font key=\"font\" metaFont=\"system\"/>\n                                                            </buttonCell>\n                                                            <connections>\n                                                                <action selector=\"save:\" target=\"XfG-lQ-9wD\" id=\"s3y-cu-GcR\"/>\n                                                            </connections>\n                                                        </button>\n                                                        <button verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"NSz-5G-a6c\">\n                                                            <rect key=\"frame\" x=\"-6\" y=\"34\" width=\"75\" height=\"32\"/>\n                                                            <buttonCell key=\"cell\" type=\"push\" title=\"Load\" bezelStyle=\"rounded\" alignment=\"center\" borderStyle=\"border\" imageScaling=\"proportionallyDown\" inset=\"2\" id=\"Vir-7Y-bUS\">\n                                                                <behavior key=\"behavior\" pushIn=\"YES\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                                <font key=\"font\" metaFont=\"system\"/>\n                                                            </buttonCell>\n                                                            <connections>\n                                                                <action selector=\"load:\" target=\"XfG-lQ-9wD\" id=\"eRx-B7-jqi\"/>\n                                                            </connections>\n                                                        </button>\n                                                        <button verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Jdm-Y3-fXK\">\n                                                            <rect key=\"frame\" x=\"-6\" y=\"-7\" width=\"75\" height=\"32\"/>\n                                                            <buttonCell key=\"cell\" type=\"push\" title=\"Reset\" bezelStyle=\"rounded\" alignment=\"center\" borderStyle=\"border\" imageScaling=\"proportionallyDown\" inset=\"2\" id=\"6Dk-Jl-HcY\">\n                                                                <behavior key=\"behavior\" pushIn=\"YES\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                                <font key=\"font\" metaFont=\"system\"/>\n                                                            </buttonCell>\n                                                            <connections>\n                                                                <action selector=\"reset:\" target=\"XfG-lQ-9wD\" id=\"v1g-IF-3fd\"/>\n                                                            </connections>\n                                                        </button>\n                                                    </subviews>\n                                                    <constraints>\n                                                        <constraint firstItem=\"NSz-5G-a6c\" firstAttribute=\"width\" secondItem=\"v3x-SO-TVd\" secondAttribute=\"width\" id=\"aOi-8W-RuN\"/>\n                                                        <constraint firstItem=\"Jdm-Y3-fXK\" firstAttribute=\"width\" secondItem=\"v3x-SO-TVd\" secondAttribute=\"width\" id=\"dG9-bK-VdK\"/>\n                                                    </constraints>\n                                                    <visibilityPriorities>\n                                                        <integer value=\"1000\"/>\n                                                        <integer value=\"1000\"/>\n                                                        <integer value=\"1000\"/>\n                                                    </visibilityPriorities>\n                                                    <customSpacing>\n                                                        <real value=\"3.4028234663852886e+38\"/>\n                                                        <real value=\"3.4028234663852886e+38\"/>\n                                                        <real value=\"3.4028234663852886e+38\"/>\n                                                    </customSpacing>\n                                                </stackView>\n                                            </subviews>\n                                            <visibilityPriorities>\n                                                <integer value=\"1000\"/>\n                                                <integer value=\"1000\"/>\n                                            </visibilityPriorities>\n                                            <customSpacing>\n                                                <real value=\"3.4028234663852886e+38\"/>\n                                                <real value=\"3.4028234663852886e+38\"/>\n                                            </customSpacing>\n                                        </stackView>\n                                    </subviews>\n                                    <constraints>\n                                        <constraint firstItem=\"YT1-zP-ni8\" firstAttribute=\"centerX\" secondItem=\"KuP-us-3IV\" secondAttribute=\"centerX\" id=\"VKu-F6-ZrP\"/>\n                                        <constraint firstItem=\"YT1-zP-ni8\" firstAttribute=\"centerY\" secondItem=\"KuP-us-3IV\" secondAttribute=\"centerY\" id=\"wi2-cA-pxl\"/>\n                                    </constraints>\n                                </view>\n                            </box>\n                            <box title=\"User Defaults\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"w6P-UF-nor\">\n                                <rect key=\"frame\" x=\"17\" y=\"10\" width=\"446\" height=\"81\"/>\n                                <view key=\"contentView\" id=\"tbt-ie-2R1\">\n                                    <rect key=\"frame\" x=\"2\" y=\"2\" width=\"442\" height=\"64\"/>\n                                    <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                                    <subviews>\n                                        <textField verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"250\" allowsCharacterPickerTouchBarItem=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"GyS-T1-dNC\">\n                                            <rect key=\"frame\" x=\"8\" y=\"8\" width=\"426\" height=\"48\"/>\n                                            <textFieldCell key=\"cell\" controlSize=\"mini\" sendsActionOnEndEditing=\"YES\" id=\"H6V-1L-uTa\">\n                                                <font key=\"font\" metaFont=\"system\"/>\n                                                <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                <color key=\"backgroundColor\" name=\"controlColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                            </textFieldCell>\n                                        </textField>\n                                    </subviews>\n                                    <constraints>\n                                        <constraint firstItem=\"GyS-T1-dNC\" firstAttribute=\"leading\" secondItem=\"tbt-ie-2R1\" secondAttribute=\"leading\" constant=\"10\" id=\"6te-H7-W0h\"/>\n                                        <constraint firstItem=\"GyS-T1-dNC\" firstAttribute=\"top\" secondItem=\"tbt-ie-2R1\" secondAttribute=\"top\" constant=\"8\" id=\"Q4v-6q-pm9\"/>\n                                        <constraint firstAttribute=\"bottom\" secondItem=\"GyS-T1-dNC\" secondAttribute=\"bottom\" constant=\"8\" id=\"ZQC-Wb-tKB\"/>\n                                        <constraint firstAttribute=\"trailing\" secondItem=\"GyS-T1-dNC\" secondAttribute=\"trailing\" constant=\"10\" id=\"fbQ-CJ-7op\"/>\n                                    </constraints>\n                                </view>\n                                <constraints>\n                                    <constraint firstAttribute=\"height\" relation=\"greaterThanOrEqual\" constant=\"77\" id=\"6i3-F8-Cmn\"/>\n                                </constraints>\n                            </box>\n                        </subviews>\n                        <constraints>\n                            <constraint firstItem=\"Ke3-r6-R4y\" firstAttribute=\"top\" secondItem=\"m2S-Jp-Qdl\" secondAttribute=\"top\" constant=\"20\" id=\"PjX-cN-l9U\"/>\n                            <constraint firstItem=\"Ke3-r6-R4y\" firstAttribute=\"leading\" secondItem=\"m2S-Jp-Qdl\" secondAttribute=\"leading\" constant=\"20\" id=\"RSe-BG-93A\"/>\n                            <constraint firstItem=\"w6P-UF-nor\" firstAttribute=\"leading\" secondItem=\"m2S-Jp-Qdl\" secondAttribute=\"leading\" constant=\"20\" id=\"Sh8-cl-yv7\"/>\n                            <constraint firstAttribute=\"trailing\" secondItem=\"Ke3-r6-R4y\" secondAttribute=\"trailing\" constant=\"20\" id=\"a9A-Af-nyj\"/>\n                            <constraint firstAttribute=\"bottom\" secondItem=\"w6P-UF-nor\" secondAttribute=\"bottom\" constant=\"14\" id=\"bhX-9O-0r1\"/>\n                            <constraint firstAttribute=\"trailing\" secondItem=\"w6P-UF-nor\" secondAttribute=\"trailing\" constant=\"20\" id=\"rdV-bh-cA2\"/>\n                            <constraint firstItem=\"w6P-UF-nor\" firstAttribute=\"top\" secondItem=\"Ke3-r6-R4y\" secondAttribute=\"bottom\" constant=\"8\" id=\"yXg-4v-DPO\"/>\n                        </constraints>\n                    </view>\n                    <connections>\n                        <outlet property=\"userDefaultsText\" destination=\"GyS-T1-dNC\" id=\"Urm-QW-ae0\"/>\n                    </connections>\n                </viewController>\n                <customObject id=\"rPt-NT-nkU\" userLabel=\"First Responder\" customClass=\"NSResponder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"75\" y=\"698\"/>\n        </scene>\n    </scenes>\n</document>\n"
  },
  {
    "path": "Example/PersistentStorageSerializable_MacExample/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>en</string>\n\t<key>CFBundleExecutable</key>\n\t<string>$(EXECUTABLE_NAME)</string>\n\t<key>CFBundleIconFile</key>\n\t<string></string>\n\t<key>CFBundleIdentifier</key>\n\t<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundleName</key>\n\t<string>$(PRODUCT_NAME)</string>\n\t<key>CFBundlePackageType</key>\n\t<string>APPL</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>1.0</string>\n\t<key>CFBundleVersion</key>\n\t<string>1</string>\n\t<key>LSMinimumSystemVersion</key>\n\t<string>$(MACOSX_DEPLOYMENT_TARGET)</string>\n\t<key>NSHumanReadableCopyright</key>\n\t<string>Copyright © 2017 CocoaPods. All rights reserved.</string>\n\t<key>NSMainStoryboardFile</key>\n\t<string>Main</string>\n\t<key>NSPrincipalClass</key>\n\t<string>NSApplication</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/PersistentStorageSerializable_MacExample/ViewController.swift",
    "content": "//\n//  ViewController.swift\n//  PersistentStorageSerializable_MacExample\n//\n//  Created by Ivan Rublev on 4/6/17.\n//  Copyright © 2017 CocoaPods. All rights reserved.\n//\n\nimport Cocoa\n\nclass ViewController: NSViewController {\n    @IBOutlet var userDefaultsText: NSTextField!\n\n    dynamic var settings = AppSettings()\n    \n    override func viewDidLoad() {\n        super.viewDidLoad()\n        load(0)\n    }\n\n    func updateUserDefaultsText() {\n        userDefaultsText.stringValue = try! String(describing: settings.persistedDictionaryRepresentation())\n    }\n    \n    @IBAction func load(_ sender: Any) {\n        view.window?.makeFirstResponder(nil)\n        var loadedSettings = AppSettings()\n        try! loadedSettings.pullFromPersistentStorage()\n        settings = loadedSettings\n        updateUserDefaultsText()\n    }\n\n    @IBAction func save(_ sender: Any) {\n        view.window?.makeFirstResponder(nil)\n        try! settings.pushToPersistentStorage()\n        updateUserDefaultsText()\n    }\n\n    @IBAction func reset(_ sender: Any) {\n        view.window?.makeFirstResponder(nil)\n        try! settings.removeFromPersistentStorage()\n        updateUserDefaultsText()\n    }\n\n}\n"
  },
  {
    "path": "Example/Podfile",
    "content": "use_frameworks!\n\ntarget 'PersistentStorageSerializable_iOSExample' do\n  platform :ios, '9.0'\n  pod 'PersistentStorageSerializable', :path => '../'\nend\n\ntarget 'PersistentStorageSerializable_Tests' do\n    platform :ios, '9.0'\n    pod 'PersistentStorageSerializable', :path => '../'\n    pod 'Quick', '~> 1.0.0'\n    pod 'Nimble', '~> 5.1.1'\nend\n\ntarget 'PersistentStorageSerializable_MacExample' do\n    platform :osx, '10.11'\n    pod 'PersistentStorageSerializable', :path => '../'\nend\n"
  },
  {
    "path": "Example/Pods/Local Podspecs/PersistentStorageSerializable.podspec.json",
    "content": "{\n  \"name\": \"PersistentStorageSerializable\",\n  \"version\": \"1.1.0\",\n  \"summary\": \"Bunch of protocols to make a class or structure to be serializable to persistent system storage like UserDefaults or Keychain. Useful to store app configuration or settings.\",\n  \"description\": \"Number of protocols from this pod helps to serialize swift class or structure to persistent storage like User Defaults or Keychain. The class/structure must contain properties of simple data type only. These types are: Data, String, Int, Float, Double, Bool, URL, Date, Array, or Dictionary<String, *>.\\nAdopt the PersistentStorageSerializable protocol from your struct. Then call pullFromUserDefaults() or  pushToUserDefaults() on instance of your struct.\",\n  \"homepage\": \"https://github.com/IvanRublev/PersistentStorageSerializable\",\n  \"license\": {\n    \"type\": \"MIT\",\n    \"file\": \"LICENSE\"\n  },\n  \"authors\": {\n    \"IvanRublev\": \"ivan@ivanrublev.me\"\n  },\n  \"source\": {\n    \"git\": \"https://github.com/IvanRublev/PersistentStorageSerializable.git\",\n    \"tag\": \"1.1.0\"\n  },\n  \"platforms\": {\n    \"ios\": \"9.0\",\n    \"osx\": \"10.11\"\n  },\n  \"source_files\": \"PersistentStorageSerializable/Classes/**/*\",\n  \"frameworks\": \"Foundation\",\n  \"dependencies\": {\n    \"Reflection\": [\n      \"~> 0.14\"\n    ]\n  }\n}\n"
  },
  {
    "path": "Example/Pods/Manifest.lock",
    "content": "PODS:\n  - Nimble (5.1.1)\n  - PersistentStorageSerializable (1.1.0):\n    - Reflection (~> 0.14)\n  - Quick (1.0.0)\n  - Reflection (0.14.3)\n\nDEPENDENCIES:\n  - Nimble (~> 5.1.1)\n  - PersistentStorageSerializable (from `../`)\n  - Quick (~> 1.0.0)\n\nEXTERNAL SOURCES:\n  PersistentStorageSerializable:\n    :path: \"../\"\n\nSPEC CHECKSUMS:\n  Nimble: 415e3aa3267e7bc2c96b05fa814ddea7bb686a29\n  PersistentStorageSerializable: d941980a136f85a546b3378c6228526ad4fd7d51\n  Quick: 8024e4a47e6cc03a9d5245ef0948264fc6d27cff\n  Reflection: 93327e50981227ac33c18274fcbaed33b1127811\n\nPODFILE CHECKSUM: 1725b222e0b97edb7fa20facee56f57f70eaa39d\n\nCOCOAPODS: 1.1.1\n"
  },
  {
    "path": "Example/Pods/Nimble/LICENSE.md",
    "content": "Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"{}\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright 2014 Quick Team\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n"
  },
  {
    "path": "Example/Pods/Nimble/README.md",
    "content": "# Nimble\n\nUse Nimble to express the expected outcomes of Swift\nor Objective-C expressions. Inspired by\n[Cedar](https://github.com/pivotal/cedar).\n\n```swift\n// Swift\nexpect(1 + 1).to(equal(2))\nexpect(1.2).to(beCloseTo(1.1, within: 0.1))\nexpect(3) > 2\nexpect(\"seahorse\").to(contain(\"sea\"))\nexpect([\"Atlantic\", \"Pacific\"]).toNot(contain(\"Mississippi\"))\nexpect(ocean.isClean).toEventually(beTruthy())\n```\n\n# How to Use Nimble\n\n<!-- START doctoc generated TOC please keep comment here to allow auto update -->\n<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->\n**Table of Contents**  *generated with [DocToc](https://github.com/thlorenz/doctoc)*\n\n- [Some Background: Expressing Outcomes Using Assertions in XCTest](#some-background-expressing-outcomes-using-assertions-in-xctest)\n- [Nimble: Expectations Using `expect(...).to`](#nimble-expectations-using-expectto)\n  - [Custom Failure Messages](#custom-failure-messages)\n  - [Type Checking](#type-checking)\n  - [Operator Overloads](#operator-overloads)\n  - [Lazily Computed Values](#lazily-computed-values)\n  - [C Primitives](#c-primitives)\n  - [Asynchronous Expectations](#asynchronous-expectations)\n  - [Objective-C Support](#objective-c-support)\n  - [Disabling Objective-C Shorthand](#disabling-objective-c-shorthand)\n- [Built-in Matcher Functions](#built-in-matcher-functions)\n  - [Equivalence](#equivalence)\n  - [Identity](#identity)\n  - [Comparisons](#comparisons)\n  - [Types/Classes](#typesclasses)\n  - [Truthiness](#truthiness)\n  - [Swift Assertions](#swift-assertions)\n  - [Swift Error Handling](#swift-error-handling)\n  - [Exceptions](#exceptions)\n  - [Collection Membership](#collection-membership)\n  - [Strings](#strings)\n  - [Checking if all elements of a collection pass a condition](#checking-if-all-elements-of-a-collection-pass-a-condition)\n  - [Verify collection count](#verify-collection-count)\n  - [Verify a notification was posted](#verifying-a-notification-was-posted)\n  - [Matching a value to any of a group of matchers](#matching-a-value-to-any-of-a-group-of-matchers)\n- [Writing Your Own Matchers](#writing-your-own-matchers)\n  - [Lazy Evaluation](#lazy-evaluation)\n  - [Type Checking via Swift Generics](#type-checking-via-swift-generics)\n  - [Customizing Failure Messages](#customizing-failure-messages)\n  - [Supporting Objective-C](#supporting-objective-c)\n    - [Properly Handling `nil` in Objective-C Matchers](#properly-handling-nil-in-objective-c-matchers)\n- [Installing Nimble](#installing-nimble)\n  - [Installing Nimble as a Submodule](#installing-nimble-as-a-submodule)\n  - [Installing Nimble via CocoaPods](#installing-nimble-via-cocoapods)\n  - [Using Nimble without XCTest](#using-nimble-without-xctest)\n\n<!-- END doctoc generated TOC please keep comment here to allow auto update -->\n\n# Some Background: Expressing Outcomes Using Assertions in XCTest\n\nApple's Xcode includes the XCTest framework, which provides\nassertion macros to test whether code behaves properly.\nFor example, to assert that `1 + 1 = 2`, XCTest has you write:\n\n```swift\n// Swift\n\nXCTAssertEqual(1 + 1, 2, \"expected one plus one to equal two\")\n```\n\nOr, in Objective-C:\n\n```objc\n// Objective-C\n\nXCTAssertEqual(1 + 1, 2, @\"expected one plus one to equal two\");\n```\n\nXCTest assertions have a couple of drawbacks:\n\n1. **Not enough macros.** There's no easy way to assert that a string\n   contains a particular substring, or that a number is less than or\n   equal to another.\n2. **It's hard to write asynchronous tests.** XCTest forces you to write\n   a lot of boilerplate code.\n\nNimble addresses these concerns.\n\n# Nimble: Expectations Using `expect(...).to`\n\nNimble allows you to express expectations using a natural,\neasily understood language:\n\n```swift\n// Swift\n\nimport Nimble\n\nexpect(seagull.squawk).to(equal(\"Squee!\"))\n```\n\n```objc\n// Objective-C\n\n@import Nimble;\n\nexpect(seagull.squawk).to(equal(@\"Squee!\"));\n```\n\n> The `expect` function autocompletes to include `file:` and `line:`,\n  but these parameters are optional. Use the default values to have\n  Xcode highlight the correct line when an expectation is not met.\n\nTo perform the opposite expectation--to assert something is *not*\nequal--use `toNot` or `notTo`:\n\n```swift\n// Swift\n\nimport Nimble\n\nexpect(seagull.squawk).toNot(equal(\"Oh, hello there!\"))\nexpect(seagull.squawk).notTo(equal(\"Oh, hello there!\"))\n```\n\n```objc\n// Objective-C\n\n@import Nimble;\n\nexpect(seagull.squawk).toNot(equal(@\"Oh, hello there!\"));\nexpect(seagull.squawk).notTo(equal(@\"Oh, hello there!\"));\n```\n\n## Custom Failure Messages\n\nWould you like to add more information to the test's failure messages? Use the `description` optional argument to add your own text:\n\n```swift\n// Swift\n\nexpect(1 + 1).to(equal(3))\n// failed - expected to equal <3>, got <2>\n\nexpect(1 + 1).to(equal(3), description: \"Make sure libKindergartenMath is loaded\")\n// failed - Make sure libKindergartenMath is loaded\n// expected to equal <3>, got <2>\n```\n\nOr the *WithDescription version in Objective-C:\n\n```objc\n// Objective-C\n\n@import Nimble;\n\nexpect(@(1+1)).to(equal(@3));\n// failed - expected to equal <3.0000>, got <2.0000>\n\nexpect(@(1+1)).toWithDescription(equal(@3), @\"Make sure libKindergartenMath is loaded\");\n// failed - Make sure libKindergartenMath is loaded\n// expected to equal <3.0000>, got <2.0000>\n```\n\n## Type Checking\n\nNimble makes sure you don't compare two types that don't match:\n\n```swift\n// Swift\n\n// Does not compile:\nexpect(1 + 1).to(equal(\"Squee!\"))\n```\n\n> Nimble uses generics--only available in Swift--to ensure\n  type correctness. That means type checking is\n  not available when using Nimble in Objective-C. :sob:\n\n## Operator Overloads\n\nTired of so much typing? With Nimble, you can use overloaded operators\nlike `==` for equivalence, or `>` for comparisons:\n\n```swift\n// Swift\n\n// Passes if squawk does not equal \"Hi!\":\nexpect(seagull.squawk) != \"Hi!\"\n\n// Passes if 10 is greater than 2:\nexpect(10) > 2\n```\n\n> Operator overloads are only available in Swift, so you won't be able\n  to use this syntax in Objective-C. :broken_heart:\n\n## Lazily Computed Values\n\nThe `expect` function doesn't evaluate the value it's given until it's\ntime to match. So Nimble can test whether an expression raises an\nexception once evaluated:\n\n```swift\n// Swift\n\n// Note: Swift currently doesn't have exceptions.\n//       Only Objective-C code can raise exceptions\n//       that Nimble will catch.\n//       (see https://github.com/Quick/Nimble/issues/220#issuecomment-172667064)\nlet exception = NSException(\n  name: NSInternalInconsistencyException,\n  reason: \"Not enough fish in the sea.\",\n  userInfo: [\"something\": \"is fishy\"])\nexpect { exception.raise() }.to(raiseException())\n\n// Also, you can customize raiseException to be more specific\nexpect { exception.raise() }.to(raiseException(named: NSInternalInconsistencyException))\nexpect { exception.raise() }.to(raiseException(\n    named: NSInternalInconsistencyException,\n    reason: \"Not enough fish in the sea\"))\nexpect { exception.raise() }.to(raiseException(\n    named: NSInternalInconsistencyException,\n    reason: \"Not enough fish in the sea\",\n    userInfo: [\"something\": \"is fishy\"]))\n```\n\nObjective-C works the same way, but you must use the `expectAction`\nmacro when making an expectation on an expression that has no return\nvalue:\n\n```objc\n// Objective-C\n\nNSException *exception = [NSException exceptionWithName:NSInternalInconsistencyException\n                                                 reason:@\"Not enough fish in the sea.\"\n                                               userInfo:nil];\nexpectAction(^{ [exception raise]; }).to(raiseException());\n\n// Use the property-block syntax to be more specific.\nexpectAction(^{ [exception raise]; }).to(raiseException().named(NSInternalInconsistencyException));\nexpectAction(^{ [exception raise]; }).to(raiseException().\n    named(NSInternalInconsistencyException).\n    reason(\"Not enough fish in the sea\"));\nexpectAction(^{ [exception raise]; }).to(raiseException().\n    named(NSInternalInconsistencyException).\n    reason(\"Not enough fish in the sea\").\n    userInfo(@{@\"something\": @\"is fishy\"}));\n\n// You can also pass a block for custom matching of the raised exception\nexpectAction(exception.raise()).to(raiseException().satisfyingBlock(^(NSException *exception) {\n    expect(exception.name).to(beginWith(NSInternalInconsistencyException));\n}));\n```\n\n## C Primitives\n\nSome testing frameworks make it hard to test primitive C values.\nIn Nimble, it just works:\n\n```swift\n// Swift\n\nlet actual: CInt = 1\nlet expectedValue: CInt = 1\nexpect(actual).to(equal(expectedValue))\n```\n\nIn fact, Nimble uses type inference, so you can write the above\nwithout explicitly specifying both types:\n\n```swift\n// Swift\n\nexpect(1 as CInt).to(equal(1))\n```\n\n> In Objective-C, Nimble only supports Objective-C objects. To\n  make expectations on primitive C values, wrap then in an object\n  literal:\n\n  ```objc\n  expect(@(1 + 1)).to(equal(@2));\n  ```\n\n## Asynchronous Expectations\n\nIn Nimble, it's easy to make expectations on values that are updated\nasynchronously. Just use `toEventually` or `toEventuallyNot`:\n\n```swift\n// Swift\n\ndispatch_async(dispatch_get_main_queue()) {\n  ocean.add(\"dolphins\")\n  ocean.add(\"whales\")\n}\nexpect(ocean).toEventually(contain(\"dolphins\", \"whales\"))\n```\n\n\n```objc\n// Objective-C\ndispatch_async(dispatch_get_main_queue(), ^{\n  [ocean add:@\"dolphins\"];\n  [ocean add:@\"whales\"];\n});\nexpect(ocean).toEventually(contain(@\"dolphins\", @\"whales\"));\n```\n\nNote: toEventually triggers its polls on the main thread. Blocking the main\nthread will cause Nimble to stop the run loop. This can cause test pollution\nfor whatever incomplete code that was running on the main thread.  Blocking the\nmain thread can be caused by blocking IO, calls to sleep(), deadlocks, and\nsynchronous IPC.\n\nIn the above example, `ocean` is constantly re-evaluated. If it ever\ncontains dolphins and whales, the expectation passes. If `ocean` still\ndoesn't contain them, even after being continuously re-evaluated for one\nwhole second, the expectation fails.\n\nSometimes it takes more than a second for a value to update. In those\ncases, use the `timeout` parameter:\n\n```swift\n// Swift\n\n// Waits three seconds for ocean to contain \"starfish\":\nexpect(ocean).toEventually(contain(\"starfish\"), timeout: 3)\n\n// Evaluate someValue every 0.2 seconds repeatedly until it equals 100, or fails if it timeouts after 5.5 seconds.\nexpect(someValue).toEventually(equal(100), timeout: 5.5, pollInterval: 0.2)\n```\n\n```objc\n// Objective-C\n\n// Waits three seconds for ocean to contain \"starfish\":\nexpect(ocean).withTimeout(3).toEventually(contain(@\"starfish\"));\n```\n\nYou can also provide a callback by using the `waitUntil` function:\n\n```swift\n// Swift\n\nwaitUntil { done in\n  // do some stuff that takes a while...\n  NSThread.sleepForTimeInterval(0.5)\n  done()\n}\n```\n\n```objc\n// Objective-C\n\nwaitUntil(^(void (^done)(void)){\n  // do some stuff that takes a while...\n  [NSThread sleepForTimeInterval:0.5];\n  done();\n});\n```\n\n`waitUntil` also optionally takes a timeout parameter:\n\n```swift\n// Swift\n\nwaitUntil(timeout: 10) { done in\n  // do some stuff that takes a while...\n  NSThread.sleepForTimeInterval(1)\n  done()\n}\n```\n\n```objc\n// Objective-C\n\nwaitUntilTimeout(10, ^(void (^done)(void)){\n  // do some stuff that takes a while...\n  [NSThread sleepForTimeInterval:1];\n  done();\n});\n```\n\nNote: waitUntil triggers its timeout code on the main thread. Blocking the main\nthread will cause Nimble to stop the run loop to continue. This can cause test\npollution for whatever incomplete code that was running on the main thread.\nBlocking the main thread can be caused by blocking IO, calls to sleep(),\ndeadlocks, and synchronous IPC.\n\nIn some cases (e.g. when running on slower machines) it can be useful to modify\nthe default timeout and poll interval values. This can be done as follows:\n\n```swift\n// Swift\n\n// Increase the global timeout to 5 seconds:\nNimble.AsyncDefaults.Timeout = 5\n\n// Slow the polling interval to 0.1 seconds:\nNimble.AsyncDefaults.PollInterval = 0.1\n```\n\n## Objective-C Support\n\nNimble has full support for Objective-C. However, there are two things\nto keep in mind when using Nimble in Objective-C:\n\n1. All parameters passed to the `expect` function, as well as matcher\n   functions like `equal`, must be Objective-C objects or can be converted into\n   an `NSObject` equivalent:\n\n   ```objc\n   // Objective-C\n\n   @import Nimble;\n\n   expect(@(1 + 1)).to(equal(@2));\n   expect(@\"Hello world\").to(contain(@\"world\"));\n\n   // Boxed as NSNumber *\n   expect(2).to(equal(2));\n   expect(1.2).to(beLessThan(2.0));\n   expect(true).to(beTruthy());\n\n   // Boxed as NSString *\n   expect(\"Hello world\").to(equal(\"Hello world\"));\n\n   // Boxed as NSRange\n   expect(NSMakeRange(1, 10)).to(equal(NSMakeRange(1, 10)));\n   ```\n\n2. To make an expectation on an expression that does not return a value,\n   such as `-[NSException raise]`, use `expectAction` instead of\n   `expect`:\n\n   ```objc\n   // Objective-C\n\n   expectAction(^{ [exception raise]; }).to(raiseException());\n   ```\n\nThe following types are currently converted to an `NSObject` type:\n\n - **C Numeric types** are converted to `NSNumber *`\n - `NSRange` is converted to `NSValue *`\n - `char *` is converted to `NSString *`\n\nFor the following matchers:\n\n- `equal`\n- `beGreaterThan`\n- `beGreaterThanOrEqual`\n- `beLessThan`\n- `beLessThanOrEqual`\n- `beCloseTo`\n- `beTrue`\n- `beFalse`\n- `beTruthy`\n- `beFalsy`\n- `haveCount`\n\nIf you would like to see more, [file an issue](https://github.com/Quick/Nimble/issues).\n\n## Disabling Objective-C Shorthand\n\nNimble provides a shorthand for expressing expectations using the\n`expect` function. To disable this shorthand in Objective-C, define the\n`NIMBLE_DISABLE_SHORT_SYNTAX` macro somewhere in your code before\nimporting Nimble:\n\n```objc\n#define NIMBLE_DISABLE_SHORT_SYNTAX 1\n\n@import Nimble;\n\nNMB_expect(^{ return seagull.squawk; }, __FILE__, __LINE__).to(NMB_equal(@\"Squee!\"));\n```\n\n> Disabling the shorthand is useful if you're testing functions with\n  names that conflict with Nimble functions, such as `expect` or\n  `equal`. If that's not the case, there's no point in disabling the\n  shorthand.\n\n# Built-in Matcher Functions\n\nNimble includes a wide variety of matcher functions.\n\n## Equivalence\n\n```swift\n// Swift\n\n// Passes if actual is equivalent to expected:\nexpect(actual).to(equal(expected))\nexpect(actual) == expected\n\n// Passes if actual is not equivalent to expected:\nexpect(actual).toNot(equal(expected))\nexpect(actual) != expected\n```\n\n```objc\n// Objective-C\n\n// Passes if actual is equivalent to expected:\nexpect(actual).to(equal(expected))\n\n// Passes if actual is not equivalent to expected:\nexpect(actual).toNot(equal(expected))\n```\n\nValues must be `Equatable`, `Comparable`, or subclasses of `NSObject`.\n`equal` will always fail when used to compare one or more `nil` values.\n\n## Identity\n\n```swift\n// Swift\n\n// Passes if actual has the same pointer address as expected:\nexpect(actual).to(beIdenticalTo(expected))\nexpect(actual) === expected\n\n// Passes if actual does not have the same pointer address as expected:\nexpect(actual).toNot(beIdenticalTo(expected))\nexpect(actual) !== expected\n```\n\nIts important to remember that `beIdenticalTo` only makes sense when comparing types with reference semantics, which have a notion of identity. In Swift, that means a `class`. This matcher will not work with types with value semantics such as `struct` or `enum`. If you need to compare two value types, you can either compare individual properties or if it makes sense to do so, make your type implement `Equatable` and use Nimble's equivalence matchers instead.\n\n\n```objc\n// Objective-C\n\n// Passes if actual has the same pointer address as expected:\nexpect(actual).to(beIdenticalTo(expected));\n\n// Passes if actual does not have the same pointer address as expected:\nexpect(actual).toNot(beIdenticalTo(expected));\n```\n\n## Comparisons\n\n```swift\n// Swift\n\nexpect(actual).to(beLessThan(expected))\nexpect(actual) < expected\n\nexpect(actual).to(beLessThanOrEqualTo(expected))\nexpect(actual) <= expected\n\nexpect(actual).to(beGreaterThan(expected))\nexpect(actual) > expected\n\nexpect(actual).to(beGreaterThanOrEqualTo(expected))\nexpect(actual) >= expected\n```\n\n```objc\n// Objective-C\n\nexpect(actual).to(beLessThan(expected));\nexpect(actual).to(beLessThanOrEqualTo(expected));\nexpect(actual).to(beGreaterThan(expected));\nexpect(actual).to(beGreaterThanOrEqualTo(expected));\n```\n\n> Values given to the comparison matchers above must implement\n  `Comparable`.\n\nBecause of how computers represent floating point numbers, assertions\nthat two floating point numbers be equal will sometimes fail. To express\nthat two numbers should be close to one another within a certain margin\nof error, use `beCloseTo`:\n\n```swift\n// Swift\n\nexpect(actual).to(beCloseTo(expected, within: delta))\n```\n\n```objc\n// Objective-C\n\nexpect(actual).to(beCloseTo(expected).within(delta));\n```\n\nFor example, to assert that `10.01` is close to `10`, you can write:\n\n```swift\n// Swift\n\nexpect(10.01).to(beCloseTo(10, within: 0.1))\n```\n\n```objc\n// Objective-C\n\nexpect(@(10.01)).to(beCloseTo(@10).within(0.1));\n```\n\nThere is also an operator shortcut available in Swift:\n\n```swift\n// Swift\n\nexpect(actual) ≈ expected\nexpect(actual) ≈ (expected, delta)\n\n```\n(Type Option-x to get ≈ on a U.S. keyboard)\n\nThe former version uses the default delta of 0.0001. Here is yet another way to do this:\n\n```swift\n// Swift\n\nexpect(actual) ≈ expected ± delta\nexpect(actual) == expected ± delta\n\n```\n(Type Option-Shift-= to get ± on a U.S. keyboard)\n\nIf you are comparing arrays of floating point numbers, you'll find the following useful:\n\n```swift\n// Swift\n\nexpect([0.0, 2.0]) ≈ [0.0001, 2.0001]\nexpect([0.0, 2.0]).to(beCloseTo([0.1, 2.1], within: 0.1))\n\n```\n\n> Values given to the `beCloseTo` matcher must be coercable into a\n  `Double`.\n\n## Types/Classes\n\n```swift\n// Swift\n\n// Passes if instance is an instance of aClass:\nexpect(instance).to(beAnInstanceOf(aClass))\n\n// Passes if instance is an instance of aClass or any of its subclasses:\nexpect(instance).to(beAKindOf(aClass))\n```\n\n```objc\n// Objective-C\n\n// Passes if instance is an instance of aClass:\nexpect(instance).to(beAnInstanceOf(aClass));\n\n// Passes if instance is an instance of aClass or any of its subclasses:\nexpect(instance).to(beAKindOf(aClass));\n```\n\n> Instances must be Objective-C objects: subclasses of `NSObject`,\n  or Swift objects bridged to Objective-C with the `@objc` prefix.\n\nFor example, to assert that `dolphin` is a kind of `Mammal`:\n\n```swift\n// Swift\n\nexpect(dolphin).to(beAKindOf(Mammal))\n```\n\n```objc\n// Objective-C\n\nexpect(dolphin).to(beAKindOf([Mammal class]));\n```\n\n> `beAnInstanceOf` uses the `-[NSObject isMemberOfClass:]` method to\n  test membership. `beAKindOf` uses `-[NSObject isKindOfClass:]`.\n\n## Truthiness\n\n```swift\n// Passes if actual is not nil, true, or an object with a boolean value of true:\nexpect(actual).to(beTruthy())\n\n// Passes if actual is only true (not nil or an object conforming to Boolean true):\nexpect(actual).to(beTrue())\n\n// Passes if actual is nil, false, or an object with a boolean value of false:\nexpect(actual).to(beFalsy())\n\n// Passes if actual is only false (not nil or an object conforming to Boolean false):\nexpect(actual).to(beFalse())\n\n// Passes if actual is nil:\nexpect(actual).to(beNil())\n```\n\n```objc\n// Objective-C\n\n// Passes if actual is not nil, true, or an object with a boolean value of true:\nexpect(actual).to(beTruthy());\n\n// Passes if actual is only true (not nil or an object conforming to Boolean true):\nexpect(actual).to(beTrue());\n\n// Passes if actual is nil, false, or an object with a boolean value of false:\nexpect(actual).to(beFalsy());\n\n// Passes if actual is only false (not nil or an object conforming to Boolean false):\nexpect(actual).to(beFalse());\n\n// Passes if actual is nil:\nexpect(actual).to(beNil());\n```\n\n## Swift Assertions\n\nIf you're using Swift, you can use the `throwAssertion` matcher to check if an assertion is thrown (e.g. `fatalError()`). This is made possible by [@mattgallagher](https://github.com/mattgallagher)'s [CwlPreconditionTesting](https://github.com/mattgallagher/CwlPreconditionTesting) library.\n\n```swift\n// Swift\n\n// Passes if somethingThatThrows() throws an assertion, such as calling fatalError() or precondition fails:\nexpect { () -> Void in fatalError() }.to(throwAssertion())\nexpect { precondition(false) }.to(throwAssertion())\n\n// Passes if throwing a NSError is not equal to throwing an assertion:\nexpect { throw NSError(domain: \"test\", code: 0, userInfo: nil) }.toNot(throwAssertion())\n\n// Passes if the post assertion code is not run:\nvar reachedPoint1 = false\nvar reachedPoint2 = false\nexpect {\n    reachedPoint1 = true\n    precondition(false, \"condition message\")\n    reachedPoint2 = true\n}.to(throwAssertion())\n\nexpect(reachedPoint1) == true\nexpect(reachedPoint2) == false\n```\n\nNotes:\n\n* This feature is only available in Swift.\n* It is only supported for `x86_64` binaries, meaning _you cannot run this matcher on iOS devices, only simulators_.\n* The tvOS simulator is supported, but using a different mechanism, requiring you to turn off the `Debug executable` scheme setting for your tvOS scheme's Test configuration.\n\n## Swift Error Handling\n\nIf you're using Swift 2.0+, you can use the `throwError` matcher to check if an error is thrown.\n\n```swift\n// Swift\n\n// Passes if somethingThatThrows() throws an ErrorProtocol:\nexpect{ try somethingThatThrows() }.to(throwError())\n\n// Passes if somethingThatThrows() throws an error with a given domain:\nexpect{ try somethingThatThrows() }.to(throwError { (error: ErrorProtocol) in\n    expect(error._domain).to(equal(NSCocoaErrorDomain))\n})\n\n// Passes if somethingThatThrows() throws an error with a given case:\nexpect{ try somethingThatThrows() }.to(throwError(NSCocoaError.PropertyListReadCorruptError))\n\n// Passes if somethingThatThrows() throws an error with a given type:\nexpect{ try somethingThatThrows() }.to(throwError(errorType: NimbleError.self))\n```\n\nIf you are working directly with `ErrorProtocol` values, as is sometimes the case when using `Result` or `Promise` types, you can use the `matchError` matcher to check if the error is the same error is is supposed to be, without requiring explicit casting.\n\n```swift\n// Swift\n\nlet actual: ErrorProtocol = …\n\n// Passes if actual contains any error value from the NimbleErrorEnum type:\nexpect(actual).to(matchError(NimbleErrorEnum))\n\n// Passes if actual contains the Timeout value from the NimbleErrorEnum type:\nexpect(actual).to(matchError(NimbleErrorEnum.Timeout))\n\n// Passes if actual contains an NSError equal to the given one:\nexpect(actual).to(matchError(NSError(domain: \"err\", code: 123, userInfo: nil)))\n```\n\nNote: This feature is only available in Swift.\n\n## Exceptions\n\n```swift\n// Swift\n\n// Passes if actual, when evaluated, raises an exception:\nexpect(actual).to(raiseException())\n\n// Passes if actual raises an exception with the given name:\nexpect(actual).to(raiseException(named: name))\n\n// Passes if actual raises an exception with the given name and reason:\nexpect(actual).to(raiseException(named: name, reason: reason))\n\n// Passes if actual raises an exception and it passes expectations in the block\n// (in this case, if name begins with 'a r')\nexpect { exception.raise() }.to(raiseException { (exception: NSException) in\n    expect(exception.name).to(beginWith(\"a r\"))\n})\n```\n\n```objc\n// Objective-C\n\n// Passes if actual, when evaluated, raises an exception:\nexpect(actual).to(raiseException())\n\n// Passes if actual raises an exception with the given name\nexpect(actual).to(raiseException().named(name))\n\n// Passes if actual raises an exception with the given name and reason:\nexpect(actual).to(raiseException().named(name).reason(reason))\n\n// Passes if actual raises an exception and it passes expectations in the block\n// (in this case, if name begins with 'a r')\nexpect(actual).to(raiseException().satisfyingBlock(^(NSException *exception) {\n    expect(exception.name).to(beginWith(@\"a r\"));\n}));\n```\n\nNote: Swift currently doesn't have exceptions (see [#220](https://github.com/Quick/Nimble/issues/220#issuecomment-172667064)). Only Objective-C code can raise\nexceptions that Nimble will catch.\n\n## Collection Membership\n\n```swift\n// Swift\n\n// Passes if all of the expected values are members of actual:\nexpect(actual).to(contain(expected...))\n\n// Passes if actual is an empty collection (it contains no elements):\nexpect(actual).to(beEmpty())\n```\n\n```objc\n// Objective-C\n\n// Passes if expected is a member of actual:\nexpect(actual).to(contain(expected));\n\n// Passes if actual is an empty collection (it contains no elements):\nexpect(actual).to(beEmpty());\n```\n\n> In Swift `contain` takes any number of arguments. The expectation\n  passes if all of them are members of the collection. In Objective-C,\n  `contain` only takes one argument [for now](https://github.com/Quick/Nimble/issues/27).\n\nFor example, to assert that a list of sea creature names contains\n\"dolphin\" and \"starfish\":\n\n```swift\n// Swift\n\nexpect([\"whale\", \"dolphin\", \"starfish\"]).to(contain(\"dolphin\", \"starfish\"))\n```\n\n```objc\n// Objective-C\n\nexpect(@[@\"whale\", @\"dolphin\", @\"starfish\"]).to(contain(@\"dolphin\"));\nexpect(@[@\"whale\", @\"dolphin\", @\"starfish\"]).to(contain(@\"starfish\"));\n```\n\n> `contain` and `beEmpty` expect collections to be instances of\n  `NSArray`, `NSSet`, or a Swift collection composed of `Equatable` elements.\n\nTo test whether a set of elements is present at the beginning or end of\nan ordered collection, use `beginWith` and `endWith`:\n\n```swift\n// Swift\n\n// Passes if the elements in expected appear at the beginning of actual:\nexpect(actual).to(beginWith(expected...))\n\n// Passes if the the elements in expected come at the end of actual:\nexpect(actual).to(endWith(expected...))\n```\n\n```objc\n// Objective-C\n\n// Passes if the elements in expected appear at the beginning of actual:\nexpect(actual).to(beginWith(expected));\n\n// Passes if the the elements in expected come at the end of actual:\nexpect(actual).to(endWith(expected));\n```\n\n> `beginWith` and `endWith` expect collections to be instances of\n  `NSArray`, or ordered Swift collections composed of `Equatable`\n  elements.\n\n  Like `contain`, in Objective-C `beginWith` and `endWith` only support\n  a single argument [for now](https://github.com/Quick/Nimble/issues/27).\n\n## Strings\n\n```swift\n// Swift\n\n// Passes if actual contains substring expected:\nexpect(actual).to(contain(expected))\n\n// Passes if actual begins with substring:\nexpect(actual).to(beginWith(expected))\n\n// Passes if actual ends with substring:\nexpect(actual).to(endWith(expected))\n\n// Passes if actual is an empty string, \"\":\nexpect(actual).to(beEmpty())\n\n// Passes if actual matches the regular expression defined in expected:\nexpect(actual).to(match(expected))\n```\n\n```objc\n// Objective-C\n\n// Passes if actual contains substring expected:\nexpect(actual).to(contain(expected));\n\n// Passes if actual begins with substring:\nexpect(actual).to(beginWith(expected));\n\n// Passes if actual ends with substring:\nexpect(actual).to(endWith(expected));\n\n// Passes if actual is an empty string, \"\":\nexpect(actual).to(beEmpty());\n\n// Passes if actual matches the regular expression defined in expected:\nexpect(actual).to(match(expected))\n```\n\n## Checking if all elements of a collection pass a condition\n\n```swift\n// Swift\n\n// with a custom function:\nexpect([1,2,3,4]).to(allPass({$0 < 5}))\n\n// with another matcher:\nexpect([1,2,3,4]).to(allPass(beLessThan(5)))\n```\n\n```objc\n// Objective-C\n\nexpect(@[@1, @2, @3,@4]).to(allPass(beLessThan(@5)));\n```\n\nFor Swift the actual value has to be a Sequence, e.g. an array, a set or a custom seqence type.\n\nFor Objective-C the actual value has to be a NSFastEnumeration, e.g. NSArray and NSSet, of NSObjects and only the variant which\nuses another matcher is available here.\n\n## Verify collection count\n\n```swift\n// Swift\n\n// passes if actual collection's count is equal to expected\nexpect(actual).to(haveCount(expected))\n\n// passes if actual collection's count is not equal to expected\nexpect(actual).notTo(haveCount(expected))\n```\n\n```objc\n// Objective-C\n\n// passes if actual collection's count is equal to expected\nexpect(actual).to(haveCount(expected))\n\n// passes if actual collection's count is not equal to expected\nexpect(actual).notTo(haveCount(expected))\n```\n\nFor Swift the actual value must be a `Collection` such as array, dictionary or set.\n\nFor Objective-C the actual value has to be one of the following classes `NSArray`, `NSDictionary`, `NSSet`, `NSHashTable` or one of their subclasses.\n\n## Foundation\n\n### Verifying a Notification was posted\n\n```swift\n// Swift\nlet testNotification = Notification(name: \"Foo\", object: nil)\n\n// passes if the closure in expect { ... } posts a notification to the default\n// notification center.\nexpect {\n    NotificationCenter.default.postNotification(testNotification)\n}.to(postNotifications(equal([testNotification]))\n\n// passes if the closure in expect { ... } posts a notification to a given\n// notification center\nlet notificationCenter = NotificationCenter()\nexpect {\n    notificationCenter.postNotification(testNotification)\n}.to(postNotifications(equal([testNotification]), fromNotificationCenter: notificationCenter))\n```\n\n> This matcher is only available in Swift.\n\n## Matching a value to any of a group of matchers\n\n```swift\n// passes if actual is either less than 10 or greater than 20\nexpect(actual).to(satisfyAnyOf(beLessThan(10), beGreaterThan(20)))\n\n// can include any number of matchers -- the following will pass\n// **be careful** -- too many matchers can be the sign of an unfocused test\nexpect(6).to(satisfyAnyOf(equal(2), equal(3), equal(4), equal(5), equal(6), equal(7)))\n\n// in Swift you also have the option to use the || operator to achieve a similar function\nexpect(82).to(beLessThan(50) || beGreaterThan(80))\n```\n\n```objc\n// passes if actual is either less than 10 or greater than 20\nexpect(actual).to(satisfyAnyOf(beLessThan(@10), beGreaterThan(@20)))\n\n// can include any number of matchers -- the following will pass\n// **be careful** -- too many matchers can be the sign of an unfocused test\nexpect(@6).to(satisfyAnyOf(equal(@2), equal(@3), equal(@4), equal(@5), equal(@6), equal(@7)))\n```\n\nNote: This matcher allows you to chain any number of matchers together. This provides flexibility,\n      but if you find yourself chaining many matchers together in one test, consider whether you\n      could instead refactor that single test into multiple, more precisely focused tests for\n      better coverage.\n\n# Writing Your Own Matchers\n\nIn Nimble, matchers are Swift functions that take an expected\nvalue and return a `MatcherFunc` closure. Take `equal`, for example:\n\n```swift\n// Swift\n\npublic func equal<T: Equatable>(expectedValue: T?) -> MatcherFunc<T?> {\n  return MatcherFunc { actualExpression, failureMessage in\n    failureMessage.postfixMessage = \"equal <\\(expectedValue)>\"\n    if let actualValue = try actualExpression.evaluate() {\n    \treturn actualValue == expectedValue\n    } else {\n    \treturn false\n    }\n  }\n}\n```\n\nThe return value of a `MatcherFunc` closure is a `Bool` that indicates\nwhether the actual value matches the expectation: `true` if it does, or\n`false` if it doesn't.\n\n> The actual `equal` matcher function does not match when either\n  `actual` or `expected` are nil; the example above has been edited for\n  brevity.\n\nSince matchers are just Swift functions, you can define them anywhere:\nat the top of your test file, in a file shared by all of your tests, or\nin an Xcode project you distribute to others.\n\n> If you write a matcher you think everyone can use, consider adding it\n  to Nimble's built-in set of matchers by sending a pull request! Or\n  distribute it yourself via GitHub.\n\nFor examples of how to write your own matchers, just check out the\n[`Matchers` directory](https://github.com/Quick/Nimble/tree/master/Sources/Nimble/Matchers)\nto see how Nimble's built-in set of matchers are implemented. You can\nalso check out the tips below.\n\n## Lazy Evaluation\n\n`actualExpression` is a lazy, memoized closure around the value provided to the\n`expect` function. The expression can either be a closure or a value directly\npassed to `expect(...)`. In order to determine whether that value matches,\ncustom matchers should call `actualExpression.evaluate()`:\n\n```swift\n// Swift\n\npublic func beNil<T>() -> MatcherFunc<T?> {\n  return MatcherFunc { actualExpression, failureMessage in\n    failureMessage.postfixMessage = \"be nil\"\n    return actualExpression.evaluate() == nil\n  }\n}\n```\n\nIn the above example, `actualExpression` is not `nil`--it is a closure\nthat returns a value. The value it returns, which is accessed via the\n`evaluate()` method, may be `nil`. If that value is `nil`, the `beNil`\nmatcher function returns `true`, indicating that the expectation passed.\n\nUse `expression.isClosure` to determine if the expression will be invoking\na closure to produce its value.\n\n## Type Checking via Swift Generics\n\nUsing Swift's generics, matchers can constrain the type of the actual value\npassed to the `expect` function by modifying the return type.\n\nFor example, the following matcher, `haveDescription`, only accepts actual\nvalues that implement the `Printable` protocol. It checks their `description`\nagainst the one provided to the matcher function, and passes if they are the same:\n\n```swift\n// Swift\n\npublic func haveDescription(description: String) -> MatcherFunc<Printable?> {\n  return MatcherFunc { actual, failureMessage in\n    return actual.evaluate().description == description\n  }\n}\n```\n\n## Customizing Failure Messages\n\nBy default, Nimble outputs the following failure message when an\nexpectation fails:\n\n```\nexpected to match, got <\\(actual)>\n```\n\nYou can customize this message by modifying the `failureMessage` struct\nfrom within your `MatcherFunc` closure. To change the verb \"match\" to\nsomething else, update the `postfixMessage` property:\n\n```swift\n// Swift\n\n// Outputs: expected to be under the sea, got <\\(actual)>\nfailureMessage.postfixMessage = \"be under the sea\"\n```\n\nYou can change how the `actual` value is displayed by updating\n`failureMessage.actualValue`. Or, to remove it altogether, set it to\n`nil`:\n\n```swift\n// Swift\n\n// Outputs: expected to be under the sea\nfailureMessage.actualValue = nil\nfailureMessage.postfixMessage = \"be under the sea\"\n```\n\n## Supporting Objective-C\n\nTo use a custom matcher written in Swift from Objective-C, you'll have\nto extend the `NMBObjCMatcher` class, adding a new class method for your\ncustom matcher. The example below defines the class method\n`+[NMBObjCMatcher beNilMatcher]`:\n\n```swift\n// Swift\n\nextension NMBObjCMatcher {\n  public class func beNilMatcher() -> NMBObjCMatcher {\n    return NMBObjCMatcher { actualBlock, failureMessage, location in\n      let block = ({ actualBlock() as NSObject? })\n      let expr = Expression(expression: block, location: location)\n      return beNil().matches(expr, failureMessage: failureMessage)\n    }\n  }\n}\n```\n\nThe above allows you to use the matcher from Objective-C:\n\n```objc\n// Objective-C\n\nexpect(actual).to([NMBObjCMatcher beNilMatcher]());\n```\n\nTo make the syntax easier to use, define a C function that calls the\nclass method:\n\n```objc\n// Objective-C\n\nFOUNDATION_EXPORT id<NMBMatcher> beNil() {\n  return [NMBObjCMatcher beNilMatcher];\n}\n```\n\n### Properly Handling `nil` in Objective-C Matchers\n\nWhen supporting Objective-C, make sure you handle `nil` appropriately.\nLike [Cedar](https://github.com/pivotal/cedar/issues/100),\n**most matchers do not match with nil**. This is to bring prevent test\nwriters from being surprised by `nil` values where they did not expect\nthem.\n\nNimble provides the `beNil` matcher function for test writer that want\nto make expectations on `nil` objects:\n\n```objc\n// Objective-C\n\nexpect(nil).to(equal(nil)); // fails\nexpect(nil).to(beNil());    // passes\n```\n\nIf your matcher does not want to match with nil, you use `NonNilMatcherFunc`\nand the `canMatchNil` constructor on `NMBObjCMatcher`. Using both types will\nautomatically generate expected value failure messages when they're nil.\n\n```swift\n\npublic func beginWith<S: Sequence, T: Equatable where S.Iterator.Element == T>(startingElement: T) -> NonNilMatcherFunc<S> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"begin with <\\(startingElement)>\"\n        if let actualValue = actualExpression.evaluate() {\n            var actualGenerator = actualValue.makeIterator()\n            return actualGenerator.next() == startingElement\n        }\n        return false\n    }\n}\n\nextension NMBObjCMatcher {\n    public class func beginWithMatcher(expected: AnyObject) -> NMBObjCMatcher {\n        return NMBObjCMatcher(canMatchNil: false) { actualExpression, failureMessage in\n            let actual = actualExpression.evaluate()\n            let expr = actualExpression.cast { $0 as? NMBOrderedCollection }\n            return beginWith(expected).matches(expr, failureMessage: failureMessage)\n        }\n    }\n}\n```\n\n# Installing Nimble\n\n> Nimble can be used on its own, or in conjunction with its sister\n  project, [Quick](https://github.com/Quick/Quick). To install both\n  Quick and Nimble, follow [the installation instructions in the Quick\n  Documentation](https://github.com/Quick/Quick/blob/master/Documentation/en-us/InstallingQuick.md).\n\nNimble can currently be installed in one of two ways: using CocoaPods, or with\ngit submodules.\n\n## Installing Nimble as a Submodule\n\nTo use Nimble as a submodule to test your macOS, iOS or tvOS applications, follow\nthese 4 easy steps:\n\n1. Clone the Nimble repository\n2. Add Nimble.xcodeproj to the Xcode workspace for your project\n3. Link Nimble.framework to your test target\n4. Start writing expectations!\n\nFor more detailed instructions on each of these steps,\nread [How to Install Quick](https://github.com/Quick/Quick#how-to-install-quick).\nIgnore the steps involving adding Quick to your project in order to\ninstall just Nimble.\n\n## Installing Nimble via CocoaPods\n\nTo use Nimble in CocoaPods to test your macOS, iOS or tvOS applications, add\nNimble to your podfile and add the ```use_frameworks!``` line to enable Swift\nsupport for CocoaPods.\n\n```ruby\nplatform :ios, '8.0'\n\nsource 'https://github.com/CocoaPods/Specs.git'\n\n# Whatever pods you need for your app go here\n\ntarget 'YOUR_APP_NAME_HERE_Tests', :exclusive => true do\n  use_frameworks!\n  pod 'Nimble', '~> 5.0.0'\nend\n```\n\nFinally run `pod install`.\n\n## Using Nimble without XCTest\n\nNimble is integrated with XCTest to allow it work well when used in Xcode test\nbundles, however it can also be used in a standalone app. After installing\nNimble using one of the above methods, there are two additional steps required\nto make this work.\n\n1. Create a custom assertion handler and assign an instance of it to the\n   global `NimbleAssertionHandler` variable. For example:\n\n```swift\nclass MyAssertionHandler : AssertionHandler {\n    func assert(assertion: Bool, message: FailureMessage, location: SourceLocation) {\n        if (!assertion) {\n            print(\"Expectation failed: \\(message.stringValue)\")\n        }\n    }\n}\n```\n```swift\n// Somewhere before you use any assertions\nNimbleAssertionHandler = MyAssertionHandler()\n```\n\n2. Add a post-build action to fix an issue with the Swift XCTest support\n   library being unnecessarily copied into your app\n  * Edit your scheme in Xcode, and navigate to Build -> Post-actions\n  * Click the \"+\" icon and select \"New Run Script Action\"\n  * Open the \"Provide build settings from\" dropdown and select your target\n  * Enter the following script contents:\n```\nrm \"${SWIFT_STDLIB_TOOL_DESTINATION_DIR}/libswiftXCTest.dylib\"\n```\n\nYou can now use Nimble assertions in your code and handle failures as you see\nfit.\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Lib/CwlPreconditionTesting/CwlCatchException/CwlCatchException/CwlCatchException.h",
    "content": "//\n//  CwlCatchException.h\n//  CwlCatchException\n//\n//  Created by Matt Gallagher on 2016/01/10.\n//  Copyright © 2016 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved.\n//\n//  Permission to use, copy, modify, and/or distribute this software for any\n//  purpose with or without fee is hereby granted, provided that the above\n//  copyright notice and this permission notice appear in all copies.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n//  WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n//  MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n//  SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n//  WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n//  ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n//  IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n//\n\n#import <Foundation/Foundation.h>\n\n//! Project version number for CwlCatchException.\nFOUNDATION_EXPORT double CwlCatchExceptionVersionNumber;\n\n//! Project version string for CwlCatchException.\nFOUNDATION_EXPORT const unsigned char CwlCatchExceptionVersionString[];\n\n__attribute__((visibility(\"hidden\")))\nNSException* __nullable catchExceptionOfKind(Class __nonnull type, __attribute__((noescape)) void (^ __nonnull inBlock)());\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Lib/CwlPreconditionTesting/CwlCatchException/CwlCatchException/CwlCatchException.m",
    "content": "//\n//  CwlCatchException.m\n//  CwlAssertionTesting\n//\n//  Created by Matt Gallagher on 2016/01/10.\n//  Copyright © 2016 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved.\n//\n//  Permission to use, copy, modify, and/or distribute this software for any\n//  purpose with or without fee is hereby granted, provided that the above\n//  copyright notice and this permission notice appear in all copies.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n//  WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n//  MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n//  SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n//  WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n//  ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n//  IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n//\n\n#import \"CwlCatchException.h\"\n\n__attribute__((visibility(\"hidden\")))\nNSException* catchExceptionOfKind(Class __nonnull type, __attribute__((noescape)) void (^ __nonnull inBlock)()) {\n\t@try {\n\t\tinBlock();\n\t} @catch (NSException *exception) {\n\t\tif ([exception isKindOfClass:type]) {\n\t\t\treturn exception;\n\t\t} else {\n\t\t\t@throw;\n\t\t}\n\t}\n\treturn nil;\n}\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Lib/CwlPreconditionTesting/CwlCatchException/CwlCatchException/CwlCatchException.swift",
    "content": "//\n//  CwlCatchException.swift\n//  CwlAssertionTesting\n//\n//  Created by Matt Gallagher on 2016/01/10.\n//  Copyright © 2016 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved.\n//\n//  Permission to use, copy, modify, and/or distribute this software for any\n//  purpose with or without fee is hereby granted, provided that the above\n//  copyright notice and this permission notice appear in all copies.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n//  WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n//  MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n//  SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n//  WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n//  ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n//  IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n//\n\nimport Foundation\n\n// We can't simply cast to Self? in the catchInBlock method so we need this generic function wrapper to do the conversion for us. Mildly annoying.\nprivate func catchReturnTypeConverter<T: NSException>(_ type: T.Type, block: () -> Void) -> T? {\n\treturn catchExceptionOfKind(type, block) as? T\n}\n\nextension NSException {\n\tpublic static func catchException(in block: () -> Void) -> Self? {\n\t\treturn catchReturnTypeConverter(self, block: block)\n\t}\n}\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlBadInstructionException.swift",
    "content": "//\n//  CwlBadInstructionException.swift\n//  CwlPreconditionTesting\n//\n//  Created by Matt Gallagher on 2016/01/10.\n//  Copyright © 2016 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved.\n//\n//  Permission to use, copy, modify, and/or distribute this software for any\n//  purpose with or without fee is hereby granted, provided that the above\n//  copyright notice and this permission notice appear in all copies.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n//  WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n//  MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n//  SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n//  WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n//  ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n//  IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n//\n\nimport Foundation\n\nprivate func raiseBadInstructionException() {\n\tBadInstructionException().raise()\n}\n\n/// A simple NSException subclass. It's not required to subclass NSException (since the exception type is represented in the name) but this helps for identifying the exception through runtime type.\n@objc public class BadInstructionException: NSException {\n\tstatic var name: String = \"com.cocoawithlove.BadInstruction\"\n\t\n\tinit() {\n\t\tsuper.init(name: NSExceptionName(rawValue: BadInstructionException.name), reason: nil, userInfo: nil)\n\t}\n\t\n\trequired public init?(coder aDecoder: NSCoder) {\n\t\tsuper.init(coder: aDecoder)\n\t}\n\t\n\t/// An Objective-C callable function, invoked from the `mach_exc_server` callback function `catch_mach_exception_raise_state` to push the `raiseBadInstructionException` function onto the stack.\n\tpublic class func catch_mach_exception_raise_state(_ exception_port: mach_port_t, exception: exception_type_t, code: UnsafePointer<mach_exception_data_type_t>, codeCnt: mach_msg_type_number_t, flavor: UnsafeMutablePointer<Int32>, old_state: UnsafePointer<natural_t>, old_stateCnt: mach_msg_type_number_t, new_state: thread_state_t, new_stateCnt: UnsafeMutablePointer<mach_msg_type_number_t>) -> kern_return_t {\n\t\t\n\t\t#if arch(x86_64)\n\t\t\t// Make sure we've been given enough memory\n\t\t\tif old_stateCnt != x86_THREAD_STATE64_COUNT || new_stateCnt.pointee < x86_THREAD_STATE64_COUNT {\n\t\t\t\treturn KERN_INVALID_ARGUMENT\n\t\t\t}\n\t\t\t\n\t\t\t// Read the old thread state\n\t\t\tvar state = old_state.withMemoryRebound(to: x86_thread_state64_t.self, capacity: 1) { return $0.pointee }\n\t\t\t\n\t\t\t// 1. Decrement the stack pointer\n\t\t\tstate.__rsp -= __uint64_t(MemoryLayout<Int>.size)\n\t\t\t\n\t\t\t// 2. Save the old Instruction Pointer to the stack.\n\t\t\tif let pointer = UnsafeMutablePointer<__uint64_t>(bitPattern: UInt(state.__rsp)) {\n\t\t\t\tpointer.pointee = state.__rip\n\t\t\t} else {\n\t\t\t\treturn KERN_INVALID_ARGUMENT\n\t\t\t}\n\t\t\t\n\t\t\t// 3. Set the Instruction Pointer to the new function's address\n\t\t\tvar f: @convention(c) () -> Void = raiseBadInstructionException\n\t\t\twithUnsafePointer(to: &f) {\n\t\t\t\tstate.__rip = $0.withMemoryRebound(to: __uint64_t.self, capacity: 1) { return $0.pointee }\n\t\t\t}\n\t\t\t\n\t\t\t// Write the new thread state\n\t\t\tnew_state.withMemoryRebound(to: x86_thread_state64_t.self, capacity: 1) { $0.pointee = state }\n\t\t\tnew_stateCnt.pointee = x86_THREAD_STATE64_COUNT\n\n\t\t\treturn KERN_SUCCESS\n\t\t#else\n\t\t\tfatalError(\"Unavailable for this CPU architecture\")\n\t\t#endif\n\t}\n}\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlCatchBadInstruction.h",
    "content": "//\n//  CwlCatchBadInstruction.h\n//  CwlPreconditionTesting\n//\n//  Created by Matt Gallagher on 2016/01/10.\n//  Copyright © 2016 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved.\n//\n//  Permission to use, copy, modify, and/or distribute this software for any\n//  purpose with or without fee is hereby granted, provided that the above\n//  copyright notice and this permission notice appear in all copies.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n//  WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n//  MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n//  SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n//  WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n//  ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n//  IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n//\n\n#if defined(__x86_64__)\n\n#import <Foundation/Foundation.h>\n#import <mach/mach.h>\n\nNS_ASSUME_NONNULL_BEGIN\n\n// The request_mach_exception_raise_t struct is passed to mach_msg which assumes its exact layout. To avoid problems with different layouts, we keep the definition in C rather than Swift.\ntypedef struct\n{\n\tmach_msg_header_t Head;\n\t/* start of the kernel processed data */\n\tmach_msg_body_t msgh_body;\n\tmach_msg_port_descriptor_t thread;\n\tmach_msg_port_descriptor_t task;\n\t/* end of the kernel processed data */\n\tNDR_record_t NDR;\n\texception_type_t exception;\n\tmach_msg_type_number_t codeCnt;\n\tint64_t code[2];\n\tint flavor;\n\tmach_msg_type_number_t old_stateCnt;\n\tnatural_t old_state[224];\n} request_mach_exception_raise_t;\n\n// The reply_mach_exception_raise_state_t struct is passed to mach_msg which assumes its exact layout. To avoid problems with different layouts, we keep the definition in C rather than Swift.\ntypedef struct\n{\n\tmach_msg_header_t Head;\n\tNDR_record_t NDR;\n\tkern_return_t RetCode;\n\tint flavor;\n\tmach_msg_type_number_t new_stateCnt;\n\tnatural_t new_state[224];\n} reply_mach_exception_raise_state_t;\n\nextern boolean_t mach_exc_server(mach_msg_header_t *InHeadP, mach_msg_header_t *OutHeadP);\n\nNS_ASSUME_NONNULL_END\n\n#endif\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlCatchBadInstruction.m",
    "content": "//\n//  CwlCatchBadInstruction.m\n//  CwlPreconditionTesting\n//\n//  Created by Matt Gallagher on 2016/01/10.\n//  Copyright © 2016 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved.\n//\n//  Permission to use, copy, modify, and/or distribute this software for any\n//  purpose with or without fee is hereby granted, provided that the above\n//  copyright notice and this permission notice appear in all copies.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n//  WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n//  MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n//  SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n//  WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n//  ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n//  IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n//\n\n#if defined(__x86_64__)\n\n#import \"CwlCatchBadInstruction.h\"\n\n// Assuming the \"PRODUCT_NAME\" macro is defined, this will create the name of the Swift generated header file\n#define STRINGIZE_NO_EXPANSION(A) #A\n#define STRINGIZE_WITH_EXPANSION(A) STRINGIZE_NO_EXPANSION(A)\n#define SWIFT_INCLUDE STRINGIZE_WITH_EXPANSION(PRODUCT_NAME-Swift.h)\n\n// Include the Swift generated header file\n#import SWIFT_INCLUDE\n\n/// A basic function that receives callbacks from mach_exc_server and relays them to the Swift implemented BadInstructionException.catch_mach_exception_raise_state.\nkern_return_t catch_mach_exception_raise_state(mach_port_t exception_port, exception_type_t exception, const mach_exception_data_t code, mach_msg_type_number_t codeCnt, int *flavor, const thread_state_t old_state, mach_msg_type_number_t old_stateCnt, thread_state_t new_state, mach_msg_type_number_t *new_stateCnt) {\n    return [BadInstructionException catch_mach_exception_raise_state:exception_port exception:exception code:code codeCnt:codeCnt flavor:flavor old_state:old_state old_stateCnt:old_stateCnt new_state:new_state new_stateCnt:new_stateCnt];\n}\n\n// The mach port should be configured so that this function is never used.\nkern_return_t catch_mach_exception_raise(mach_port_t exception_port, mach_port_t thread, mach_port_t task, exception_type_t exception, mach_exception_data_t code, mach_msg_type_number_t codeCnt) {\n\tassert(false);\n    return KERN_FAILURE;\n}\n\n// The mach port should be configured so that this function is never used.\nkern_return_t catch_mach_exception_raise_state_identity(mach_port_t exception_port, mach_port_t thread, mach_port_t task, exception_type_t exception, mach_exception_data_t code, mach_msg_type_number_t codeCnt, int *flavor, thread_state_t old_state, mach_msg_type_number_t old_stateCnt, thread_state_t new_state, mach_msg_type_number_t *new_stateCnt) {\n\tassert(false);\n    return KERN_FAILURE;\n}\n\n#endif\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlCatchBadInstruction.swift",
    "content": "//\n//  CwlCatchBadInstruction.swift\n//  CwlPreconditionTesting\n//\n//  Created by Matt Gallagher on 2016/01/10.\n//  Copyright © 2016 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved.\n//\n//  Permission to use, copy, modify, and/or distribute this software for any\n//  purpose with or without fee is hereby granted, provided that the above\n//  copyright notice and this permission notice appear in all copies.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n//  WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n//  MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n//  SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n//  WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n//  ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n//  IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n//\n\nimport Foundation\n\n#if arch(x86_64)\n\t\n\tprivate enum PthreadError: Error { case code(Int32) }\n\tprivate enum MachExcServer: Error { case code(kern_return_t) }\n\t\n\t/// A quick function for converting Mach error results into Swift errors\n\tprivate func kernCheck(_ f: () -> Int32) throws {\n\t\tlet r = f()\n\t\tguard r == KERN_SUCCESS else {\n\t\t\tthrow NSError(domain: NSMachErrorDomain, code: Int(r), userInfo: nil)\n\t\t}\n\t}\n\t\n\textension execTypesCountTuple {\n\t\tmutating func pointer<R>(in block: (UnsafeMutablePointer<T>) -> R) -> R {\n\t\t\treturn withUnsafeMutablePointer(to: &self) { p -> R in\n\t\t\t\treturn p.withMemoryRebound(to: T.self, capacity: EXC_TYPES_COUNT) { ptr -> R in\n\t\t\t\t\treturn block(ptr)\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\t\n\textension request_mach_exception_raise_t {\n\t\tmutating func withMsgHeaderPointer<R>(in block: (UnsafeMutablePointer<mach_msg_header_t>) -> R) -> R {\n\t\t\treturn withUnsafeMutablePointer(to: &self) { p -> R in\n\t\t\t\treturn p.withMemoryRebound(to: mach_msg_header_t.self, capacity: 1) { ptr -> R in\n\t\t\t\t\treturn block(ptr)\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\t\n\textension reply_mach_exception_raise_state_t {\n\t\tmutating func withMsgHeaderPointer<R>(in block: (UnsafeMutablePointer<mach_msg_header_t>) -> R) -> R {\n\t\t\treturn withUnsafeMutablePointer(to: &self) { p -> R in\n\t\t\t\treturn p.withMemoryRebound(to: mach_msg_header_t.self, capacity: 1) { ptr -> R in\n\t\t\t\t\treturn block(ptr)\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\t\n\t/// A structure used to store context associated with the Mach message port\n\tprivate struct MachContext {\n\t\tvar masks = execTypesCountTuple<exception_mask_t>()\n\t\tvar count: mach_msg_type_number_t = 0\n\t\tvar ports = execTypesCountTuple<mach_port_t>()\n\t\tvar behaviors = execTypesCountTuple<exception_behavior_t>()\n\t\tvar flavors = execTypesCountTuple<thread_state_flavor_t>()\n\t\tvar currentExceptionPort: mach_port_t = 0\n\t\tvar handlerThread: pthread_t? = nil\n\t\t\n\t\tmutating func withUnsafeMutablePointers<R>(in block: (UnsafeMutablePointer<exception_mask_t>, UnsafeMutablePointer<mach_port_t>, UnsafeMutablePointer<exception_behavior_t>, UnsafeMutablePointer<thread_state_flavor_t>) -> R) -> R {\n\t\t\treturn masks.pointer { masksPtr in\n\t\t\t\treturn ports.pointer { portsPtr in\n\t\t\t\t\treturn behaviors.pointer { behaviorsPtr in\n\t\t\t\t\t\treturn flavors.pointer { flavorsPtr in\n\t\t\t\t\t\t\treturn block(masksPtr, portsPtr, behaviorsPtr, flavorsPtr)\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\t\n\t/// A function for receiving mach messages and parsing the first with mach_exc_server (and if any others are received, throwing them away).\n\tprivate func machMessageHandler(_ arg: UnsafeMutableRawPointer) -> UnsafeMutableRawPointer? {\n\t\tlet context = arg.assumingMemoryBound(to: MachContext.self).pointee\n\t\tvar request = request_mach_exception_raise_t()\n\t\tvar reply = reply_mach_exception_raise_state_t()\n\t\t\n\t\tvar handledfirstException = false\n\t\trepeat { do {\n\t\t\t// Request the next mach message from the port\n\t\t\trequest.Head.msgh_local_port = context.currentExceptionPort\n\t\t\trequest.Head.msgh_size = UInt32(MemoryLayout<request_mach_exception_raise_t>.size)\n\t\t\ttry kernCheck { request.withMsgHeaderPointer { requestPtr in\n\t\t\t\tmach_msg(requestPtr, MACH_RCV_MSG | MACH_RCV_INTERRUPT, 0, request.Head.msgh_size, context.currentExceptionPort, 0, UInt32(MACH_PORT_NULL))\n\t\t\t} }\n\t\t\t\n\t\t\t// Prepare the reply structure\n\t\t\treply.Head.msgh_bits = MACH_MSGH_BITS(MACH_MSGH_BITS_REMOTE(request.Head.msgh_bits), 0)\n\t\t\treply.Head.msgh_local_port = UInt32(MACH_PORT_NULL)\n\t\t\treply.Head.msgh_remote_port = request.Head.msgh_remote_port\n\t\t\treply.Head.msgh_size = UInt32(MemoryLayout<reply_mach_exception_raise_state_t>.size)\n\t\t\treply.NDR = NDR_record\n\t\t\t\n\t\t\tif !handledfirstException {\n\t\t\t\t// Use the MiG generated server to invoke our handler for the request and fill in the rest of the reply structure\n\t\t\t\tguard request.withMsgHeaderPointer(in: { requestPtr in reply.withMsgHeaderPointer { replyPtr in\n\t\t\t\t\tmach_exc_server(requestPtr, replyPtr)\n\t\t\t\t} }) != 0 else { throw MachExcServer.code(reply.RetCode) }\n\t\t\t\t\n\t\t\t\thandledfirstException = true\n\t\t\t} else {\n\t\t\t\t// If multiple fatal errors occur, don't handle subsquent errors (let the program crash)\n\t\t\t\treply.RetCode = KERN_FAILURE\n\t\t\t}\n\t\t\t\n\t\t\t// Send the reply\n\t\t\ttry kernCheck { reply.withMsgHeaderPointer { replyPtr in\n\t\t\t\tmach_msg(replyPtr, MACH_SEND_MSG, reply.Head.msgh_size, 0, UInt32(MACH_PORT_NULL), 0, UInt32(MACH_PORT_NULL))\n\t\t\t} }\n\t\t} catch let error as NSError where (error.domain == NSMachErrorDomain && (error.code == Int(MACH_RCV_PORT_CHANGED) || error.code == Int(MACH_RCV_INVALID_NAME))) {\n\t\t\t// Port was already closed before we started or closed while we were listening.\n\t\t\t// This means the controlling thread shut down.\n\t\t\treturn nil\n\t\t} catch {\n\t\t\t// Should never be reached but this is testing code, don't try to recover, just abort\n\t\t\tfatalError(\"Mach message error: \\(error)\")\n\t\t} } while true\n\t}\n\t\n\t/// Run the provided block. If a mach \"BAD_INSTRUCTION\" exception is raised, catch it and return a BadInstructionException (which captures stack information about the throw site, if desired). Otherwise return nil.\n\t/// NOTE: This function is only intended for use in test harnesses – use in a distributed build is almost certainly a bad choice. If a \"BAD_INSTRUCTION\" exception is raised, the block will be exited before completion via Objective-C exception. The risks associated with an Objective-C exception apply here: most Swift/Objective-C functions are *not* exception-safe. Memory may be leaked and the program will not necessarily be left in a safe state.\n\t/// - parameter block: a function without parameters that will be run\n\t/// - returns: if an EXC_BAD_INSTRUCTION is raised during the execution of `block` then a BadInstructionException will be returned, otherwise `nil`.\n\tpublic func catchBadInstruction(in block: () -> Void) -> BadInstructionException? {\n\t\tvar context = MachContext()\n\t\tvar result: BadInstructionException? = nil\n\t\tdo {\n\t\t\tvar handlerThread: pthread_t? = nil\n\t\t\tdefer {\n\t\t\t\t// 8. Wait for the thread to terminate *if* we actually made it to the creation point\n\t\t\t\t// The mach port should be destroyed *before* calling pthread_join to avoid a deadlock.\n\t\t\t\tif handlerThread != nil {\n\t\t\t\t\tpthread_join(handlerThread!, nil)\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\ttry kernCheck {\n\t\t\t\t// 1. Create the mach port\n\t\t\t\tmach_port_allocate(mach_task_self_, MACH_PORT_RIGHT_RECEIVE, &context.currentExceptionPort)\n\t\t\t}\n\t\t\tdefer {\n\t\t\t\t// 7. Cleanup the mach port\n\t\t\t\tmach_port_destroy(mach_task_self_, context.currentExceptionPort)\n\t\t\t}\n\t\t\t\n\t\t\ttry kernCheck {\n\t\t\t\t// 2. Configure the mach port\n\t\t\t\tmach_port_insert_right(mach_task_self_, context.currentExceptionPort, context.currentExceptionPort, MACH_MSG_TYPE_MAKE_SEND)\n\t\t\t}\n\t\t\t\n\t\t\ttry kernCheck { context.withUnsafeMutablePointers { masksPtr, portsPtr, behaviorsPtr, flavorsPtr in\n\t\t\t\t// 3. Apply the mach port as the handler for this thread\n\t\t\t\tthread_swap_exception_ports(mach_thread_self(), EXC_MASK_BAD_INSTRUCTION, context.currentExceptionPort, Int32(bitPattern: UInt32(EXCEPTION_STATE) | MACH_EXCEPTION_CODES), x86_THREAD_STATE64, masksPtr, &context.count, portsPtr, behaviorsPtr, flavorsPtr)\n\t\t\t} }\n\t\t\t\n\t\t\tdefer { context.withUnsafeMutablePointers { masksPtr, portsPtr, behaviorsPtr, flavorsPtr in\n\t\t\t\t// 6. Unapply the mach port\n\t\t\t\t_ = thread_swap_exception_ports(mach_thread_self(), EXC_MASK_BAD_INSTRUCTION, 0, EXCEPTION_DEFAULT, THREAD_STATE_NONE, masksPtr, &context.count, portsPtr, behaviorsPtr, flavorsPtr)\n\t\t\t} }\n\t\t\t\n\t\t\ttry withUnsafeMutablePointer(to: &context) { c throws in\n\t\t\t\t// 4. Create the thread\n\t\t\t\tlet e = pthread_create(&handlerThread, nil, machMessageHandler, c)\n\t\t\t\tguard e == 0 else { throw PthreadError.code(e) }\n\t\t\t\t\n\t\t\t\t// 5. Run the block\n\t\t\t\tresult = BadInstructionException.catchException(in: block)\n\t\t\t}\n\t\t} catch {\n\t\t\t// Should never be reached but this is testing code, don't try to recover, just abort\n\t\t\tfatalError(\"Mach port error: \\(error)\")\n\t\t}\n\t\treturn result\n\t}\n\n#endif\n\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlDarwinDefinitions.swift",
    "content": "//\n//  CwlDarwinDefinitions.swift\n//  CwlPreconditionTesting\n//\n//  Created by Matt Gallagher on 2016/01/10.\n//  Copyright © 2016 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved.\n//\n//  Permission to use, copy, modify, and/or distribute this software for any\n//  purpose with or without fee is hereby granted, provided that the above\n//  copyright notice and this permission notice appear in all copies.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n//  WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n//  MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n//  SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n//  WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n//  ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n//  IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n//\n\nimport Darwin\n\n#if arch(x86_64)\n\n// From /usr/include/mach/port.h\n// #define MACH_PORT_RIGHT_RECEIVE\t\t((mach_port_right_t) 1)\nlet MACH_PORT_RIGHT_RECEIVE: mach_port_right_t = 1\n\n// From /usr/include/mach/message.h\n// #define MACH_MSG_TYPE_MAKE_SEND\t\t20\t/* Must hold receive right */\n// #define\tMACH_MSGH_BITS_REMOTE(bits)\t\t\t\t\\\n// \t\t((bits) & MACH_MSGH_BITS_REMOTE_MASK)\n// #define MACH_MSGH_BITS(remote, local)  /* legacy */\t\t\\\n// \t\t((remote) | ((local) << 8))\nlet MACH_MSG_TYPE_MAKE_SEND: UInt32 = 20\nfunc MACH_MSGH_BITS_REMOTE(_ bits: UInt32) -> UInt32 { return bits & UInt32(MACH_MSGH_BITS_REMOTE_MASK) }\nfunc MACH_MSGH_BITS(_ remote: UInt32, _ local: UInt32) -> UInt32 { return ((remote) | ((local) << 8)) }\n\n// From /usr/include/mach/exception_types.h\n// #define EXC_BAD_INSTRUCTION\t2\t/* Instruction failed */\n// #define EXC_MASK_BAD_INSTRUCTION\t(1 << EXC_BAD_INSTRUCTION)\n// #define EXCEPTION_DEFAULT\t\t1\nlet EXC_BAD_INSTRUCTION: UInt32 = 2\nlet EXC_MASK_BAD_INSTRUCTION: UInt32 = 1 << EXC_BAD_INSTRUCTION\nlet EXCEPTION_DEFAULT: Int32 = 1\n\n// From /usr/include/mach/i386/thread_status.h\n// #define THREAD_STATE_NONE\t\t13\n// #define x86_THREAD_STATE64_COUNT\t((mach_msg_type_number_t) \\\n//\t\t( sizeof (x86_thread_state64_t) / sizeof (int) ))\nlet THREAD_STATE_NONE: Int32 = 13\nlet x86_THREAD_STATE64_COUNT = UInt32(MemoryLayout<x86_thread_state64_t>.size / MemoryLayout<Int32>.size)\n\nlet EXC_TYPES_COUNT = 14\nstruct execTypesCountTuple<T: ExpressibleByIntegerLiteral> {\n\t// From /usr/include/mach/i386/exception.h\n\t// #define EXC_TYPES_COUNT 14 /* incl. illegal exception 0 */\n\tvar value: (T,T,T,T,T,T,T,T,T,T,T,T,T,T) = (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)\n\tinit() {\n\t}\n}\n\n#endif\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/mach_excServer.c",
    "content": "/*\n * IDENTIFICATION:\n * stub generated Mon Jan 11 00:24:26 2016\n * with a MiG generated by bootstrap_cmds-93\n * OPTIONS: \n */\n\n/* Module mach_exc */\n\n#if defined(__x86_64__)\n\n#define\t__MIG_check__Request__mach_exc_subsystem__ 1\n\n#include \"mach_excServer.h\"\n\n#ifndef\tmig_internal\n#define\tmig_internal\tstatic __inline__\n#endif\t/* mig_internal */\n\n#ifndef\tmig_external\n#define mig_external\n#endif\t/* mig_external */\n\n#if\t!defined(__MigTypeCheck) && defined(TypeCheck)\n#define\t__MigTypeCheck\t\tTypeCheck\t/* Legacy setting */\n#endif\t/* !defined(__MigTypeCheck) */\n\n#if\t!defined(__MigKernelSpecificCode) && defined(_MIG_KERNEL_SPECIFIC_CODE_)\n#define\t__MigKernelSpecificCode\t_MIG_KERNEL_SPECIFIC_CODE_\t/* Legacy setting */\n#endif\t/* !defined(__MigKernelSpecificCode) */\n\n#ifndef\tLimitCheck\n#define\tLimitCheck 0\n#endif\t/* LimitCheck */\n\n#ifndef\tmin\n#define\tmin(a,b)  ( ((a) < (b))? (a): (b) )\n#endif\t/* min */\n\n#if !defined(_WALIGN_)\n#define _WALIGN_(x) (((x) + 3) & ~3)\n#endif /* !defined(_WALIGN_) */\n\n#if !defined(_WALIGNSZ_)\n#define _WALIGNSZ_(x) _WALIGN_(sizeof(x))\n#endif /* !defined(_WALIGNSZ_) */\n\n#ifndef\tUseStaticTemplates\n#define\tUseStaticTemplates\t0\n#endif\t/* UseStaticTemplates */\n\n#ifndef\t__DeclareRcvRpc\n#define\t__DeclareRcvRpc(_NUM_, _NAME_)\n#endif\t/* __DeclareRcvRpc */\n\n#ifndef\t__BeforeRcvRpc\n#define\t__BeforeRcvRpc(_NUM_, _NAME_)\n#endif\t/* __BeforeRcvRpc */\n\n#ifndef\t__AfterRcvRpc\n#define\t__AfterRcvRpc(_NUM_, _NAME_)\n#endif\t/* __AfterRcvRpc */\n\n#ifndef\t__DeclareRcvSimple\n#define\t__DeclareRcvSimple(_NUM_, _NAME_)\n#endif\t/* __DeclareRcvSimple */\n\n#ifndef\t__BeforeRcvSimple\n#define\t__BeforeRcvSimple(_NUM_, _NAME_)\n#endif\t/* __BeforeRcvSimple */\n\n#ifndef\t__AfterRcvSimple\n#define\t__AfterRcvSimple(_NUM_, _NAME_)\n#endif\t/* __AfterRcvSimple */\n\n#define novalue void\n\n#define msgh_request_port\tmsgh_local_port\n#define MACH_MSGH_BITS_REQUEST(bits)\tMACH_MSGH_BITS_LOCAL(bits)\n#define msgh_reply_port\t\tmsgh_remote_port\n#define MACH_MSGH_BITS_REPLY(bits)\tMACH_MSGH_BITS_REMOTE(bits)\n\n#define MIG_RETURN_ERROR(X, code)\t{\\\n\t\t\t\t((mig_reply_error_t *)X)->RetCode = code;\\\n\t\t\t\t((mig_reply_error_t *)X)->NDR = NDR_record;\\\n\t\t\t\treturn;\\\n\t\t\t\t}\n\n/* Forward Declarations */\n\n\nmig_internal novalue _Xmach_exception_raise\n\t(mach_msg_header_t *InHeadP, mach_msg_header_t *OutHeadP);\n\nmig_internal novalue _Xmach_exception_raise_state\n\t(mach_msg_header_t *InHeadP, mach_msg_header_t *OutHeadP);\n\nmig_internal novalue _Xmach_exception_raise_state_identity\n\t(mach_msg_header_t *InHeadP, mach_msg_header_t *OutHeadP);\n\n\n#if ( __MigTypeCheck )\n#if __MIG_check__Request__mach_exc_subsystem__\n#if !defined(__MIG_check__Request__mach_exception_raise_t__defined)\n#define __MIG_check__Request__mach_exception_raise_t__defined\n\nmig_internal kern_return_t __MIG_check__Request__mach_exception_raise_t(__attribute__((__unused__)) __Request__mach_exception_raise_t *In0P)\n{\n\n\ttypedef __Request__mach_exception_raise_t __Request;\n#if\t__MigTypeCheck\n\tunsigned int msgh_size;\n#endif\t/* __MigTypeCheck */\n\n#if\t__MigTypeCheck\n\tmsgh_size = In0P->Head.msgh_size;\n\tif (!(In0P->Head.msgh_bits & MACH_MSGH_BITS_COMPLEX) ||\n\t    (In0P->msgh_body.msgh_descriptor_count != 2) ||\n\t    (msgh_size < (mach_msg_size_t)(sizeof(__Request) - 16)) ||  (msgh_size > (mach_msg_size_t)sizeof(__Request)))\n\t\treturn MIG_BAD_ARGUMENTS;\n#endif\t/* __MigTypeCheck */\n\n#if\t__MigTypeCheck\n\tif (In0P->thread.type != MACH_MSG_PORT_DESCRIPTOR ||\n\t    In0P->thread.disposition != 17)\n\t\treturn MIG_TYPE_ERROR;\n#endif\t/* __MigTypeCheck */\n\n#if\t__MigTypeCheck\n\tif (In0P->task.type != MACH_MSG_PORT_DESCRIPTOR ||\n\t    In0P->task.disposition != 17)\n\t\treturn MIG_TYPE_ERROR;\n#endif\t/* __MigTypeCheck */\n\n#if defined(__NDR_convert__int_rep__Request__mach_exception_raise_t__codeCnt__defined)\n\tif (In0P->NDR.int_rep != NDR_record.int_rep)\n\t\t__NDR_convert__int_rep__Request__mach_exception_raise_t__codeCnt(&In0P->codeCnt, In0P->NDR.int_rep);\n#endif\t/* __NDR_convert__int_rep__Request__mach_exception_raise_t__codeCnt__defined */\n#if\t__MigTypeCheck\n\tif ( In0P->codeCnt > 2 )\n\t\treturn MIG_BAD_ARGUMENTS;\n\tif (((msgh_size - (mach_msg_size_t)(sizeof(__Request) - 16)) / 8 < In0P->codeCnt) ||\n\t    (msgh_size != (mach_msg_size_t)(sizeof(__Request) - 16) + (8 * In0P->codeCnt)))\n\t\treturn MIG_BAD_ARGUMENTS;\n#endif\t/* __MigTypeCheck */\n\n\treturn MACH_MSG_SUCCESS;\n}\n#endif /* !defined(__MIG_check__Request__mach_exception_raise_t__defined) */\n#endif /* __MIG_check__Request__mach_exc_subsystem__ */\n#endif /* ( __MigTypeCheck ) */\n\n\n/* Routine mach_exception_raise */\nmig_internal novalue _Xmach_exception_raise\n\t(mach_msg_header_t *InHeadP, mach_msg_header_t *OutHeadP)\n{\n\n#ifdef  __MigPackStructs\n#pragma pack(4)\n#endif\n\ttypedef struct {\n\t\tmach_msg_header_t Head;\n\t\t/* start of the kernel processed data */\n\t\tmach_msg_body_t msgh_body;\n\t\tmach_msg_port_descriptor_t thread;\n\t\tmach_msg_port_descriptor_t task;\n\t\t/* end of the kernel processed data */\n\t\tNDR_record_t NDR;\n\t\texception_type_t exception;\n\t\tmach_msg_type_number_t codeCnt;\n\t\tint64_t code[2];\n\t\tmach_msg_trailer_t trailer;\n\t} Request __attribute__((unused));\n#ifdef  __MigPackStructs\n#pragma pack()\n#endif\n\ttypedef __Request__mach_exception_raise_t __Request;\n\ttypedef __Reply__mach_exception_raise_t Reply __attribute__((unused));\n\n\t/*\n\t * typedef struct {\n\t * \tmach_msg_header_t Head;\n\t * \tNDR_record_t NDR;\n\t * \tkern_return_t RetCode;\n\t * } mig_reply_error_t;\n\t */\n\n\tRequest *In0P = (Request *) InHeadP;\n\tReply *OutP = (Reply *) OutHeadP;\n#ifdef\t__MIG_check__Request__mach_exception_raise_t__defined\n\tkern_return_t check_result;\n#endif\t/* __MIG_check__Request__mach_exception_raise_t__defined */\n\n\t__DeclareRcvRpc(2405, \"mach_exception_raise\")\n\t__BeforeRcvRpc(2405, \"mach_exception_raise\")\n\n#if\tdefined(__MIG_check__Request__mach_exception_raise_t__defined)\n\tcheck_result = __MIG_check__Request__mach_exception_raise_t((__Request *)In0P);\n\tif (check_result != MACH_MSG_SUCCESS)\n\t\t{ MIG_RETURN_ERROR(OutP, check_result); }\n#endif\t/* defined(__MIG_check__Request__mach_exception_raise_t__defined) */\n\n\tOutP->RetCode = catch_mach_exception_raise(In0P->Head.msgh_request_port, In0P->thread.name, In0P->task.name, In0P->exception, In0P->code, In0P->codeCnt);\n\n\tOutP->NDR = NDR_record;\n\n\n\t__AfterRcvRpc(2405, \"mach_exception_raise\")\n}\n\n#if ( __MigTypeCheck )\n#if __MIG_check__Request__mach_exc_subsystem__\n#if !defined(__MIG_check__Request__mach_exception_raise_state_t__defined)\n#define __MIG_check__Request__mach_exception_raise_state_t__defined\n\nmig_internal kern_return_t __MIG_check__Request__mach_exception_raise_state_t(__attribute__((__unused__)) __Request__mach_exception_raise_state_t *In0P, __attribute__((__unused__)) __Request__mach_exception_raise_state_t **In1PP)\n{\n\n\ttypedef __Request__mach_exception_raise_state_t __Request;\n\t__Request *In1P;\n#if\t__MigTypeCheck\n\tunsigned int msgh_size;\n#endif\t/* __MigTypeCheck */\n\tunsigned int msgh_size_delta;\n\n#if\t__MigTypeCheck\n\tmsgh_size = In0P->Head.msgh_size;\n\tif ((In0P->Head.msgh_bits & MACH_MSGH_BITS_COMPLEX) ||\n\t    (msgh_size < (mach_msg_size_t)(sizeof(__Request) - 912)) ||  (msgh_size > (mach_msg_size_t)sizeof(__Request)))\n\t\treturn MIG_BAD_ARGUMENTS;\n#endif\t/* __MigTypeCheck */\n\n#if defined(__NDR_convert__int_rep__Request__mach_exception_raise_state_t__codeCnt__defined)\n\tif (In0P->NDR.int_rep != NDR_record.int_rep)\n\t\t__NDR_convert__int_rep__Request__mach_exception_raise_state_t__codeCnt(&In0P->codeCnt, In0P->NDR.int_rep);\n#endif\t/* __NDR_convert__int_rep__Request__mach_exception_raise_state_t__codeCnt__defined */\n\tmsgh_size_delta = (8 * In0P->codeCnt);\n#if\t__MigTypeCheck\n\tif ( In0P->codeCnt > 2 )\n\t\treturn MIG_BAD_ARGUMENTS;\n\tif (((msgh_size - (mach_msg_size_t)(sizeof(__Request) - 912)) / 8 < In0P->codeCnt) ||\n\t    (msgh_size < (mach_msg_size_t)(sizeof(__Request) - 912) + (8 * In0P->codeCnt)))\n\t\treturn MIG_BAD_ARGUMENTS;\n\tmsgh_size -= msgh_size_delta;\n#endif\t/* __MigTypeCheck */\n\n\t*In1PP = In1P = (__Request *) ((pointer_t) In0P + msgh_size_delta - 16);\n\n#if defined(__NDR_convert__int_rep__Request__mach_exception_raise_state_t__old_stateCnt__defined)\n\tif (In0P->NDR.int_rep != NDR_record.int_rep)\n\t\t__NDR_convert__int_rep__Request__mach_exception_raise_state_t__old_stateCnt(&In1P->old_stateCnt, In1P->NDR.int_rep);\n#endif\t/* __NDR_convert__int_rep__Request__mach_exception_raise_state_t__old_stateCnt__defined */\n#if\t__MigTypeCheck\n\tif ( In1P->old_stateCnt > 224 )\n\t\treturn MIG_BAD_ARGUMENTS;\n\tif (((msgh_size - (mach_msg_size_t)(sizeof(__Request) - 912)) / 4 < In1P->old_stateCnt) ||\n\t    (msgh_size != (mach_msg_size_t)(sizeof(__Request) - 912) + (4 * In1P->old_stateCnt)))\n\t\treturn MIG_BAD_ARGUMENTS;\n#endif\t/* __MigTypeCheck */\n\n\treturn MACH_MSG_SUCCESS;\n}\n#endif /* !defined(__MIG_check__Request__mach_exception_raise_state_t__defined) */\n#endif /* __MIG_check__Request__mach_exc_subsystem__ */\n#endif /* ( __MigTypeCheck ) */\n\n\n/* Routine mach_exception_raise_state */\nmig_internal novalue _Xmach_exception_raise_state\n\t(mach_msg_header_t *InHeadP, mach_msg_header_t *OutHeadP)\n{\n\n#ifdef  __MigPackStructs\n#pragma pack(4)\n#endif\n\ttypedef struct {\n\t\tmach_msg_header_t Head;\n\t\tNDR_record_t NDR;\n\t\texception_type_t exception;\n\t\tmach_msg_type_number_t codeCnt;\n\t\tint64_t code[2];\n\t\tint flavor;\n\t\tmach_msg_type_number_t old_stateCnt;\n\t\tnatural_t old_state[224];\n\t\tmach_msg_trailer_t trailer;\n\t} Request __attribute__((unused));\n#ifdef  __MigPackStructs\n#pragma pack()\n#endif\n\ttypedef __Request__mach_exception_raise_state_t __Request;\n\ttypedef __Reply__mach_exception_raise_state_t Reply __attribute__((unused));\n\n\t/*\n\t * typedef struct {\n\t * \tmach_msg_header_t Head;\n\t * \tNDR_record_t NDR;\n\t * \tkern_return_t RetCode;\n\t * } mig_reply_error_t;\n\t */\n\n\tRequest *In0P = (Request *) InHeadP;\n\tRequest *In1P;\n\tReply *OutP = (Reply *) OutHeadP;\n#ifdef\t__MIG_check__Request__mach_exception_raise_state_t__defined\n\tkern_return_t check_result;\n#endif\t/* __MIG_check__Request__mach_exception_raise_state_t__defined */\n\n\t__DeclareRcvRpc(2406, \"mach_exception_raise_state\")\n\t__BeforeRcvRpc(2406, \"mach_exception_raise_state\")\n\n#if\tdefined(__MIG_check__Request__mach_exception_raise_state_t__defined)\n\tcheck_result = __MIG_check__Request__mach_exception_raise_state_t((__Request *)In0P, (__Request **)&In1P);\n\tif (check_result != MACH_MSG_SUCCESS)\n\t\t{ MIG_RETURN_ERROR(OutP, check_result); }\n#endif\t/* defined(__MIG_check__Request__mach_exception_raise_state_t__defined) */\n\n\tOutP->new_stateCnt = 224;\n\n\tOutP->RetCode = catch_mach_exception_raise_state(In0P->Head.msgh_request_port, In0P->exception, In0P->code, In0P->codeCnt, &In1P->flavor, In1P->old_state, In1P->old_stateCnt, OutP->new_state, &OutP->new_stateCnt);\n\tif (OutP->RetCode != KERN_SUCCESS) {\n\t\tMIG_RETURN_ERROR(OutP, OutP->RetCode);\n\t}\n\n\tOutP->NDR = NDR_record;\n\n\n\tOutP->flavor = In1P->flavor;\n\tOutP->Head.msgh_size = (mach_msg_size_t)(sizeof(Reply) - 896) + (((4 * OutP->new_stateCnt)));\n\n\t__AfterRcvRpc(2406, \"mach_exception_raise_state\")\n}\n\n#if ( __MigTypeCheck )\n#if __MIG_check__Request__mach_exc_subsystem__\n#if !defined(__MIG_check__Request__mach_exception_raise_state_identity_t__defined)\n#define __MIG_check__Request__mach_exception_raise_state_identity_t__defined\n\nmig_internal kern_return_t __MIG_check__Request__mach_exception_raise_state_identity_t(__attribute__((__unused__)) __Request__mach_exception_raise_state_identity_t *In0P, __attribute__((__unused__)) __Request__mach_exception_raise_state_identity_t **In1PP)\n{\n\n\ttypedef __Request__mach_exception_raise_state_identity_t __Request;\n\t__Request *In1P;\n#if\t__MigTypeCheck\n\tunsigned int msgh_size;\n#endif\t/* __MigTypeCheck */\n\tunsigned int msgh_size_delta;\n\n#if\t__MigTypeCheck\n\tmsgh_size = In0P->Head.msgh_size;\n\tif (!(In0P->Head.msgh_bits & MACH_MSGH_BITS_COMPLEX) ||\n\t    (In0P->msgh_body.msgh_descriptor_count != 2) ||\n\t    (msgh_size < (mach_msg_size_t)(sizeof(__Request) - 912)) ||  (msgh_size > (mach_msg_size_t)sizeof(__Request)))\n\t\treturn MIG_BAD_ARGUMENTS;\n#endif\t/* __MigTypeCheck */\n\n#if\t__MigTypeCheck\n\tif (In0P->thread.type != MACH_MSG_PORT_DESCRIPTOR ||\n\t    In0P->thread.disposition != 17)\n\t\treturn MIG_TYPE_ERROR;\n#endif\t/* __MigTypeCheck */\n\n#if\t__MigTypeCheck\n\tif (In0P->task.type != MACH_MSG_PORT_DESCRIPTOR ||\n\t    In0P->task.disposition != 17)\n\t\treturn MIG_TYPE_ERROR;\n#endif\t/* __MigTypeCheck */\n\n#if defined(__NDR_convert__int_rep__Request__mach_exception_raise_state_identity_t__codeCnt__defined)\n\tif (In0P->NDR.int_rep != NDR_record.int_rep)\n\t\t__NDR_convert__int_rep__Request__mach_exception_raise_state_identity_t__codeCnt(&In0P->codeCnt, In0P->NDR.int_rep);\n#endif\t/* __NDR_convert__int_rep__Request__mach_exception_raise_state_identity_t__codeCnt__defined */\n\tmsgh_size_delta = (8 * In0P->codeCnt);\n#if\t__MigTypeCheck\n\tif ( In0P->codeCnt > 2 )\n\t\treturn MIG_BAD_ARGUMENTS;\n\tif (((msgh_size - (mach_msg_size_t)(sizeof(__Request) - 912)) / 8 < In0P->codeCnt) ||\n\t    (msgh_size < (mach_msg_size_t)(sizeof(__Request) - 912) + (8 * In0P->codeCnt)))\n\t\treturn MIG_BAD_ARGUMENTS;\n\tmsgh_size -= msgh_size_delta;\n#endif\t/* __MigTypeCheck */\n\n\t*In1PP = In1P = (__Request *) ((pointer_t) In0P + msgh_size_delta - 16);\n\n#if defined(__NDR_convert__int_rep__Request__mach_exception_raise_state_identity_t__old_stateCnt__defined)\n\tif (In0P->NDR.int_rep != NDR_record.int_rep)\n\t\t__NDR_convert__int_rep__Request__mach_exception_raise_state_identity_t__old_stateCnt(&In1P->old_stateCnt, In1P->NDR.int_rep);\n#endif\t/* __NDR_convert__int_rep__Request__mach_exception_raise_state_identity_t__old_stateCnt__defined */\n#if\t__MigTypeCheck\n\tif ( In1P->old_stateCnt > 224 )\n\t\treturn MIG_BAD_ARGUMENTS;\n\tif (((msgh_size - (mach_msg_size_t)(sizeof(__Request) - 912)) / 4 < In1P->old_stateCnt) ||\n\t    (msgh_size != (mach_msg_size_t)(sizeof(__Request) - 912) + (4 * In1P->old_stateCnt)))\n\t\treturn MIG_BAD_ARGUMENTS;\n#endif\t/* __MigTypeCheck */\n\n\treturn MACH_MSG_SUCCESS;\n}\n#endif /* !defined(__MIG_check__Request__mach_exception_raise_state_identity_t__defined) */\n#endif /* __MIG_check__Request__mach_exc_subsystem__ */\n#endif /* ( __MigTypeCheck ) */\n\n\n/* Routine mach_exception_raise_state_identity */\nmig_internal novalue _Xmach_exception_raise_state_identity\n\t(mach_msg_header_t *InHeadP, mach_msg_header_t *OutHeadP)\n{\n\n#ifdef  __MigPackStructs\n#pragma pack(4)\n#endif\n\ttypedef struct {\n\t\tmach_msg_header_t Head;\n\t\t/* start of the kernel processed data */\n\t\tmach_msg_body_t msgh_body;\n\t\tmach_msg_port_descriptor_t thread;\n\t\tmach_msg_port_descriptor_t task;\n\t\t/* end of the kernel processed data */\n\t\tNDR_record_t NDR;\n\t\texception_type_t exception;\n\t\tmach_msg_type_number_t codeCnt;\n\t\tint64_t code[2];\n\t\tint flavor;\n\t\tmach_msg_type_number_t old_stateCnt;\n\t\tnatural_t old_state[224];\n\t\tmach_msg_trailer_t trailer;\n\t} Request __attribute__((unused));\n#ifdef  __MigPackStructs\n#pragma pack()\n#endif\n\ttypedef __Request__mach_exception_raise_state_identity_t __Request;\n\ttypedef __Reply__mach_exception_raise_state_identity_t Reply __attribute__((unused));\n\n\t/*\n\t * typedef struct {\n\t * \tmach_msg_header_t Head;\n\t * \tNDR_record_t NDR;\n\t * \tkern_return_t RetCode;\n\t * } mig_reply_error_t;\n\t */\n\n\tRequest *In0P = (Request *) InHeadP;\n\tRequest *In1P;\n\tReply *OutP = (Reply *) OutHeadP;\n#ifdef\t__MIG_check__Request__mach_exception_raise_state_identity_t__defined\n\tkern_return_t check_result;\n#endif\t/* __MIG_check__Request__mach_exception_raise_state_identity_t__defined */\n\n\t__DeclareRcvRpc(2407, \"mach_exception_raise_state_identity\")\n\t__BeforeRcvRpc(2407, \"mach_exception_raise_state_identity\")\n\n#if\tdefined(__MIG_check__Request__mach_exception_raise_state_identity_t__defined)\n\tcheck_result = __MIG_check__Request__mach_exception_raise_state_identity_t((__Request *)In0P, (__Request **)&In1P);\n\tif (check_result != MACH_MSG_SUCCESS)\n\t\t{ MIG_RETURN_ERROR(OutP, check_result); }\n#endif\t/* defined(__MIG_check__Request__mach_exception_raise_state_identity_t__defined) */\n\n\tOutP->new_stateCnt = 224;\n\n\tOutP->RetCode = catch_mach_exception_raise_state_identity(In0P->Head.msgh_request_port, In0P->thread.name, In0P->task.name, In0P->exception, In0P->code, In0P->codeCnt, &In1P->flavor, In1P->old_state, In1P->old_stateCnt, OutP->new_state, &OutP->new_stateCnt);\n\tif (OutP->RetCode != KERN_SUCCESS) {\n\t\tMIG_RETURN_ERROR(OutP, OutP->RetCode);\n\t}\n\n\tOutP->NDR = NDR_record;\n\n\n\tOutP->flavor = In1P->flavor;\n\tOutP->Head.msgh_size = (mach_msg_size_t)(sizeof(Reply) - 896) + (((4 * OutP->new_stateCnt)));\n\n\t__AfterRcvRpc(2407, \"mach_exception_raise_state_identity\")\n}\n\n\n\n/* Description of this subsystem, for use in direct RPC */\nconst struct catch_mach_exc_subsystem catch_mach_exc_subsystem = {\n\tmach_exc_server_routine,\n\t2405,\n\t2408,\n\t(mach_msg_size_t)sizeof(union __ReplyUnion__catch_mach_exc_subsystem),\n\t(vm_address_t)0,\n\t{\n          { (mig_impl_routine_t) 0,\n          (mig_stub_routine_t) _Xmach_exception_raise, 6, 0, (routine_arg_descriptor_t)0, (mach_msg_size_t)sizeof(__Reply__mach_exception_raise_t)},\n          { (mig_impl_routine_t) 0,\n          (mig_stub_routine_t) _Xmach_exception_raise_state, 9, 0, (routine_arg_descriptor_t)0, (mach_msg_size_t)sizeof(__Reply__mach_exception_raise_state_t)},\n          { (mig_impl_routine_t) 0,\n          (mig_stub_routine_t) _Xmach_exception_raise_state_identity, 11, 0, (routine_arg_descriptor_t)0, (mach_msg_size_t)sizeof(__Reply__mach_exception_raise_state_identity_t)},\n\t}\n};\n\nmig_external boolean_t mach_exc_server\n\t(mach_msg_header_t *InHeadP, mach_msg_header_t *OutHeadP)\n{\n\t/*\n\t * typedef struct {\n\t * \tmach_msg_header_t Head;\n\t * \tNDR_record_t NDR;\n\t * \tkern_return_t RetCode;\n\t * } mig_reply_error_t;\n\t */\n\n\tregister mig_routine_t routine;\n\n\tOutHeadP->msgh_bits = MACH_MSGH_BITS(MACH_MSGH_BITS_REPLY(InHeadP->msgh_bits), 0);\n\tOutHeadP->msgh_remote_port = InHeadP->msgh_reply_port;\n\t/* Minimal size: routine() will update it if different */\n\tOutHeadP->msgh_size = (mach_msg_size_t)sizeof(mig_reply_error_t);\n\tOutHeadP->msgh_local_port = MACH_PORT_NULL;\n\tOutHeadP->msgh_id = InHeadP->msgh_id + 100;\n\n\tif ((InHeadP->msgh_id > 2407) || (InHeadP->msgh_id < 2405) ||\n\t    ((routine = catch_mach_exc_subsystem.routine[InHeadP->msgh_id - 2405].stub_routine) == 0)) {\n\t\t((mig_reply_error_t *)OutHeadP)->NDR = NDR_record;\n\t\t((mig_reply_error_t *)OutHeadP)->RetCode = MIG_BAD_ID;\n\t\treturn FALSE;\n\t}\n\t(*routine) (InHeadP, OutHeadP);\n\treturn TRUE;\n}\n\nmig_external mig_routine_t mach_exc_server_routine\n\t(mach_msg_header_t *InHeadP)\n{\n\tregister int msgh_id;\n\n\tmsgh_id = InHeadP->msgh_id - 2405;\n\n\tif ((msgh_id > 2) || (msgh_id < 0))\n\t\treturn 0;\n\n\treturn catch_mach_exc_subsystem.routine[msgh_id].stub_routine;\n}\n\n#endif\n\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/mach_excServer.h",
    "content": "#ifndef\t_mach_exc_server_\n#define\t_mach_exc_server_\n\n/* Module mach_exc */\n\n#include <string.h>\n#include <mach/ndr.h>\n#include <mach/boolean.h>\n#include <mach/kern_return.h>\n#include <mach/notify.h>\n#include <mach/mach_types.h>\n#include <mach/message.h>\n#include <mach/mig_errors.h>\n#include <mach/port.h>\n\t\n/* BEGIN VOUCHER CODE */\n\n#ifndef KERNEL\n#if defined(__has_include)\n#if __has_include(<mach/mig_voucher_support.h>)\n#ifndef USING_VOUCHERS\n#define USING_VOUCHERS\n#endif\n#ifndef __VOUCHER_FORWARD_TYPE_DECLS__\n#define __VOUCHER_FORWARD_TYPE_DECLS__\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\textern boolean_t voucher_mach_msg_set(mach_msg_header_t *msg) __attribute__((weak_import));\n#ifdef __cplusplus\n}\n#endif\n#endif // __VOUCHER_FORWARD_TYPE_DECLS__\n#endif // __has_include(<mach/mach_voucher_types.h>)\n#endif // __has_include\n#endif // !KERNEL\n\t\n/* END VOUCHER CODE */\n\n\n#ifdef AUTOTEST\n#ifndef FUNCTION_PTR_T\n#define FUNCTION_PTR_T\ntypedef void (*function_ptr_t)(mach_port_t, char *, mach_msg_type_number_t);\ntypedef struct {\n        char            *name;\n        function_ptr_t  function;\n} function_table_entry;\ntypedef function_table_entry   *function_table_t;\n#endif /* FUNCTION_PTR_T */\n#endif /* AUTOTEST */\n\n#ifndef\tmach_exc_MSG_COUNT\n#define\tmach_exc_MSG_COUNT\t3\n#endif\t/* mach_exc_MSG_COUNT */\n\n#include <mach/std_types.h>\n#include <mach/mig.h>\n#include <mach/mig.h>\n#include <mach/mach_types.h>\n\n#ifdef __BeforeMigServerHeader\n__BeforeMigServerHeader\n#endif /* __BeforeMigServerHeader */\n\n\n/* Routine mach_exception_raise */\n#ifdef\tmig_external\nmig_external\n#else\nextern\n#endif\t/* mig_external */\nkern_return_t catch_mach_exception_raise\n(\n\tmach_port_t exception_port,\n\tmach_port_t thread,\n\tmach_port_t task,\n\texception_type_t exception,\n\tmach_exception_data_t code,\n\tmach_msg_type_number_t codeCnt\n);\n\n/* Routine mach_exception_raise_state */\n#ifdef\tmig_external\nmig_external\n#else\nextern\n#endif\t/* mig_external */\nkern_return_t catch_mach_exception_raise_state\n(\n\tmach_port_t exception_port,\n\texception_type_t exception,\n\tconst mach_exception_data_t code,\n\tmach_msg_type_number_t codeCnt,\n\tint *flavor,\n\tconst thread_state_t old_state,\n\tmach_msg_type_number_t old_stateCnt,\n\tthread_state_t new_state,\n\tmach_msg_type_number_t *new_stateCnt\n);\n\n/* Routine mach_exception_raise_state_identity */\n#ifdef\tmig_external\nmig_external\n#else\nextern\n#endif\t/* mig_external */\nkern_return_t catch_mach_exception_raise_state_identity\n(\n\tmach_port_t exception_port,\n\tmach_port_t thread,\n\tmach_port_t task,\n\texception_type_t exception,\n\tmach_exception_data_t code,\n\tmach_msg_type_number_t codeCnt,\n\tint *flavor,\n\tthread_state_t old_state,\n\tmach_msg_type_number_t old_stateCnt,\n\tthread_state_t new_state,\n\tmach_msg_type_number_t *new_stateCnt\n);\n\n#ifdef\tmig_external\nmig_external\n#else\nextern\n#endif\t/* mig_external */\nboolean_t mach_exc_server(\n\t\tmach_msg_header_t *InHeadP,\n\t\tmach_msg_header_t *OutHeadP);\n\n#ifdef\tmig_external\nmig_external\n#else\nextern\n#endif\t/* mig_external */\nmig_routine_t mach_exc_server_routine(\n\t\tmach_msg_header_t *InHeadP);\n\n\n/* Description of this subsystem, for use in direct RPC */\nextern const struct catch_mach_exc_subsystem {\n\tmig_server_routine_t\tserver;\t/* Server routine */\n\tmach_msg_id_t\tstart;\t/* Min routine number */\n\tmach_msg_id_t\tend;\t/* Max routine number + 1 */\n\tunsigned int\tmaxsize;\t/* Max msg size */\n\tvm_address_t\treserved;\t/* Reserved */\n\tstruct routine_descriptor\t/*Array of routine descriptors */\n\t\troutine[3];\n} catch_mach_exc_subsystem;\n\n/* typedefs for all requests */\n\n#ifndef __Request__mach_exc_subsystem__defined\n#define __Request__mach_exc_subsystem__defined\n\n#ifdef  __MigPackStructs\n#pragma pack(4)\n#endif\n\ttypedef struct {\n\t\tmach_msg_header_t Head;\n\t\t/* start of the kernel processed data */\n\t\tmach_msg_body_t msgh_body;\n\t\tmach_msg_port_descriptor_t thread;\n\t\tmach_msg_port_descriptor_t task;\n\t\t/* end of the kernel processed data */\n\t\tNDR_record_t NDR;\n\t\texception_type_t exception;\n\t\tmach_msg_type_number_t codeCnt;\n\t\tint64_t code[2];\n\t} __Request__mach_exception_raise_t __attribute__((unused));\n#ifdef  __MigPackStructs\n#pragma pack()\n#endif\n\n#ifdef  __MigPackStructs\n#pragma pack(4)\n#endif\n\ttypedef struct {\n\t\tmach_msg_header_t Head;\n\t\tNDR_record_t NDR;\n\t\texception_type_t exception;\n\t\tmach_msg_type_number_t codeCnt;\n\t\tint64_t code[2];\n\t\tint flavor;\n\t\tmach_msg_type_number_t old_stateCnt;\n\t\tnatural_t old_state[224];\n\t} __Request__mach_exception_raise_state_t __attribute__((unused));\n#ifdef  __MigPackStructs\n#pragma pack()\n#endif\n\n#ifdef  __MigPackStructs\n#pragma pack(4)\n#endif\n\ttypedef struct {\n\t\tmach_msg_header_t Head;\n\t\t/* start of the kernel processed data */\n\t\tmach_msg_body_t msgh_body;\n\t\tmach_msg_port_descriptor_t thread;\n\t\tmach_msg_port_descriptor_t task;\n\t\t/* end of the kernel processed data */\n\t\tNDR_record_t NDR;\n\t\texception_type_t exception;\n\t\tmach_msg_type_number_t codeCnt;\n\t\tint64_t code[2];\n\t\tint flavor;\n\t\tmach_msg_type_number_t old_stateCnt;\n\t\tnatural_t old_state[224];\n\t} __Request__mach_exception_raise_state_identity_t __attribute__((unused));\n#ifdef  __MigPackStructs\n#pragma pack()\n#endif\n#endif /* !__Request__mach_exc_subsystem__defined */\n\n\n/* union of all requests */\n\n#ifndef __RequestUnion__catch_mach_exc_subsystem__defined\n#define __RequestUnion__catch_mach_exc_subsystem__defined\nunion __RequestUnion__catch_mach_exc_subsystem {\n\t__Request__mach_exception_raise_t Request_mach_exception_raise;\n\t__Request__mach_exception_raise_state_t Request_mach_exception_raise_state;\n\t__Request__mach_exception_raise_state_identity_t Request_mach_exception_raise_state_identity;\n};\n#endif /* __RequestUnion__catch_mach_exc_subsystem__defined */\n/* typedefs for all replies */\n\n#ifndef __Reply__mach_exc_subsystem__defined\n#define __Reply__mach_exc_subsystem__defined\n\n#ifdef  __MigPackStructs\n#pragma pack(4)\n#endif\n\ttypedef struct {\n\t\tmach_msg_header_t Head;\n\t\tNDR_record_t NDR;\n\t\tkern_return_t RetCode;\n\t} __Reply__mach_exception_raise_t __attribute__((unused));\n#ifdef  __MigPackStructs\n#pragma pack()\n#endif\n\n#ifdef  __MigPackStructs\n#pragma pack(4)\n#endif\n\ttypedef struct {\n\t\tmach_msg_header_t Head;\n\t\tNDR_record_t NDR;\n\t\tkern_return_t RetCode;\n\t\tint flavor;\n\t\tmach_msg_type_number_t new_stateCnt;\n\t\tnatural_t new_state[224];\n\t} __Reply__mach_exception_raise_state_t __attribute__((unused));\n#ifdef  __MigPackStructs\n#pragma pack()\n#endif\n\n#ifdef  __MigPackStructs\n#pragma pack(4)\n#endif\n\ttypedef struct {\n\t\tmach_msg_header_t Head;\n\t\tNDR_record_t NDR;\n\t\tkern_return_t RetCode;\n\t\tint flavor;\n\t\tmach_msg_type_number_t new_stateCnt;\n\t\tnatural_t new_state[224];\n\t} __Reply__mach_exception_raise_state_identity_t __attribute__((unused));\n#ifdef  __MigPackStructs\n#pragma pack()\n#endif\n#endif /* !__Reply__mach_exc_subsystem__defined */\n\n\n/* union of all replies */\n\n#ifndef __ReplyUnion__catch_mach_exc_subsystem__defined\n#define __ReplyUnion__catch_mach_exc_subsystem__defined\nunion __ReplyUnion__catch_mach_exc_subsystem {\n\t__Reply__mach_exception_raise_t Reply_mach_exception_raise;\n\t__Reply__mach_exception_raise_state_t Reply_mach_exception_raise_state;\n\t__Reply__mach_exception_raise_state_identity_t Reply_mach_exception_raise_state_identity;\n};\n#endif /* __RequestUnion__catch_mach_exc_subsystem__defined */\n\n#ifndef subsystem_to_name_map_mach_exc\n#define subsystem_to_name_map_mach_exc \\\n    { \"mach_exception_raise\", 2405 },\\\n    { \"mach_exception_raise_state\", 2406 },\\\n    { \"mach_exception_raise_state_identity\", 2407 }\n#endif\n\n#ifdef __AfterMigServerHeader\n__AfterMigServerHeader\n#endif /* __AfterMigServerHeader */\n\n#endif\t /* _mach_exc_server_ */\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Adapters/AdapterProtocols.swift",
    "content": "import Foundation\n\n/// Protocol for the assertion handler that Nimble uses for all expectations.\npublic protocol AssertionHandler {\n    func assert(_ assertion: Bool, message: FailureMessage, location: SourceLocation)\n}\n\n/// Global backing interface for assertions that Nimble creates.\n/// Defaults to a private test handler that passes through to XCTest.\n///\n/// If XCTest is not available, you must assign your own assertion handler\n/// before using any matchers, otherwise Nimble will abort the program.\n///\n/// @see AssertionHandler\npublic var NimbleAssertionHandler: AssertionHandler = { () -> AssertionHandler in\n    return isXCTestAvailable() ? NimbleXCTestHandler() : NimbleXCTestUnavailableHandler()\n}()\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Adapters/AssertionDispatcher.swift",
    "content": "\n/// AssertionDispatcher allows multiple AssertionHandlers to receive\n/// assertion messages.\n///\n/// @warning Does not fully dispatch if one of the handlers raises an exception.\n///          This is possible with XCTest-based assertion handlers.\n///\npublic class AssertionDispatcher: AssertionHandler {\n    let handlers: [AssertionHandler]\n\n    public init(handlers: [AssertionHandler]) {\n        self.handlers = handlers\n    }\n\n    public func assert(_ assertion: Bool, message: FailureMessage, location: SourceLocation) {\n        for handler in handlers {\n            handler.assert(assertion, message: message, location: location)\n        }\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Adapters/AssertionRecorder.swift",
    "content": "import Foundation\n\n/// A data structure that stores information about an assertion when\n/// AssertionRecorder is set as the Nimble assertion handler.\n///\n/// @see AssertionRecorder\n/// @see AssertionHandler\npublic struct AssertionRecord: CustomStringConvertible {\n    /// Whether the assertion succeeded or failed\n    public let success: Bool\n    /// The failure message the assertion would display on failure.\n    public let message: FailureMessage\n    /// The source location the expectation occurred on.\n    public let location: SourceLocation\n\n    public var description: String {\n        return \"AssertionRecord { success=\\(success), message='\\(message.stringValue)', location=\\(location) }\"\n    }\n}\n\n/// An AssertionHandler that silently records assertions that Nimble makes.\n/// This is useful for testing failure messages for matchers.\n///\n/// @see AssertionHandler\npublic class AssertionRecorder : AssertionHandler {\n    /// All the assertions that were captured by this recorder\n    public var assertions = [AssertionRecord]()\n\n    public init() {}\n\n    public func assert(_ assertion: Bool, message: FailureMessage, location: SourceLocation) {\n        assertions.append(\n            AssertionRecord(\n                success: assertion,\n                message: message,\n                location: location))\n    }\n}\n\n/// Allows you to temporarily replace the current Nimble assertion handler with\n/// the one provided for the scope of the closure.\n///\n/// Once the closure finishes, then the original Nimble assertion handler is restored.\n///\n/// @see AssertionHandler\npublic func withAssertionHandler(_ tempAssertionHandler: AssertionHandler, closure: @escaping () throws -> Void) {\n    let environment = NimbleEnvironment.activeInstance\n    let oldRecorder = environment.assertionHandler\n    let capturer = NMBExceptionCapture(handler: nil, finally: ({\n        environment.assertionHandler = oldRecorder\n    }))\n    environment.assertionHandler = tempAssertionHandler\n    capturer.tryBlock {\n        try! closure()\n    }\n}\n\n/// Captures expectations that occur in the given closure. Note that all\n/// expectations will still go through to the default Nimble handler.\n///\n/// This can be useful if you want to gather information about expectations\n/// that occur within a closure.\n///\n/// @param silently expectations are no longer send to the default Nimble \n///                 assertion handler when this is true. Defaults to false.\n///\n/// @see gatherFailingExpectations\npublic func gatherExpectations(silently: Bool = false, closure: @escaping () -> Void) -> [AssertionRecord] {\n    let previousRecorder = NimbleEnvironment.activeInstance.assertionHandler\n    let recorder = AssertionRecorder()\n    let handlers: [AssertionHandler]\n\n    if silently {\n        handlers = [recorder]\n    } else {\n        handlers = [recorder, previousRecorder]\n    }\n\n    let dispatcher = AssertionDispatcher(handlers: handlers)\n    withAssertionHandler(dispatcher, closure: closure)\n    return recorder.assertions\n}\n\n/// Captures failed expectations that occur in the given closure. Note that all\n/// expectations will still go through to the default Nimble handler.\n///\n/// This can be useful if you want to gather information about failed\n/// expectations that occur within a closure.\n///\n/// @param silently expectations are no longer send to the default Nimble\n///                 assertion handler when this is true. Defaults to false.\n///\n/// @see gatherExpectations\n/// @see raiseException source for an example use case.\npublic func gatherFailingExpectations(silently: Bool = false, closure: @escaping () -> Void) -> [AssertionRecord] {\n    let assertions = gatherExpectations(silently: silently, closure: closure)\n    return assertions.filter { assertion in\n        !assertion.success\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Adapters/NMBExpectation.swift",
    "content": "import Foundation\n\n#if _runtime(_ObjC)\n\ninternal struct ObjCMatcherWrapper : Matcher {\n    let matcher: NMBMatcher\n\n    func matches(_ actualExpression: Expression<NSObject>, failureMessage: FailureMessage) -> Bool {\n        return matcher.matches(\n            ({ try! actualExpression.evaluate() }),\n            failureMessage: failureMessage,\n            location: actualExpression.location)\n    }\n\n    func doesNotMatch(_ actualExpression: Expression<NSObject>, failureMessage: FailureMessage) -> Bool {\n        return matcher.doesNotMatch(\n            ({ try! actualExpression.evaluate() }),\n            failureMessage: failureMessage,\n            location: actualExpression.location)\n    }\n}\n\n// Equivalent to Expectation, but for Nimble's Objective-C interface\npublic class NMBExpectation : NSObject {\n    internal let _actualBlock: () -> NSObject!\n    internal var _negative: Bool\n    internal let _file: FileString\n    internal let _line: UInt\n    internal var _timeout: TimeInterval = 1.0\n\n    public init(actualBlock: @escaping () -> NSObject!, negative: Bool, file: FileString, line: UInt) {\n        self._actualBlock = actualBlock\n        self._negative = negative\n        self._file = file\n        self._line = line\n    }\n\n    private var expectValue: Expectation<NSObject> {\n        return expect(_file, line: _line){\n            self._actualBlock() as NSObject?\n        }\n    }\n\n    public var withTimeout: (TimeInterval) -> NMBExpectation {\n        return ({ timeout in self._timeout = timeout\n            return self\n        })\n    }\n\n    public var to: (NMBMatcher) -> Void {\n        return ({ matcher in\n            self.expectValue.to(ObjCMatcherWrapper(matcher: matcher))\n        })\n    }\n\n    public var toWithDescription: (NMBMatcher, String) -> Void {\n        return ({ matcher, description in\n            self.expectValue.to(ObjCMatcherWrapper(matcher: matcher), description: description)\n        })\n    }\n\n    public var toNot: (NMBMatcher) -> Void {\n        return ({ matcher in\n            self.expectValue.toNot(\n                ObjCMatcherWrapper(matcher: matcher)\n            )\n        })\n    }\n\n    public var toNotWithDescription: (NMBMatcher, String) -> Void {\n        return ({ matcher, description in\n            self.expectValue.toNot(\n                ObjCMatcherWrapper(matcher: matcher), description: description\n            )\n        })\n    }\n\n    public var notTo: (NMBMatcher) -> Void { return toNot }\n\n    public var notToWithDescription: (NMBMatcher, String) -> Void { return toNotWithDescription }\n\n    public var toEventually: (NMBMatcher) -> Void {\n        return ({ matcher in\n            self.expectValue.toEventually(\n                ObjCMatcherWrapper(matcher: matcher),\n                timeout: self._timeout,\n                description: nil\n            )\n        })\n    }\n\n    public var toEventuallyWithDescription: (NMBMatcher, String) -> Void {\n        return ({ matcher, description in\n            self.expectValue.toEventually(\n                ObjCMatcherWrapper(matcher: matcher),\n                timeout: self._timeout,\n                description: description\n            )\n        })\n    }\n\n    public var toEventuallyNot: (NMBMatcher) -> Void {\n        return ({ matcher in\n            self.expectValue.toEventuallyNot(\n                ObjCMatcherWrapper(matcher: matcher),\n                timeout: self._timeout,\n                description: nil\n            )\n        })\n    }\n\n    public var toEventuallyNotWithDescription: (NMBMatcher, String) -> Void {\n        return ({ matcher, description in\n            self.expectValue.toEventuallyNot(\n                ObjCMatcherWrapper(matcher: matcher),\n                timeout: self._timeout,\n                description: description\n            )\n        })\n    }\n\n    public var toNotEventually: (NMBMatcher) -> Void { return toEventuallyNot }\n\n    public var toNotEventuallyWithDescription: (NMBMatcher, String) -> Void { return toEventuallyNotWithDescription }\n\n    public class func failWithMessage(_ message: String, file: FileString, line: UInt) {\n        fail(message, location: SourceLocation(file: file, line: line))\n    }\n}\n\n#endif\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Adapters/NMBObjCMatcher.swift",
    "content": "import Foundation\n\n#if _runtime(_ObjC)\n\npublic typealias MatcherBlock = (_ actualExpression: Expression<NSObject>, _ failureMessage: FailureMessage) -> Bool\npublic typealias FullMatcherBlock = (_ actualExpression: Expression<NSObject>, _ failureMessage: FailureMessage, _ shouldNotMatch: Bool) -> Bool\n\npublic class NMBObjCMatcher : NSObject, NMBMatcher {\n    let _match: MatcherBlock\n    let _doesNotMatch: MatcherBlock\n    let canMatchNil: Bool\n\n    public init(canMatchNil: Bool, matcher: @escaping MatcherBlock, notMatcher: @escaping MatcherBlock) {\n        self.canMatchNil = canMatchNil\n        self._match = matcher\n        self._doesNotMatch = notMatcher\n    }\n\n    public convenience init(matcher: @escaping MatcherBlock) {\n        self.init(canMatchNil: true, matcher: matcher)\n    }\n\n    public convenience init(canMatchNil: Bool, matcher: @escaping MatcherBlock) {\n        self.init(canMatchNil: canMatchNil, matcher: matcher, notMatcher: ({ actualExpression, failureMessage in\n            return !matcher(actualExpression, failureMessage)\n        }))\n    }\n\n    public convenience init(matcher: @escaping FullMatcherBlock) {\n        self.init(canMatchNil: true, matcher: matcher)\n    }\n\n    public convenience init(canMatchNil: Bool, matcher: @escaping FullMatcherBlock) {\n        self.init(canMatchNil: canMatchNil, matcher: ({ actualExpression, failureMessage in\n            return matcher(actualExpression, failureMessage, false)\n        }), notMatcher: ({ actualExpression, failureMessage in\n            return matcher(actualExpression, failureMessage, true)\n        }))\n    }\n\n    private func canMatch(_ actualExpression: Expression<NSObject>, failureMessage: FailureMessage) -> Bool {\n        do {\n            if !canMatchNil {\n                if try actualExpression.evaluate() == nil {\n                    failureMessage.postfixActual = \" (use beNil() to match nils)\"\n                    return false\n                }\n            }\n        } catch let error {\n            failureMessage.actualValue = \"an unexpected error thrown: \\(error)\"\n            return false\n        }\n        return true\n    }\n\n    public func matches(_ actualBlock: @escaping () -> NSObject!, failureMessage: FailureMessage, location: SourceLocation) -> Bool {\n        let expr = Expression(expression: actualBlock, location: location)\n        let result = _match(\n            expr,\n            failureMessage)\n        if self.canMatch(Expression(expression: actualBlock, location: location), failureMessage: failureMessage) {\n            return result\n        } else {\n            return false\n        }\n    }\n\n    public func doesNotMatch(_ actualBlock: @escaping () -> NSObject!, failureMessage: FailureMessage, location: SourceLocation) -> Bool {\n        let expr = Expression(expression: actualBlock, location: location)\n        let result = _doesNotMatch(\n            expr,\n            failureMessage)\n        if self.canMatch(Expression(expression: actualBlock, location: location), failureMessage: failureMessage) {\n            return result\n        } else {\n            return false\n        }\n    }\n}\n\n#endif\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleEnvironment.swift",
    "content": "import Dispatch\nimport Foundation\n\n/// \"Global\" state of Nimble is stored here. Only DSL functions should access / be aware of this\n/// class' existance\ninternal class NimbleEnvironment {\n    static var activeInstance: NimbleEnvironment {\n        get {\n            let env = Thread.current.threadDictionary[\"NimbleEnvironment\"]\n            if let env = env as? NimbleEnvironment {\n                return env\n            } else {\n                let newEnv = NimbleEnvironment()\n                self.activeInstance = newEnv\n                return newEnv\n            }\n        }\n        set {\n            Thread.current.threadDictionary[\"NimbleEnvironment\"] = newValue\n        }\n    }\n\n    // TODO: eventually migrate the global to this environment value\n    var assertionHandler: AssertionHandler {\n        get { return NimbleAssertionHandler }\n        set { NimbleAssertionHandler = newValue }\n    }\n\n    var suppressTVOSAssertionWarning: Bool = false\n    var awaiter: Awaiter\n\n    init() {\n        let timeoutQueue: DispatchQueue\n        if #available(OSX 10.10, *) {\n            timeoutQueue = DispatchQueue.global(qos: .userInitiated)\n        } else {\n            timeoutQueue = DispatchQueue.global(priority: .high)\n        }\n\n        awaiter = Awaiter(\n            waitLock: AssertionWaitLock(),\n            asyncQueue: .main,\n            timeoutQueue: timeoutQueue)\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleXCTestHandler.swift",
    "content": "import Foundation\nimport XCTest\n\n/// Default handler for Nimble. This assertion handler passes failures along to\n/// XCTest.\npublic class NimbleXCTestHandler : AssertionHandler {\n    public func assert(_ assertion: Bool, message: FailureMessage, location: SourceLocation) {\n        if !assertion {\n            recordFailure(\"\\(message.stringValue)\\n\", location: location)\n        }\n    }\n}\n\n/// Alternative handler for Nimble. This assertion handler passes failures along\n/// to XCTest by attempting to reduce the failure message size.\npublic class NimbleShortXCTestHandler: AssertionHandler {\n    public func assert(_ assertion: Bool, message: FailureMessage, location: SourceLocation) {\n        if !assertion {\n            let msg: String\n            if let actual = message.actualValue {\n                msg = \"got: \\(actual) \\(message.postfixActual)\"\n            } else {\n                msg = \"expected \\(message.to) \\(message.postfixMessage)\"\n            }\n            recordFailure(\"\\(msg)\\n\", location: location)\n        }\n    }\n}\n\n/// Fallback handler in case XCTest is unavailable. This assertion handler will abort\n/// the program if it is invoked.\nclass NimbleXCTestUnavailableHandler : AssertionHandler {\n    func assert(_ assertion: Bool, message: FailureMessage, location: SourceLocation) {\n        fatalError(\"XCTest is not available and no custom assertion handler was configured. Aborting.\")\n    }\n}\n\n#if _runtime(_ObjC)\n    /// Helper class providing access to the currently executing XCTestCase instance, if any\n@objc final internal class CurrentTestCaseTracker: NSObject, XCTestObservation {\n    @objc static let sharedInstance = CurrentTestCaseTracker()\n\n    private(set) var currentTestCase: XCTestCase?\n\n    @objc func testCaseWillStart(_ testCase: XCTestCase) {\n        currentTestCase = testCase\n    }\n\n    @objc func testCaseDidFinish(_ testCase: XCTestCase) {\n        currentTestCase = nil\n    }\n}\n#endif\n\n\nfunc isXCTestAvailable() -> Bool {\n#if _runtime(_ObjC)\n    // XCTest is weakly linked and so may not be present\n    return NSClassFromString(\"XCTestCase\") != nil\n#else\n    return true\n#endif\n}\n\nprivate func recordFailure(_ message: String, location: SourceLocation) {\n#if _runtime(_ObjC)\n    if let testCase = CurrentTestCaseTracker.sharedInstance.currentTestCase {\n        testCase.recordFailure(withDescription: message, inFile: location.file, atLine: location.line, expected: true)\n    } else {\n        let msg = \"Attempted to report a test failure to XCTest while no test case was running. \" +\n        \"The failure was:\\n\\\"\\(message)\\\"\\nIt occurred at: \\(location.file):\\(location.line)\"\n        NSException(name: .internalInconsistencyException, reason: msg, userInfo: nil).raise()\n    }\n#else\n    XCTFail(\"\\(message)\\n\", file: location.file, line: location.line)\n#endif\n}\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/DSL+Wait.swift",
    "content": "import Dispatch\nimport Foundation\n\nprivate enum ErrorResult {\n    case exception(NSException)\n    case error(Error)\n    case none\n}\n\n/// Only classes, protocols, methods, properties, and subscript declarations can be\n/// bridges to Objective-C via the @objc keyword. This class encapsulates callback-style\n/// asynchronous waiting logic so that it may be called from Objective-C and Swift.\ninternal class NMBWait: NSObject {\n    internal class func until(\n        timeout: TimeInterval,\n        file: FileString = #file,\n        line: UInt = #line,\n        action: @escaping (@escaping () -> Void) -> Void) -> Void {\n            return throwableUntil(timeout: timeout, file: file, line: line) { done in\n                action(done)\n            }\n    }\n\n    // Using a throwable closure makes this method not objc compatible.\n    internal class func throwableUntil(\n        timeout: TimeInterval,\n        file: FileString = #file,\n        line: UInt = #line,\n        action: @escaping (@escaping () -> Void) throws -> Void) -> Void {\n            let awaiter = NimbleEnvironment.activeInstance.awaiter\n            let leeway = timeout / 2.0\n            let result = awaiter.performBlock { (done: @escaping (ErrorResult) -> Void) throws -> Void in\n                DispatchQueue.main.async {\n                    let capture = NMBExceptionCapture(\n                        handler: ({ exception in\n                            done(.exception(exception))\n                        }),\n                        finally: ({ })\n                    )\n                    capture.tryBlock {\n                        do {\n                            try action() {\n                                done(.none)\n                            }\n                        } catch let e {\n                            done(.error(e))\n                        }\n                    }\n                }\n            }.timeout(timeout, forcefullyAbortTimeout: leeway).wait(\"waitUntil(...)\", file: file, line: line)\n\n            switch result {\n            case .incomplete: internalError(\"Reached .incomplete state for waitUntil(...).\")\n            case .blockedRunLoop:\n                fail(blockedRunLoopErrorMessageFor(\"-waitUntil()\", leeway: leeway),\n                    file: file, line: line)\n            case .timedOut:\n                let pluralize = (timeout == 1 ? \"\" : \"s\")\n                fail(\"Waited more than \\(timeout) second\\(pluralize)\", file: file, line: line)\n            case let .raisedException(exception):\n                fail(\"Unexpected exception raised: \\(exception)\")\n            case let .errorThrown(error):\n                fail(\"Unexpected error thrown: \\(error)\")\n            case .completed(.exception(let exception)):\n                fail(\"Unexpected exception raised: \\(exception)\")\n            case .completed(.error(let error)):\n                fail(\"Unexpected error thrown: \\(error)\")\n            case .completed(.none): // success\n                break\n            }\n    }\n\n    #if _runtime(_ObjC)\n    @objc(untilFile:line:action:)\n    internal class func until(_ file: FileString = #file, line: UInt = #line, action: @escaping (() -> Void) -> Void) -> Void {\n        until(timeout: 1, file: file, line: line, action: action)\n    }\n    #else\n    internal class func until(_ file: FileString = #file, line: UInt = #line, action: @escaping (() -> Void) -> Void) -> Void {\n        until(timeout: 1, file: file, line: line, action: action)\n    }\n    #endif\n}\n\ninternal func blockedRunLoopErrorMessageFor(_ fnName: String, leeway: TimeInterval) -> String {\n    return \"\\(fnName) timed out but was unable to run the timeout handler because the main thread is unresponsive (\\(leeway) seconds is allow after the wait times out). Conditions that may cause this include processing blocking IO on the main thread, calls to sleep(), deadlocks, and synchronous IPC. Nimble forcefully stopped run loop which may cause future failures in test run.\"\n}\n\n/// Wait asynchronously until the done closure is called or the timeout has been reached.\n///\n/// @discussion\n/// Call the done() closure to indicate the waiting has completed.\n/// \n/// This function manages the main run loop (`NSRunLoop.mainRunLoop()`) while this function\n/// is executing. Any attempts to touch the run loop may cause non-deterministic behavior.\npublic func waitUntil(timeout: TimeInterval = 1, file: FileString = #file, line: UInt = #line, action: @escaping (@escaping () -> Void) -> Void) -> Void {\n    NMBWait.until(timeout: timeout, file: file, line: line, action: action)\n}\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/DSL.swift",
    "content": "import Foundation\n\n/// Make an expectation on a given actual value. The value given is lazily evaluated.\npublic func expect<T>(_ expression: @autoclosure @escaping () throws -> T?, file: FileString = #file, line: UInt = #line) -> Expectation<T> {\n    return Expectation(\n        expression: Expression(\n            expression: expression,\n            location: SourceLocation(file: file, line: line),\n            isClosure: true))\n}\n\n/// Make an expectation on a given actual value. The closure is lazily invoked.\npublic func expect<T>(_ file: FileString = #file, line: UInt = #line, expression: @escaping () throws -> T?) -> Expectation<T> {\n    return Expectation(\n        expression: Expression(\n            expression: expression,\n            location: SourceLocation(file: file, line: line),\n            isClosure: true))\n}\n\n/// Always fails the test with a message and a specified location.\npublic func fail(_ message: String, location: SourceLocation) {\n    let handler = NimbleEnvironment.activeInstance.assertionHandler\n    handler.assert(false, message: FailureMessage(stringValue: message), location: location)\n}\n\n/// Always fails the test with a message.\npublic func fail(_ message: String, file: FileString = #file, line: UInt = #line) {\n    fail(message, location: SourceLocation(file: file, line: line))\n}\n\n/// Always fails the test.\npublic func fail(_ file: FileString = #file, line: UInt = #line) {\n    fail(\"fail() always fails\", file: file, line: line)\n}\n\n/// Like Swift's precondition(), but raises NSExceptions instead of sigaborts\ninternal func nimblePrecondition(\n    _ expr: @autoclosure() -> Bool,\n    _ name: @autoclosure() -> String,\n    _ message: @autoclosure() -> String,\n    file: StaticString = #file,\n    line: UInt = #line) {\n        let result = expr()\n        if !result {\n#if _runtime(_ObjC)\n            let e = NSException(\n                name: NSExceptionName(name()),\n                reason: message(),\n                userInfo: nil)\n            e.raise()\n#else\n            preconditionFailure(\"\\(name()) - \\(message())\", file: file, line: line)\n#endif\n        }\n}\n\ninternal func internalError(_ msg: String, file: FileString = #file, line: UInt = #line) -> Never {\n    fatalError(\n        \"Nimble Bug Found: \\(msg) at \\(file):\\(line).\\n\" +\n        \"Please file a bug to Nimble: https://github.com/Quick/Nimble/issues with the \" +\n        \"code snippet that caused this error.\"\n    )\n}\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Expectation.swift",
    "content": "import Foundation\n\ninternal func expressionMatches<T, U>(_ expression: Expression<T>, matcher: U, to: String, description: String?) -> (Bool, FailureMessage)\n    where U: Matcher, U.ValueType == T\n{\n    let msg = FailureMessage()\n    msg.userDescription = description\n    msg.to = to\n    do {\n        let pass = try matcher.matches(expression, failureMessage: msg)\n        if msg.actualValue == \"\" {\n            msg.actualValue = \"<\\(stringify(try expression.evaluate()))>\"\n        }\n        return (pass, msg)\n    } catch let error {\n        msg.actualValue = \"an unexpected error thrown: <\\(error)>\"\n        return (false, msg)\n    }\n}\n\ninternal func expressionDoesNotMatch<T, U>(_ expression: Expression<T>, matcher: U, toNot: String, description: String?) -> (Bool, FailureMessage)\n    where U: Matcher, U.ValueType == T\n{\n    let msg = FailureMessage()\n    msg.userDescription = description\n    msg.to = toNot\n    do {\n        let pass = try matcher.doesNotMatch(expression, failureMessage: msg)\n        if msg.actualValue == \"\" {\n            msg.actualValue = \"<\\(stringify(try expression.evaluate()))>\"\n        }\n        return (pass, msg)\n    } catch let error {\n        msg.actualValue = \"an unexpected error thrown: <\\(error)>\"\n        return (false, msg)\n    }\n}\n\npublic struct Expectation<T> {\n\n    public let expression: Expression<T>\n\n    public func verify(_ pass: Bool, _ message: FailureMessage) {\n        let handler = NimbleEnvironment.activeInstance.assertionHandler\n        handler.assert(pass, message: message, location: expression.location)\n    }\n\n    /// Tests the actual value using a matcher to match.\n    public func to<U>(_ matcher: U, description: String? = nil)\n        where U: Matcher, U.ValueType == T\n    {\n        let (pass, msg) = expressionMatches(expression, matcher: matcher, to: \"to\", description: description)\n        verify(pass, msg)\n    }\n\n    /// Tests the actual value using a matcher to not match.\n    public func toNot<U>(_ matcher: U, description: String? = nil)\n        where U: Matcher, U.ValueType == T\n    {\n        let (pass, msg) = expressionDoesNotMatch(expression, matcher: matcher, toNot: \"to not\", description: description)\n        verify(pass, msg)\n    }\n\n    /// Tests the actual value using a matcher to not match.\n    ///\n    /// Alias to toNot().\n    public func notTo<U>(_ matcher: U, description: String? = nil)\n        where U: Matcher, U.ValueType == T\n    {\n        toNot(matcher, description: description)\n    }\n\n    // see:\n    // - AsyncMatcherWrapper for extension\n    // - NMBExpectation for Objective-C interface\n}\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Expression.swift",
    "content": "import Foundation\n\n// Memoizes the given closure, only calling the passed\n// closure once; even if repeat calls to the returned closure\ninternal func memoizedClosure<T>(_ closure: @escaping () throws -> T) -> (Bool) throws -> T {\n    var cache: T?\n    return ({ withoutCaching in\n        if (withoutCaching || cache == nil) {\n            cache = try closure()\n        }\n        return cache!\n    })\n}\n\n/// Expression represents the closure of the value inside expect(...).\n/// Expressions are memoized by default. This makes them safe to call\n/// evaluate() multiple times without causing a re-evaluation of the underlying\n/// closure.\n///\n/// @warning Since the closure can be any code, Objective-C code may choose\n///          to raise an exception. Currently, Expression does not memoize\n///          exception raising.\n///\n/// This provides a common consumable API for matchers to utilize to allow\n/// Nimble to change internals to how the captured closure is managed.\npublic struct Expression<T> {\n    internal let _expression: (Bool) throws -> T?\n    internal let _withoutCaching: Bool\n    public let location: SourceLocation\n    public let isClosure: Bool\n\n    /// Creates a new expression struct. Normally, expect(...) will manage this\n    /// creation process. The expression is memoized.\n    ///\n    /// @param expression The closure that produces a given value.\n    /// @param location The source location that this closure originates from.\n    /// @param isClosure A bool indicating if the captured expression is a\n    ///                  closure or internally produced closure. Some matchers\n    ///                  may require closures. For example, toEventually()\n    ///                  requires an explicit closure. This gives Nimble\n    ///                  flexibility if @autoclosure behavior changes between\n    ///                  Swift versions. Nimble internals always sets this true.\n    public init(expression: @escaping () throws -> T?, location: SourceLocation, isClosure: Bool = true) {\n        self._expression = memoizedClosure(expression)\n        self.location = location\n        self._withoutCaching = false\n        self.isClosure = isClosure\n    }\n\n    /// Creates a new expression struct. Normally, expect(...) will manage this\n    /// creation process.\n    ///\n    /// @param expression The closure that produces a given value.\n    /// @param location The source location that this closure originates from.\n    /// @param withoutCaching Indicates if the struct should memoize the given\n    ///                       closure's result. Subsequent evaluate() calls will\n    ///                       not call the given closure if this is true.\n    /// @param isClosure A bool indicating if the captured expression is a\n    ///                  closure or internally produced closure. Some matchers\n    ///                  may require closures. For example, toEventually()\n    ///                  requires an explicit closure. This gives Nimble\n    ///                  flexibility if @autoclosure behavior changes between\n    ///                  Swift versions. Nimble internals always sets this true.\n    public init(memoizedExpression: @escaping (Bool) throws -> T?, location: SourceLocation, withoutCaching: Bool, isClosure: Bool = true) {\n        self._expression = memoizedExpression\n        self.location = location\n        self._withoutCaching = withoutCaching\n        self.isClosure = isClosure\n    }\n\n    /// Returns a new Expression from the given expression. Identical to a map()\n    /// on this type. This should be used only to typecast the Expression's\n    /// closure value.\n    ///\n    /// The returned expression will preserve location and isClosure.\n    ///\n    /// @param block The block that can cast the current Expression value to a\n    ///              new type.\n    public func cast<U>(_ block: @escaping (T?) throws -> U?) -> Expression<U> {\n        return Expression<U>(expression: ({ try block(self.evaluate()) }), location: self.location, isClosure: self.isClosure)\n    }\n\n    public func evaluate() throws -> T? {\n        return try self._expression(_withoutCaching)\n    }\n\n    public func withoutCaching() -> Expression<T> {\n        return Expression(memoizedExpression: self._expression, location: location, withoutCaching: true, isClosure: isClosure)\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/FailureMessage.swift",
    "content": "import Foundation\n\n/// Encapsulates the failure message that matchers can report to the end user.\n///\n/// This is shared state between Nimble and matchers that mutate this value.\npublic class FailureMessage: NSObject {\n    public var expected: String = \"expected\"\n    public var actualValue: String? = \"\" // empty string -> use default; nil -> exclude\n    public var to: String = \"to\"\n    public var postfixMessage: String = \"match\"\n    public var postfixActual: String = \"\"\n    /// An optional message that will be appended as a new line and provides additional details\n    /// about the failure. This message will only be visible in the issue navigator / in logs but\n    /// not directly in the source editor since only a single line is presented there.\n    public var extendedMessage: String? = nil\n    public var userDescription: String? = nil\n\n    public var stringValue: String {\n        get {\n            if let value = _stringValueOverride {\n                return value\n            } else {\n                return computeStringValue()\n            }\n        }\n        set {\n            _stringValueOverride = newValue\n        }\n    }\n\n    internal var _stringValueOverride: String?\n\n    public override init() {\n    }\n\n    public init(stringValue: String) {\n        _stringValueOverride = stringValue\n    }\n\n    internal func stripNewlines(_ str: String) -> String {\n        let whitespaces = CharacterSet.whitespacesAndNewlines\n        return str\n            .components(separatedBy: \"\\n\")\n            .map { line in line.trimmingCharacters(in: whitespaces) }\n            .joined(separator: \"\")\n    }\n\n    internal func computeStringValue() -> String {\n        var value = \"\\(expected) \\(to) \\(postfixMessage)\"\n        if let actualValue = actualValue {\n            value = \"\\(expected) \\(to) \\(postfixMessage), got \\(actualValue)\\(postfixActual)\"\n        }\n        value = stripNewlines(value)\n\n        if let extendedMessage = extendedMessage {\n            value += \"\\n\\(stripNewlines(extendedMessage))\"\n        }\n\n        if let userDescription = userDescription {\n            return \"\\(userDescription)\\n\\(value)\"\n        }\n        \n        return value\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Matchers/AllPass.swift",
    "content": "import Foundation\n\npublic func allPass<T,U>\n    (_ passFunc: @escaping (T?) -> Bool) -> NonNilMatcherFunc<U>\n    where U: Sequence, U.Iterator.Element == T\n{\n    return allPass(\"pass a condition\", passFunc)\n}\n\npublic func allPass<T,U>\n    (_ passName: String, _ passFunc: @escaping (T?) -> Bool) -> NonNilMatcherFunc<U>\n    where U: Sequence, U.Iterator.Element == T\n{\n    return createAllPassMatcher() {\n        expression, failureMessage in\n        failureMessage.postfixMessage = passName\n        return passFunc(try expression.evaluate())\n    }\n}\n\npublic func allPass<U,V>\n    (_ matcher: V) -> NonNilMatcherFunc<U>\n    where U: Sequence, V: Matcher, U.Iterator.Element == V.ValueType\n{\n    return createAllPassMatcher() {\n        try matcher.matches($0, failureMessage: $1)\n    }\n}\n\nprivate func createAllPassMatcher<T,U>\n    (_ elementEvaluator: @escaping (Expression<T>, FailureMessage) throws -> Bool) -> NonNilMatcherFunc<U>\n    where U: Sequence, U.Iterator.Element == T\n{\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.actualValue = nil\n        if let actualValue = try actualExpression.evaluate() {\n            for currentElement in actualValue {\n                let exp = Expression(\n                    expression: {currentElement}, location: actualExpression.location)\n                if try !elementEvaluator(exp, failureMessage) {\n                    failureMessage.postfixMessage =\n                        \"all \\(failureMessage.postfixMessage),\"\n                        + \" but failed first at element <\\(stringify(currentElement))>\"\n                        + \" in <\\(stringify(actualValue))>\"\n                    return false\n                }\n            }\n            failureMessage.postfixMessage = \"all \\(failureMessage.postfixMessage)\"\n        } else {\n            failureMessage.postfixMessage = \"all pass (use beNil() to match nils)\"\n            return false\n        }\n\n        return true\n    }\n}\n\n#if _runtime(_ObjC)\nextension NMBObjCMatcher {\n    public class func allPassMatcher(_ matcher: NMBObjCMatcher) -> NMBObjCMatcher {\n        return NMBObjCMatcher(canMatchNil: false) { actualExpression, failureMessage in\n            let location = actualExpression.location\n            let actualValue = try! actualExpression.evaluate()\n            var nsObjects = [NSObject]()\n            \n            var collectionIsUsable = true\n            if let value = actualValue as? NSFastEnumeration {\n                let generator = NSFastEnumerationIterator(value)\n                while let obj = generator.next() {\n                    if let nsObject = obj as? NSObject {\n                        nsObjects.append(nsObject)\n                    } else {\n                        collectionIsUsable = false\n                        break\n                    }\n                }\n            } else {\n                collectionIsUsable = false\n            }\n            \n            if !collectionIsUsable {\n                failureMessage.postfixMessage =\n                  \"allPass only works with NSFastEnumeration (NSArray, NSSet, ...) of NSObjects\"\n                failureMessage.expected = \"\"\n                failureMessage.to = \"\"\n                return false\n            }\n            \n            let expr = Expression(expression: ({ nsObjects }), location: location)\n            let elementEvaluator: (Expression<NSObject>, FailureMessage) -> Bool = {\n                expression, failureMessage in\n                return matcher.matches(\n                    {try! expression.evaluate()}, failureMessage: failureMessage, location: expr.location)\n            }\n            return try! createAllPassMatcher(elementEvaluator).matches(\n                expr, failureMessage: failureMessage)\n        }\n    }\n}\n#endif\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Matchers/AsyncMatcherWrapper.swift",
    "content": "import Foundation\n\n/// If you are running on a slower machine, it could be useful to increase the default timeout value\n/// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.\npublic struct AsyncDefaults {\n    public static var Timeout: TimeInterval = 1\n    public static var PollInterval: TimeInterval = 0.01\n}\n\ninternal struct AsyncMatcherWrapper<T, U>: Matcher\n    where U: Matcher, U.ValueType == T\n{\n    let fullMatcher: U\n    let timeoutInterval: TimeInterval\n    let pollInterval: TimeInterval\n\n    init(fullMatcher: U, timeoutInterval: TimeInterval = AsyncDefaults.Timeout, pollInterval: TimeInterval = AsyncDefaults.PollInterval) {\n      self.fullMatcher = fullMatcher\n      self.timeoutInterval = timeoutInterval\n      self.pollInterval = pollInterval\n    }\n\n    func matches(_ actualExpression: Expression<T>, failureMessage: FailureMessage) -> Bool {\n        let uncachedExpression = actualExpression.withoutCaching()\n        let fnName = \"expect(...).toEventually(...)\"\n        let result = pollBlock(\n            pollInterval: pollInterval,\n            timeoutInterval: timeoutInterval,\n            file: actualExpression.location.file,\n            line: actualExpression.location.line,\n            fnName: fnName) {\n                try self.fullMatcher.matches(uncachedExpression, failureMessage: failureMessage)\n        }\n        switch (result) {\n        case let .completed(isSuccessful): return isSuccessful\n        case .timedOut: return false\n        case let .errorThrown(error):\n            failureMessage.actualValue = \"an unexpected error thrown: <\\(error)>\"\n            return false\n        case let .raisedException(exception):\n            failureMessage.actualValue = \"an unexpected exception thrown: <\\(exception)>\"\n            return false\n        case .blockedRunLoop:\n            failureMessage.postfixMessage += \" (timed out, but main thread was unresponsive).\"\n            return false\n        case .incomplete:\n            internalError(\"Reached .incomplete state for toEventually(...).\")\n        }\n    }\n\n    func doesNotMatch(_ actualExpression: Expression<T>, failureMessage: FailureMessage) -> Bool  {\n        let uncachedExpression = actualExpression.withoutCaching()\n        let result = pollBlock(\n            pollInterval: pollInterval,\n            timeoutInterval: timeoutInterval,\n            file: actualExpression.location.file,\n            line: actualExpression.location.line,\n            fnName: \"expect(...).toEventuallyNot(...)\") {\n                try self.fullMatcher.doesNotMatch(uncachedExpression, failureMessage: failureMessage)\n        }\n        switch (result) {\n        case let .completed(isSuccessful): return isSuccessful\n        case .timedOut: return false\n        case let .errorThrown(error):\n            failureMessage.actualValue = \"an unexpected error thrown: <\\(error)>\"\n            return false\n        case let .raisedException(exception):\n            failureMessage.actualValue = \"an unexpected exception thrown: <\\(exception)>\"\n            return false\n        case .blockedRunLoop:\n            failureMessage.postfixMessage += \" (timed out, but main thread was unresponsive).\"\n            return false\n        case .incomplete:\n            internalError(\"Reached .incomplete state for toEventuallyNot(...).\")\n        }\n    }\n}\n\nprivate let toEventuallyRequiresClosureError = FailureMessage(stringValue: \"expect(...).toEventually(...) requires an explicit closure (eg - expect { ... }.toEventually(...) )\\nSwift 1.2 @autoclosure behavior has changed in an incompatible way for Nimble to function\")\n\n\nextension Expectation {\n    /// Tests the actual value using a matcher to match by checking continuously\n    /// at each pollInterval until the timeout is reached.\n    ///\n    /// @discussion\n    /// This function manages the main run loop (`NSRunLoop.mainRunLoop()`) while this function\n    /// is executing. Any attempts to touch the run loop may cause non-deterministic behavior.\n    public func toEventually<U>(_ matcher: U, timeout: TimeInterval = AsyncDefaults.Timeout, pollInterval: TimeInterval = AsyncDefaults.PollInterval, description: String? = nil)\n        where U: Matcher, U.ValueType == T\n    {\n        if expression.isClosure {\n            let (pass, msg) = expressionMatches(\n                expression,\n                matcher: AsyncMatcherWrapper(\n                    fullMatcher: matcher,\n                    timeoutInterval: timeout,\n                    pollInterval: pollInterval),\n                to: \"to eventually\",\n                description: description\n            )\n            verify(pass, msg)\n        } else {\n            verify(false, toEventuallyRequiresClosureError)\n        }\n    }\n\n    /// Tests the actual value using a matcher to not match by checking\n    /// continuously at each pollInterval until the timeout is reached.\n    ///\n    /// @discussion\n    /// This function manages the main run loop (`NSRunLoop.mainRunLoop()`) while this function\n    /// is executing. Any attempts to touch the run loop may cause non-deterministic behavior.\n    public func toEventuallyNot<U>(_ matcher: U, timeout: TimeInterval = AsyncDefaults.Timeout, pollInterval: TimeInterval = AsyncDefaults.PollInterval, description: String? = nil)\n        where U: Matcher, U.ValueType == T\n    {\n        if expression.isClosure {\n            let (pass, msg) = expressionDoesNotMatch(\n                expression,\n                matcher: AsyncMatcherWrapper(\n                    fullMatcher: matcher,\n                    timeoutInterval: timeout,\n                    pollInterval: pollInterval),\n                toNot: \"to eventually not\",\n                description: description\n            )\n            verify(pass, msg)\n        } else {\n            verify(false, toEventuallyRequiresClosureError)\n        }\n    }\n\n    /// Tests the actual value using a matcher to not match by checking\n    /// continuously at each pollInterval until the timeout is reached.\n    ///\n    /// Alias of toEventuallyNot()\n    ///\n    /// @discussion\n    /// This function manages the main run loop (`NSRunLoop.mainRunLoop()`) while this function\n    /// is executing. Any attempts to touch the run loop may cause non-deterministic behavior.\n    public func toNotEventually<U>(_ matcher: U, timeout: TimeInterval = AsyncDefaults.Timeout, pollInterval: TimeInterval = AsyncDefaults.PollInterval, description: String? = nil)\n        where U: Matcher, U.ValueType == T\n    {\n        return toEventuallyNot(matcher, timeout: timeout, pollInterval: pollInterval, description: description)\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Matchers/BeAKindOf.swift",
    "content": "import Foundation\n\n#if _runtime(_ObjC)\n\n// A Nimble matcher that catches attempts to use beAKindOf with non Objective-C types\npublic func beAKindOf(_ expectedClass: Any) -> NonNilMatcherFunc<Any> {\n    return NonNilMatcherFunc {actualExpression, failureMessage in\n        failureMessage.stringValue = \"beAKindOf only works on Objective-C types since\"\n            + \" the Swift compiler will automatically type check Swift-only types.\"\n            + \" This expectation is redundant.\"\n        return false\n    }\n}\n\n/// A Nimble matcher that succeeds when the actual value is an instance of the given class.\n/// @see beAnInstanceOf if you want to match against the exact class\npublic func beAKindOf(_ expectedClass: AnyClass) -> NonNilMatcherFunc<NSObject> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        let instance = try actualExpression.evaluate()\n        if let validInstance = instance {\n            failureMessage.actualValue = \"<\\(String(describing: type(of: validInstance))) instance>\"\n        } else {\n            failureMessage.actualValue = \"<nil>\"\n        }\n        failureMessage.postfixMessage = \"be a kind of \\(String(describing: expectedClass))\"\n        return instance != nil && instance!.isKind(of: expectedClass)\n    }\n}\n\nextension NMBObjCMatcher {\n    public class func beAKindOfMatcher(_ expected: AnyClass) -> NMBMatcher {\n        return NMBObjCMatcher(canMatchNil: false) { actualExpression, failureMessage in\n            return try! beAKindOf(expected).matches(actualExpression, failureMessage: failureMessage)\n        }\n    }\n}\n\n#endif\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Matchers/BeAnInstanceOf.swift",
    "content": "import Foundation\n\n// A Nimble matcher that catches attempts to use beAnInstanceOf with non Objective-C types\npublic func beAnInstanceOf(_ expectedClass: Any) -> NonNilMatcherFunc<Any> {\n    return NonNilMatcherFunc {actualExpression, failureMessage in\n        failureMessage.stringValue = \"beAnInstanceOf only works on Objective-C types since\"\n            + \" the Swift compiler will automatically type check Swift-only types.\"\n            + \" This expectation is redundant.\"\n        return false\n    }\n}\n\n/// A Nimble matcher that succeeds when the actual value is an instance of the given class.\n/// @see beAKindOf if you want to match against subclasses\npublic func beAnInstanceOf(_ expectedClass: AnyClass) -> NonNilMatcherFunc<NSObject> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        let instance = try actualExpression.evaluate()\n        if let validInstance = instance {\n            failureMessage.actualValue = \"<\\(String(describing: type(of: validInstance))) instance>\"\n        } else {\n            failureMessage.actualValue = \"<nil>\"\n        }\n        failureMessage.postfixMessage = \"be an instance of \\(String(describing: expectedClass))\"\n#if _runtime(_ObjC)\n        return instance != nil && instance!.isMember(of: expectedClass)\n#else\n        return instance != nil && type(of: instance!) == expectedClass\n#endif\n    }\n}\n\n#if _runtime(_ObjC)\nextension NMBObjCMatcher {\n    public class func beAnInstanceOfMatcher(_ expected: AnyClass) -> NMBMatcher {\n        return NMBObjCMatcher(canMatchNil: false) { actualExpression, failureMessage in\n            return try! beAnInstanceOf(expected).matches(actualExpression, failureMessage: failureMessage)\n        }\n    }\n}\n#endif\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Matchers/BeCloseTo.swift",
    "content": "import Foundation\n\ninternal let DefaultDelta = 0.0001\n\ninternal func isCloseTo(_ actualValue: NMBDoubleConvertible?, expectedValue: NMBDoubleConvertible, delta: Double, failureMessage: FailureMessage) -> Bool {\n    failureMessage.postfixMessage = \"be close to <\\(stringify(expectedValue))> (within \\(stringify(delta)))\"\n    failureMessage.actualValue = \"<\\(stringify(actualValue))>\"\n    return actualValue != nil && abs(actualValue!.doubleValue - expectedValue.doubleValue) < delta\n}\n\n/// A Nimble matcher that succeeds when a value is close to another. This is used for floating\n/// point values which can have imprecise results when doing arithmetic on them.\n///\n/// @see equal\npublic func beCloseTo(_ expectedValue: Double, within delta: Double = DefaultDelta) -> NonNilMatcherFunc<Double> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        return isCloseTo(try actualExpression.evaluate(), expectedValue: expectedValue, delta: delta, failureMessage: failureMessage)\n    }\n}\n\n/// A Nimble matcher that succeeds when a value is close to another. This is used for floating\n/// point values which can have imprecise results when doing arithmetic on them.\n///\n/// @see equal\npublic func beCloseTo(_ expectedValue: NMBDoubleConvertible, within delta: Double = DefaultDelta) -> NonNilMatcherFunc<NMBDoubleConvertible> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        return isCloseTo(try actualExpression.evaluate(), expectedValue: expectedValue, delta: delta, failureMessage: failureMessage)\n    }\n}\n\n#if _runtime(_ObjC)\npublic class NMBObjCBeCloseToMatcher : NSObject, NMBMatcher {\n    var _expected: NSNumber\n    var _delta: CDouble\n    init(expected: NSNumber, within: CDouble) {\n        _expected = expected\n        _delta = within\n    }\n\n    public func matches(_ actualExpression: @escaping () -> NSObject!, failureMessage: FailureMessage, location: SourceLocation) -> Bool {\n        let actualBlock: () -> NMBDoubleConvertible? = ({\n            return actualExpression() as? NMBDoubleConvertible\n        })\n        let expr = Expression(expression: actualBlock, location: location)\n        let matcher = beCloseTo(self._expected, within: self._delta)\n        return try! matcher.matches(expr, failureMessage: failureMessage)\n    }\n\n    public func doesNotMatch(_ actualExpression: @escaping () -> NSObject!, failureMessage: FailureMessage, location: SourceLocation) -> Bool {\n        let actualBlock: () -> NMBDoubleConvertible? = ({\n            return actualExpression() as? NMBDoubleConvertible\n        })\n        let expr = Expression(expression: actualBlock, location: location)\n        let matcher = beCloseTo(self._expected, within: self._delta)\n        return try! matcher.doesNotMatch(expr, failureMessage: failureMessage)\n    }\n\n    public var within: (CDouble) -> NMBObjCBeCloseToMatcher {\n        return ({ delta in\n            return NMBObjCBeCloseToMatcher(expected: self._expected, within: delta)\n        })\n    }\n}\n\nextension NMBObjCMatcher {\n    public class func beCloseToMatcher(_ expected: NSNumber, within: CDouble) -> NMBObjCBeCloseToMatcher {\n        return NMBObjCBeCloseToMatcher(expected: expected, within: within)\n    }\n}\n#endif\n\npublic func beCloseTo(_ expectedValues: [Double], within delta: Double = DefaultDelta) -> NonNilMatcherFunc <[Double]> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"be close to <\\(stringify(expectedValues))> (each within \\(stringify(delta)))\"\n        if let actual = try actualExpression.evaluate() {\n            failureMessage.actualValue = \"<\\(stringify(actual))>\"\n\n            if actual.count != expectedValues.count {\n                return false\n            } else {\n                for (index, actualItem) in actual.enumerated() {\n                    if fabs(actualItem - expectedValues[index]) > delta {\n                        return false\n                    }\n                }\n                return true\n            }\n        }\n        return false\n    }\n}\n\n// MARK: - Operators\n\ninfix operator ≈ : ComparisonPrecedence\n\npublic func ≈(lhs: Expectation<[Double]>, rhs: [Double]) {\n    lhs.to(beCloseTo(rhs))\n}\n\npublic func ≈(lhs: Expectation<NMBDoubleConvertible>, rhs: NMBDoubleConvertible) {\n    lhs.to(beCloseTo(rhs))\n}\n\npublic func ≈(lhs: Expectation<NMBDoubleConvertible>, rhs: (expected: NMBDoubleConvertible, delta: Double)) {\n    lhs.to(beCloseTo(rhs.expected, within: rhs.delta))\n}\n\npublic func ==(lhs: Expectation<NMBDoubleConvertible>, rhs: (expected: NMBDoubleConvertible, delta: Double)) {\n    lhs.to(beCloseTo(rhs.expected, within: rhs.delta))\n}\n\n// make this higher precedence than exponents so the Doubles either end aren't pulled in\n// unexpectantly\nprecedencegroup PlusMinusOperatorPrecedence {\n    higherThan: BitwiseShiftPrecedence\n}\n\ninfix operator ± : PlusMinusOperatorPrecedence\npublic func ±(lhs: NMBDoubleConvertible, rhs: Double) -> (expected: NMBDoubleConvertible, delta: Double) {\n    return (expected: lhs, delta: rhs)\n}\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Matchers/BeEmpty.swift",
    "content": "import Foundation\n\n\n/// A Nimble matcher that succeeds when a value is \"empty\". For collections, this\n/// means the are no items in that collection. For strings, it is an empty string.\npublic func beEmpty<S: Sequence>() -> NonNilMatcherFunc<S> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"be empty\"\n        let actualSeq = try actualExpression.evaluate()\n        if actualSeq == nil {\n            return true\n        }\n        var generator = actualSeq!.makeIterator()\n        return generator.next() == nil\n    }\n}\n\n/// A Nimble matcher that succeeds when a value is \"empty\". For collections, this\n/// means the are no items in that collection. For strings, it is an empty string.\npublic func beEmpty() -> NonNilMatcherFunc<String> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"be empty\"\n        let actualString = try actualExpression.evaluate()\n        return actualString == nil || NSString(string: actualString!).length  == 0\n    }\n}\n\n/// A Nimble matcher that succeeds when a value is \"empty\". For collections, this\n/// means the are no items in that collection. For NSString instances, it is an empty string.\npublic func beEmpty() -> NonNilMatcherFunc<NSString> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"be empty\"\n        let actualString = try actualExpression.evaluate()\n        return actualString == nil || actualString!.length == 0\n    }\n}\n\n// Without specific overrides, beEmpty() is ambiguous for NSDictionary, NSArray,\n// etc, since they conform to Sequence as well as NMBCollection.\n\n/// A Nimble matcher that succeeds when a value is \"empty\". For collections, this\n/// means the are no items in that collection. For strings, it is an empty string.\npublic func beEmpty() -> NonNilMatcherFunc<NSDictionary> {\n\treturn NonNilMatcherFunc { actualExpression, failureMessage in\n\t\tfailureMessage.postfixMessage = \"be empty\"\n\t\tlet actualDictionary = try actualExpression.evaluate()\n\t\treturn actualDictionary == nil || actualDictionary!.count == 0\n\t}\n}\n\n/// A Nimble matcher that succeeds when a value is \"empty\". For collections, this\n/// means the are no items in that collection. For strings, it is an empty string.\npublic func beEmpty() -> NonNilMatcherFunc<NSArray> {\n\treturn NonNilMatcherFunc { actualExpression, failureMessage in\n\t\tfailureMessage.postfixMessage = \"be empty\"\n\t\tlet actualArray = try actualExpression.evaluate()\n\t\treturn actualArray == nil || actualArray!.count == 0\n\t}\n}\n\n/// A Nimble matcher that succeeds when a value is \"empty\". For collections, this\n/// means the are no items in that collection. For strings, it is an empty string.\npublic func beEmpty() -> NonNilMatcherFunc<NMBCollection> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"be empty\"\n        let actual = try actualExpression.evaluate()\n        return actual == nil || actual!.count == 0\n    }\n}\n\n#if _runtime(_ObjC)\nextension NMBObjCMatcher {\n    public class func beEmptyMatcher() -> NMBObjCMatcher {\n        return NMBObjCMatcher(canMatchNil: false) { actualExpression, failureMessage in\n            let location = actualExpression.location\n            let actualValue = try! actualExpression.evaluate()\n            failureMessage.postfixMessage = \"be empty\"\n            if let value = actualValue as? NMBCollection {\n                let expr = Expression(expression: ({ value as NMBCollection }), location: location)\n                return try! beEmpty().matches(expr, failureMessage: failureMessage)\n            } else if let value = actualValue as? NSString {\n                let expr = Expression(expression: ({ value as String }), location: location)\n                return try! beEmpty().matches(expr, failureMessage: failureMessage)\n            } else if let actualValue = actualValue {\n                failureMessage.postfixMessage = \"be empty (only works for NSArrays, NSSets, NSIndexSets, NSDictionaries, NSHashTables, and NSStrings)\"\n                failureMessage.actualValue = \"\\(String(describing: type(of: actualValue))) type\"\n            }\n            return false\n        }\n    }\n}\n#endif\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThan.swift",
    "content": "import Foundation\n\n\n/// A Nimble matcher that succeeds when the actual value is greater than the expected value.\npublic func beGreaterThan<T: Comparable>(_ expectedValue: T?) -> NonNilMatcherFunc<T> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"be greater than <\\(stringify(expectedValue))>\"\n        if let actual = try actualExpression.evaluate(), let expected = expectedValue {\n            return actual > expected\n        }\n        return false\n    }\n}\n\n/// A Nimble matcher that succeeds when the actual value is greater than the expected value.\npublic func beGreaterThan(_ expectedValue: NMBComparable?) -> NonNilMatcherFunc<NMBComparable> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"be greater than <\\(stringify(expectedValue))>\"\n        let actualValue = try actualExpression.evaluate()\n        let matches = actualValue != nil && actualValue!.NMB_compare(expectedValue) == ComparisonResult.orderedDescending\n        return matches\n    }\n}\n\npublic func ><T: Comparable>(lhs: Expectation<T>, rhs: T) {\n    lhs.to(beGreaterThan(rhs))\n}\n\npublic func >(lhs: Expectation<NMBComparable>, rhs: NMBComparable?) {\n    lhs.to(beGreaterThan(rhs))\n}\n\n#if _runtime(_ObjC)\nextension NMBObjCMatcher {\n    public class func beGreaterThanMatcher(_ expected: NMBComparable?) -> NMBObjCMatcher {\n        return NMBObjCMatcher(canMatchNil: false) { actualExpression, failureMessage in\n            let expr = actualExpression.cast { $0 as? NMBComparable }\n            return try! beGreaterThan(expected).matches(expr, failureMessage: failureMessage)\n        }\n    }\n}\n#endif\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift",
    "content": "import Foundation\n\n/// A Nimble matcher that succeeds when the actual value is greater than\n/// or equal to the expected value.\npublic func beGreaterThanOrEqualTo<T: Comparable>(_ expectedValue: T?) -> NonNilMatcherFunc<T> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"be greater than or equal to <\\(stringify(expectedValue))>\"\n        let actualValue = try actualExpression.evaluate()\n        if let actual = actualValue, let expected = expectedValue {\n            return actual >= expected\n        }\n        return false\n    }\n}\n\n/// A Nimble matcher that succeeds when the actual value is greater than\n/// or equal to the expected value.\npublic func beGreaterThanOrEqualTo<T: NMBComparable>(_ expectedValue: T?) -> NonNilMatcherFunc<T> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"be greater than or equal to <\\(stringify(expectedValue))>\"\n        let actualValue = try actualExpression.evaluate()\n        let matches = actualValue != nil && actualValue!.NMB_compare(expectedValue) != ComparisonResult.orderedAscending\n        return matches\n    }\n}\n\npublic func >=<T: Comparable>(lhs: Expectation<T>, rhs: T) {\n    lhs.to(beGreaterThanOrEqualTo(rhs))\n}\n\npublic func >=<T: NMBComparable>(lhs: Expectation<T>, rhs: T) {\n    lhs.to(beGreaterThanOrEqualTo(rhs))\n}\n\n#if _runtime(_ObjC)\nextension NMBObjCMatcher {\n    public class func beGreaterThanOrEqualToMatcher(_ expected: NMBComparable?) -> NMBObjCMatcher {\n        return NMBObjCMatcher(canMatchNil: false) { actualExpression, failureMessage in\n            let expr = actualExpression.cast { $0 as? NMBComparable }\n            return try! beGreaterThanOrEqualTo(expected).matches(expr, failureMessage: failureMessage)\n        }\n    }\n}\n#endif\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Matchers/BeIdenticalTo.swift",
    "content": "import Foundation\n\n\n/// A Nimble matcher that succeeds when the actual value is the same instance\n/// as the expected instance.\npublic func beIdenticalTo(_ expected: Any?) -> NonNilMatcherFunc<Any> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        #if os(Linux)\n            let actual = try actualExpression.evaluate() as? AnyObject\n        #else\n            let actual = try actualExpression.evaluate() as AnyObject?\n        #endif\n        failureMessage.actualValue = \"\\(identityAsString(actual))\"\n        failureMessage.postfixMessage = \"be identical to \\(identityAsString(expected))\"\n        #if os(Linux)\n            return actual === (expected as? AnyObject) && actual !== nil\n        #else\n            return actual === (expected as AnyObject?) && actual !== nil\n        #endif\n    }\n}\n\npublic func ===(lhs: Expectation<Any>, rhs: Any?) {\n    lhs.to(beIdenticalTo(rhs))\n}\npublic func !==(lhs: Expectation<Any>, rhs: Any?) {\n    lhs.toNot(beIdenticalTo(rhs))\n}\n\n/// A Nimble matcher that succeeds when the actual value is the same instance\n/// as the expected instance.\n///\n/// Alias for \"beIdenticalTo\".\npublic func be(_ expected: Any?) -> NonNilMatcherFunc<Any> {\n    return beIdenticalTo(expected)\n}\n\n#if _runtime(_ObjC)\nextension NMBObjCMatcher {\n    public class func beIdenticalToMatcher(_ expected: NSObject?) -> NMBObjCMatcher {\n        return NMBObjCMatcher(canMatchNil: false) { actualExpression, failureMessage in\n            let aExpr = actualExpression.cast { $0 as Any? }\n            return try! beIdenticalTo(expected).matches(aExpr, failureMessage: failureMessage)\n        }\n    }\n}\n#endif\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Matchers/BeLessThan.swift",
    "content": "import Foundation\n\n/// A Nimble matcher that succeeds when the actual value is less than the expected value.\npublic func beLessThan<T: Comparable>(_ expectedValue: T?) -> NonNilMatcherFunc<T> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"be less than <\\(stringify(expectedValue))>\"\n        if let actual = try actualExpression.evaluate(), let expected = expectedValue {\n            return actual < expected\n        }\n        return false\n    }\n}\n\n/// A Nimble matcher that succeeds when the actual value is less than the expected value.\npublic func beLessThan(_ expectedValue: NMBComparable?) -> NonNilMatcherFunc<NMBComparable> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"be less than <\\(stringify(expectedValue))>\"\n        let actualValue = try actualExpression.evaluate()\n        let matches = actualValue != nil && actualValue!.NMB_compare(expectedValue) == ComparisonResult.orderedAscending\n        return matches\n    }\n}\n\npublic func <<T: Comparable>(lhs: Expectation<T>, rhs: T) {\n    lhs.to(beLessThan(rhs))\n}\n\npublic func <(lhs: Expectation<NMBComparable>, rhs: NMBComparable?) {\n    lhs.to(beLessThan(rhs))\n}\n\n#if _runtime(_ObjC)\nextension NMBObjCMatcher {\n    public class func beLessThanMatcher(_ expected: NMBComparable?) -> NMBObjCMatcher {\n        return NMBObjCMatcher(canMatchNil: false) { actualExpression, failureMessage in\n            let expr = actualExpression.cast { $0 as? NMBComparable }\n            return try! beLessThan(expected).matches(expr, failureMessage: failureMessage)\n        }\n    }\n}\n#endif\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Matchers/BeLessThanOrEqual.swift",
    "content": "import Foundation\n\n/// A Nimble matcher that succeeds when the actual value is less than\n/// or equal to the expected value.\npublic func beLessThanOrEqualTo<T: Comparable>(_ expectedValue: T?) -> NonNilMatcherFunc<T> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"be less than or equal to <\\(stringify(expectedValue))>\"\n        if let actual = try actualExpression.evaluate(), let expected = expectedValue {\n            return actual <= expected\n        }\n        return false\n    }\n}\n\n/// A Nimble matcher that succeeds when the actual value is less than\n/// or equal to the expected value.\npublic func beLessThanOrEqualTo<T: NMBComparable>(_ expectedValue: T?) -> NonNilMatcherFunc<T> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"be less than or equal to <\\(stringify(expectedValue))>\"\n        let actualValue = try actualExpression.evaluate()\n        return actualValue != nil && actualValue!.NMB_compare(expectedValue) != ComparisonResult.orderedDescending\n    }\n}\n\npublic func <=<T: Comparable>(lhs: Expectation<T>, rhs: T) {\n    lhs.to(beLessThanOrEqualTo(rhs))\n}\n\npublic func <=<T: NMBComparable>(lhs: Expectation<T>, rhs: T) {\n    lhs.to(beLessThanOrEqualTo(rhs))\n}\n\n#if _runtime(_ObjC)\nextension NMBObjCMatcher {\n    public class func beLessThanOrEqualToMatcher(_ expected: NMBComparable?) -> NMBObjCMatcher {\n        return NMBObjCMatcher(canMatchNil:false) { actualExpression, failureMessage in\n            let expr = actualExpression.cast { $0 as? NMBComparable }\n            return try! beLessThanOrEqualTo(expected).matches(expr, failureMessage: failureMessage)\n        }\n    }\n}\n#endif\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Matchers/BeLogical.swift",
    "content": "import Foundation\n\nextension Int8: ExpressibleByBooleanLiteral {\n    public init(booleanLiteral value: Bool) {\n        self = NSNumber(value: value).int8Value\n    }\n}\n\nextension UInt8: ExpressibleByBooleanLiteral {\n    public init(booleanLiteral value: Bool) {\n        self = NSNumber(value: value).uint8Value\n    }\n}\n\nextension Int16: ExpressibleByBooleanLiteral {\n    public init(booleanLiteral value: Bool) {\n        self = NSNumber(value: value).int16Value\n    }\n}\n\nextension UInt16: ExpressibleByBooleanLiteral {\n    public init(booleanLiteral value: Bool) {\n        self = NSNumber(value: value).uint16Value\n    }\n}\n\nextension Int32: ExpressibleByBooleanLiteral {\n    public init(booleanLiteral value: Bool) {\n        self = NSNumber(value: value).int32Value\n    }\n}\n\nextension UInt32: ExpressibleByBooleanLiteral {\n    public init(booleanLiteral value: Bool) {\n        self = NSNumber(value: value).uint32Value\n    }\n}\n\nextension Int64: ExpressibleByBooleanLiteral {\n    public init(booleanLiteral value: Bool) {\n        self = NSNumber(value: value).int64Value\n    }\n}\n\nextension UInt64: ExpressibleByBooleanLiteral {\n    public init(booleanLiteral value: Bool) {\n        self = NSNumber(value: value).uint64Value\n    }\n}\n\nextension Float: ExpressibleByBooleanLiteral {\n    public init(booleanLiteral value: Bool) {\n        self = NSNumber(value: value).floatValue\n    }\n}\n\nextension Double: ExpressibleByBooleanLiteral {\n    public init(booleanLiteral value: Bool) {\n        self = NSNumber(value: value).doubleValue\n    }\n}\n\nextension Int: ExpressibleByBooleanLiteral {\n    public init(booleanLiteral value: Bool) {\n        self = NSNumber(value: value).intValue\n    }\n}\n\nextension UInt: ExpressibleByBooleanLiteral {\n    public init(booleanLiteral value: Bool) {\n        self = NSNumber(value: value).uintValue\n    }\n}\n\ninternal func matcherWithFailureMessage<T>(_ matcher: NonNilMatcherFunc<T>, postprocessor: @escaping (FailureMessage) -> Void) -> NonNilMatcherFunc<T> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        defer { postprocessor(failureMessage) }\n        return try matcher.matcher(actualExpression, failureMessage)\n    }\n}\n\n// MARK: beTrue() / beFalse()\n\n/// A Nimble matcher that succeeds when the actual value is exactly true.\n/// This matcher will not match against nils.\npublic func beTrue() -> NonNilMatcherFunc<Bool> {\n    return matcherWithFailureMessage(equal(true)) { failureMessage in\n        failureMessage.postfixMessage = \"be true\"\n    }\n}\n\n/// A Nimble matcher that succeeds when the actual value is exactly false.\n/// This matcher will not match against nils.\npublic func beFalse() -> NonNilMatcherFunc<Bool> {\n    return matcherWithFailureMessage(equal(false)) { failureMessage in\n        failureMessage.postfixMessage = \"be false\"\n    }\n}\n\n// MARK: beTruthy() / beFalsy()\n\n/// A Nimble matcher that succeeds when the actual value is not logically false.\npublic func beTruthy<T: ExpressibleByBooleanLiteral & Equatable>() -> MatcherFunc<T> {\n    return MatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"be truthy\"\n        let actualValue = try actualExpression.evaluate()\n        if let actualValue = actualValue {\n            // FIXME: This is a workaround to SR-2290.\n            // See:\n            // - https://bugs.swift.org/browse/SR-2290\n            // - https://github.com/norio-nomura/Nimble/pull/5#issuecomment-237835873\n            if let number = actualValue as? NSNumber {\n                return number.boolValue == true\n            }\n\n            return actualValue == (true as T)\n        }\n        return actualValue != nil\n    }\n}\n\n/// A Nimble matcher that succeeds when the actual value is logically false.\n/// This matcher will match against nils.\npublic func beFalsy<T: ExpressibleByBooleanLiteral & Equatable>() -> MatcherFunc<T> {\n    return MatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"be falsy\"\n        let actualValue = try actualExpression.evaluate()\n        if let actualValue = actualValue {\n            // FIXME: This is a workaround to SR-2290.\n            // See:\n            // - https://bugs.swift.org/browse/SR-2290\n            // - https://github.com/norio-nomura/Nimble/pull/5#issuecomment-237835873\n            if let number = actualValue as? NSNumber {\n                return number.boolValue == false\n            }\n\n            return actualValue == (false as T)\n        }\n        return actualValue == nil\n    }\n}\n\n#if _runtime(_ObjC)\nextension NMBObjCMatcher {\n    public class func beTruthyMatcher() -> NMBObjCMatcher {\n        return NMBObjCMatcher { actualExpression, failureMessage in\n            let expr = actualExpression.cast { ($0 as? NSNumber)?.boolValue ?? false }\n            return try! beTruthy().matches(expr, failureMessage: failureMessage)\n        }\n    }\n\n    public class func beFalsyMatcher() -> NMBObjCMatcher {\n        return NMBObjCMatcher { actualExpression, failureMessage in\n            let expr = actualExpression.cast { ($0 as? NSNumber)?.boolValue ?? false }\n            return try! beFalsy().matches(expr, failureMessage: failureMessage)\n        }\n    }\n\n    public class func beTrueMatcher() -> NMBObjCMatcher {\n        return NMBObjCMatcher { actualExpression, failureMessage in\n            let expr = actualExpression.cast { ($0 as? NSNumber)?.boolValue ?? false }\n            return try! beTrue().matches(expr, failureMessage: failureMessage)\n        }\n    }\n\n    public class func beFalseMatcher() -> NMBObjCMatcher {\n        return NMBObjCMatcher(canMatchNil: false) { actualExpression, failureMessage in\n            let expr = actualExpression.cast { ($0 as? NSNumber)?.boolValue ?? false }\n            return try! beFalse().matches(expr, failureMessage: failureMessage)\n        }\n    }\n}\n#endif\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Matchers/BeNil.swift",
    "content": "import Foundation\n\n/// A Nimble matcher that succeeds when the actual value is nil.\npublic func beNil<T>() -> MatcherFunc<T> {\n    return MatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"be nil\"\n        let actualValue = try actualExpression.evaluate()\n        return actualValue == nil\n    }\n}\n\n#if _runtime(_ObjC)\nextension NMBObjCMatcher {\n    public class func beNilMatcher() -> NMBObjCMatcher {\n        return NMBObjCMatcher { actualExpression, failureMessage in\n            return try! beNil().matches(actualExpression, failureMessage: failureMessage)\n        }\n    }\n}\n#endif\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Matchers/BeVoid.swift",
    "content": "import Foundation\n\n/// A Nimble matcher that succeeds when the actual value is Void.\npublic func beVoid() -> MatcherFunc<()> {\n    return MatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"be void\"\n        let actualValue: ()? = try actualExpression.evaluate()\n        return actualValue != nil\n    }\n}\n\npublic func ==(lhs: Expectation<()>, rhs: ()) {\n    lhs.to(beVoid())\n}\n\npublic func !=(lhs: Expectation<()>, rhs: ()) {\n    lhs.toNot(beVoid())\n}"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Matchers/BeginWith.swift",
    "content": "import Foundation\n\n\n/// A Nimble matcher that succeeds when the actual sequence's first element\n/// is equal to the expected value.\npublic func beginWith<S: Sequence, T: Equatable>(_ startingElement: T) -> NonNilMatcherFunc<S>\n    where S.Iterator.Element == T\n{\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"begin with <\\(startingElement)>\"\n        if let actualValue = try actualExpression.evaluate() {\n            var actualGenerator = actualValue.makeIterator()\n            return actualGenerator.next() == startingElement\n        }\n        return false\n    }\n}\n\n/// A Nimble matcher that succeeds when the actual collection's first element\n/// is equal to the expected object.\npublic func beginWith(_ startingElement: Any) -> NonNilMatcherFunc<NMBOrderedCollection> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"begin with <\\(startingElement)>\"\n        guard let collection = try actualExpression.evaluate() else { return false }\n        guard collection.count > 0 else { return false }\n        #if os(Linux)\n            guard let collectionValue = collection.object(at: 0) as? NSObject else {\n                return false\n            }\n        #else\n            let collectionValue = collection.object(at: 0) as AnyObject\n        #endif\n        return collectionValue.isEqual(startingElement)\n    }\n}\n\n/// A Nimble matcher that succeeds when the actual string contains expected substring\n/// where the expected substring's location is zero.\npublic func beginWith(_ startingSubstring: String) -> NonNilMatcherFunc<String> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"begin with <\\(startingSubstring)>\"\n        if let actual = try actualExpression.evaluate() {\n            let range = actual.range(of: startingSubstring)\n            return range != nil && range!.lowerBound == actual.startIndex\n        }\n        return false\n    }\n}\n\n#if _runtime(_ObjC)\nextension NMBObjCMatcher {\n    public class func beginWithMatcher(_ expected: Any) -> NMBObjCMatcher {\n        return NMBObjCMatcher(canMatchNil: false) { actualExpression, failureMessage in\n            let actual = try! actualExpression.evaluate()\n            if let _ = actual as? String {\n                let expr = actualExpression.cast { $0 as? String }\n                return try! beginWith(expected as! String).matches(expr, failureMessage: failureMessage)\n            } else {\n                let expr = actualExpression.cast { $0 as? NMBOrderedCollection }\n                return try! beginWith(expected).matches(expr, failureMessage: failureMessage)\n            }\n        }\n    }\n}\n#endif\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Matchers/Contain.swift",
    "content": "import Foundation\n\n/// A Nimble matcher that succeeds when the actual sequence contains the expected value.\npublic func contain<S: Sequence, T: Equatable>(_ items: T...) -> NonNilMatcherFunc<S>\n    where S.Iterator.Element == T\n{\n    return contain(items)\n}\n\npublic func contain<S: Sequence, T: Equatable>(_ items: [T]) -> NonNilMatcherFunc<S>\n    where S.Iterator.Element == T\n{\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"contain <\\(arrayAsString(items))>\"\n        if let actual = try actualExpression.evaluate() {\n            return items.all {\n                return actual.contains($0)\n            }\n        }\n        return false\n    }\n}\n\n/// A Nimble matcher that succeeds when the actual string contains the expected substring.\npublic func contain(_ substrings: String...) -> NonNilMatcherFunc<String> {\n    return contain(substrings)\n}\n\npublic func contain(_ substrings: [String]) -> NonNilMatcherFunc<String> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"contain <\\(arrayAsString(substrings))>\"\n        if let actual = try actualExpression.evaluate() {\n            return substrings.all {\n                let range = actual.range(of: $0)\n                return range != nil && !range!.isEmpty\n            }\n        }\n        return false\n    }\n}\n\n/// A Nimble matcher that succeeds when the actual string contains the expected substring.\npublic func contain(_ substrings: NSString...) -> NonNilMatcherFunc<NSString> {\n    return contain(substrings)\n}\n\npublic func contain(_ substrings: [NSString]) -> NonNilMatcherFunc<NSString> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"contain <\\(arrayAsString(substrings))>\"\n        if let actual = try actualExpression.evaluate() {\n            return substrings.all { actual.range(of: $0.description).length != 0 }\n        }\n        return false\n    }\n}\n\n/// A Nimble matcher that succeeds when the actual collection contains the expected object.\npublic func contain(_ items: Any?...) -> NonNilMatcherFunc<NMBContainer> {\n    return contain(items)\n}\n\npublic func contain(_ items: [Any?]) -> NonNilMatcherFunc<NMBContainer> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"contain <\\(arrayAsString(items))>\"\n        guard let actual = try actualExpression.evaluate() else { return false }\n        return items.all { item in\n            return item != nil && actual.contains(item!)\n        }\n    }\n}\n\n#if _runtime(_ObjC)\nextension NMBObjCMatcher {\n    public class func containMatcher(_ expected: [NSObject]) -> NMBObjCMatcher {\n        return NMBObjCMatcher(canMatchNil: false) { actualExpression, failureMessage in\n            let location = actualExpression.location\n            let actualValue = try! actualExpression.evaluate()\n            if let value = actualValue as? NMBContainer {\n                let expr = Expression(expression: ({ value as NMBContainer }), location: location)\n\n                // A straightforward cast on the array causes this to crash, so we have to cast the individual items\n                let expectedOptionals: [Any?] = expected.map({ $0 as Any? })\n                return try! contain(expectedOptionals).matches(expr, failureMessage: failureMessage)\n            } else if let value = actualValue as? NSString {\n                let expr = Expression(expression: ({ value as String }), location: location)\n                return try! contain(expected as! [String]).matches(expr, failureMessage: failureMessage)\n            } else if actualValue != nil {\n                failureMessage.postfixMessage = \"contain <\\(arrayAsString(expected))> (only works for NSArrays, NSSets, NSHashTables, and NSStrings)\"\n            } else {\n                failureMessage.postfixMessage = \"contain <\\(arrayAsString(expected))>\"\n            }\n            return false\n        }\n    }\n}\n#endif\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Matchers/EndWith.swift",
    "content": "import Foundation\n\n\n/// A Nimble matcher that succeeds when the actual sequence's last element\n/// is equal to the expected value.\npublic func endWith<S: Sequence, T: Equatable>(_ endingElement: T) -> NonNilMatcherFunc<S>\n    where S.Iterator.Element == T\n{\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"end with <\\(endingElement)>\"\n\n        if let actualValue = try actualExpression.evaluate() {\n            var actualGenerator = actualValue.makeIterator()\n            var lastItem: T?\n            var item: T?\n            repeat {\n                lastItem = item\n                item = actualGenerator.next()\n            } while(item != nil)\n            \n            return lastItem == endingElement\n        }\n        return false\n    }\n}\n\n/// A Nimble matcher that succeeds when the actual collection's last element\n/// is equal to the expected object.\npublic func endWith(_ endingElement: Any) -> NonNilMatcherFunc<NMBOrderedCollection> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"end with <\\(endingElement)>\"\n        guard let collection = try actualExpression.evaluate() else { return false }\n        guard collection.count > 0 else { return false }\n        #if os(Linux)\n            guard let collectionValue = collection.object(at: collection.count - 1) as? NSObject else {\n                return false\n            }\n        #else\n            let collectionValue = collection.object(at: collection.count - 1) as AnyObject\n        #endif\n\n        return collectionValue.isEqual(endingElement)\n    }\n}\n\n\n/// A Nimble matcher that succeeds when the actual string contains the expected substring\n/// where the expected substring's location is the actual string's length minus the\n/// expected substring's length.\npublic func endWith(_ endingSubstring: String) -> NonNilMatcherFunc<String> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"end with <\\(endingSubstring)>\"\n        if let collection = try actualExpression.evaluate() {\n            return collection.hasSuffix(endingSubstring)\n        }\n        return false\n    }\n}\n\n#if _runtime(_ObjC)\nextension NMBObjCMatcher {\n    public class func endWithMatcher(_ expected: Any) -> NMBObjCMatcher {\n        return NMBObjCMatcher(canMatchNil: false) { actualExpression, failureMessage in\n            let actual = try! actualExpression.evaluate()\n            if let _ = actual as? String {\n                let expr = actualExpression.cast { $0 as? String }\n                return try! endWith(expected as! String).matches(expr, failureMessage: failureMessage)\n            } else {\n                let expr = actualExpression.cast { $0 as? NMBOrderedCollection }\n                return try! endWith(expected).matches(expr, failureMessage: failureMessage)\n            }\n        }\n    }\n}\n#endif\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Matchers/Equal.swift",
    "content": "import Foundation\n\n/// A Nimble matcher that succeeds when the actual value is equal to the expected value.\n/// Values can support equal by supporting the Equatable protocol.\n///\n/// @see beCloseTo if you want to match imprecise types (eg - floats, doubles).\npublic func equal<T: Equatable>(_ expectedValue: T?) -> NonNilMatcherFunc<T> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"equal <\\(stringify(expectedValue))>\"\n        let actualValue = try actualExpression.evaluate()\n        let matches = actualValue == expectedValue && expectedValue != nil\n        if expectedValue == nil || actualValue == nil {\n            if expectedValue == nil {\n                failureMessage.postfixActual = \" (use beNil() to match nils)\"\n            }\n            return false\n        }\n        return matches\n    }\n}\n\n/// A Nimble matcher that succeeds when the actual value is equal to the expected value.\n/// Values can support equal by supporting the Equatable protocol.\n///\n/// @see beCloseTo if you want to match imprecise types (eg - floats, doubles).\npublic func equal<T: Equatable, C: Equatable>(_ expectedValue: [T: C]?) -> NonNilMatcherFunc<[T: C]> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"equal <\\(stringify(expectedValue))>\"\n        let actualValue = try actualExpression.evaluate()\n        if expectedValue == nil || actualValue == nil {\n            if expectedValue == nil {\n                failureMessage.postfixActual = \" (use beNil() to match nils)\"\n            }\n            return false\n        }\n        return expectedValue! == actualValue!\n    }\n}\n\n/// A Nimble matcher that succeeds when the actual collection is equal to the expected collection.\n/// Items must implement the Equatable protocol.\npublic func equal<T: Equatable>(_ expectedValue: [T]?) -> NonNilMatcherFunc<[T]> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"equal <\\(stringify(expectedValue))>\"\n        let actualValue = try actualExpression.evaluate()\n        if expectedValue == nil || actualValue == nil {\n            if expectedValue == nil {\n                failureMessage.postfixActual = \" (use beNil() to match nils)\"\n            }\n            return false\n        }\n        return expectedValue! == actualValue!\n    }\n}\n\n/// A Nimble matcher allowing comparison of collection with optional type\npublic func equal<T: Equatable>(_ expectedValue: [T?]) -> NonNilMatcherFunc<[T?]> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"equal <\\(stringify(expectedValue))>\"\n        if let actualValue = try actualExpression.evaluate() {\n            if expectedValue.count != actualValue.count {\n                return false\n            }\n            \n            for (index, item) in actualValue.enumerated() {\n                let otherItem = expectedValue[index]\n                if item == nil && otherItem == nil {\n                    continue\n                } else if item == nil && otherItem != nil {\n                    return false\n                } else if item != nil && otherItem == nil {\n                    return false\n                } else if item! != otherItem! {\n                    return false\n                }\n            }\n            \n            return true\n        } else {\n            failureMessage.postfixActual = \" (use beNil() to match nils)\"\n        }\n        \n        return false\n    }\n}\n\n/// A Nimble matcher that succeeds when the actual set is equal to the expected set.\npublic func equal<T>(_ expectedValue: Set<T>?) -> NonNilMatcherFunc<Set<T>> {\n    return equal(expectedValue, stringify: { stringify($0) })\n}\n\n/// A Nimble matcher that succeeds when the actual set is equal to the expected set.\npublic func equal<T: Comparable>(_ expectedValue: Set<T>?) -> NonNilMatcherFunc<Set<T>> {\n    return equal(expectedValue, stringify: {\n        if let set = $0 {\n            return stringify(Array(set).sorted { $0 < $1 })\n        } else {\n            return \"nil\"\n        }\n    })\n}\n\nprivate func equal<T>(_ expectedValue: Set<T>?, stringify: @escaping (Set<T>?) -> String) -> NonNilMatcherFunc<Set<T>> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"equal <\\(stringify(expectedValue))>\"\n\n        if let expectedValue = expectedValue {\n            if let actualValue = try actualExpression.evaluate() {\n                failureMessage.actualValue = \"<\\(stringify(actualValue))>\"\n\n                if expectedValue == actualValue {\n                    return true\n                }\n\n                let missing = expectedValue.subtracting(actualValue)\n                if missing.count > 0 {\n                    failureMessage.postfixActual += \", missing <\\(stringify(missing))>\"\n                }\n\n                let extra = actualValue.subtracting(expectedValue)\n                if extra.count > 0 {\n                    failureMessage.postfixActual += \", extra <\\(stringify(extra))>\"\n                }\n            }\n        } else {\n            failureMessage.postfixActual = \" (use beNil() to match nils)\"\n        }\n\n        return false\n    }\n}\n\npublic func ==<T: Equatable>(lhs: Expectation<T>, rhs: T?) {\n    lhs.to(equal(rhs))\n}\n\npublic func !=<T: Equatable>(lhs: Expectation<T>, rhs: T?) {\n    lhs.toNot(equal(rhs))\n}\n\npublic func ==<T: Equatable>(lhs: Expectation<[T]>, rhs: [T]?) {\n    lhs.to(equal(rhs))\n}\n\npublic func !=<T: Equatable>(lhs: Expectation<[T]>, rhs: [T]?) {\n    lhs.toNot(equal(rhs))\n}\n\npublic func ==<T>(lhs: Expectation<Set<T>>, rhs: Set<T>?) {\n    lhs.to(equal(rhs))\n}\n\npublic func !=<T>(lhs: Expectation<Set<T>>, rhs: Set<T>?) {\n    lhs.toNot(equal(rhs))\n}\n\npublic func ==<T: Comparable>(lhs: Expectation<Set<T>>, rhs: Set<T>?) {\n    lhs.to(equal(rhs))\n}\n\npublic func !=<T: Comparable>(lhs: Expectation<Set<T>>, rhs: Set<T>?) {\n    lhs.toNot(equal(rhs))\n}\n\npublic func ==<T: Equatable, C: Equatable>(lhs: Expectation<[T: C]>, rhs: [T: C]?) {\n    lhs.to(equal(rhs))\n}\n\npublic func !=<T: Equatable, C: Equatable>(lhs: Expectation<[T: C]>, rhs: [T: C]?) {\n    lhs.toNot(equal(rhs))\n}\n\n#if _runtime(_ObjC)\nextension NMBObjCMatcher {\n    public class func equalMatcher(_ expected: NSObject) -> NMBMatcher {\n        return NMBObjCMatcher(canMatchNil: false) { actualExpression, failureMessage in\n            return try! equal(expected).matches(actualExpression, failureMessage: failureMessage)\n        }\n    }\n}\n#endif\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Matchers/HaveCount.swift",
    "content": "import Foundation\n\n// The `haveCount` matchers do not print the full string representation of the collection value,\n// instead they only print the type name and the expected count. This makes it easier to understand\n// the reason for failed expectations. See: https://github.com/Quick/Nimble/issues/308.\n// The representation of the collection content is provided in a new line as an `extendedMessage`.\n\n/// A Nimble matcher that succeeds when the actual Collection's count equals\n/// the expected value\npublic func haveCount<T: Collection>(_ expectedValue: T.IndexDistance) -> NonNilMatcherFunc<T> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        if let actualValue = try actualExpression.evaluate() {\n            failureMessage.postfixMessage = \"have \\(prettyCollectionType(actualValue)) with count \\(stringify(expectedValue))\"\n            let result = expectedValue == actualValue.count\n            failureMessage.actualValue = \"\\(actualValue.count)\"\n            failureMessage.extendedMessage = \"Actual Value: \\(stringify(actualValue))\"\n            return result\n        } else {\n            return false\n        }\n    }\n}\n\n/// A Nimble matcher that succeeds when the actual collection's count equals\n/// the expected value\npublic func haveCount(_ expectedValue: Int) -> MatcherFunc<NMBCollection> {\n    return MatcherFunc { actualExpression, failureMessage in\n        if let actualValue = try actualExpression.evaluate() {\n            failureMessage.postfixMessage = \"have \\(prettyCollectionType(actualValue)) with count \\(stringify(expectedValue))\"\n            let result = expectedValue == actualValue.count\n            failureMessage.actualValue = \"\\(actualValue.count)\"\n            failureMessage.extendedMessage = \"Actual Value: \\(stringify(actualValue))\"\n            return result\n        } else {\n            return false\n        }\n    }\n}\n\n#if _runtime(_ObjC)\nextension NMBObjCMatcher {\n    public class func haveCountMatcher(_ expected: NSNumber) -> NMBObjCMatcher {\n        return NMBObjCMatcher(canMatchNil: false) { actualExpression, failureMessage in\n            let location = actualExpression.location\n            let actualValue = try! actualExpression.evaluate()\n            if let value = actualValue as? NMBCollection {\n                let expr = Expression(expression: ({ value as NMBCollection}), location: location)\n                return try! haveCount(expected.intValue).matches(expr, failureMessage: failureMessage)\n            } else if let actualValue = actualValue {\n                failureMessage.postfixMessage = \"get type of NSArray, NSSet, NSDictionary, or NSHashTable\"\n                failureMessage.actualValue = \"\\(String(describing: type(of: actualValue)))\"\n            }\n            return false\n        }\n    }\n}\n#endif\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Matchers/Match.swift",
    "content": "import Foundation\n\n/// A Nimble matcher that succeeds when the actual string satisfies the regular expression\n/// described by the expected string.\npublic func match(_ expectedValue: String?) -> NonNilMatcherFunc<String> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        failureMessage.postfixMessage = \"match <\\(stringify(expectedValue))>\"\n        \n        if let actual = try actualExpression.evaluate() {\n            if let regexp = expectedValue {\n                return actual.range(of: regexp, options: .regularExpression) != nil\n            }\n        }\n\n        return false\n    }\n}\n\n#if _runtime(_ObjC)\n\nextension NMBObjCMatcher {\n    public class func matchMatcher(_ expected: NSString) -> NMBMatcher {\n        return NMBObjCMatcher(canMatchNil: false) { actualExpression, failureMessage in\n            let actual = actualExpression.cast { $0 as? String }\n            return try! match(expected.description).matches(actual, failureMessage: failureMessage)\n        }\n    }\n}\n\n#endif\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Matchers/MatchError.swift",
    "content": "import Foundation\n\n/// A Nimble matcher that succeeds when the actual expression evaluates to an\n/// error from the specified case.\n///\n/// Errors are tried to be compared by their implementation of Equatable,\n/// otherwise they fallback to comparision by _domain and _code.\npublic func matchError<T: Error>(_ error: T) -> NonNilMatcherFunc<Error> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        let actualError: Error? = try actualExpression.evaluate()\n\n        setFailureMessageForError(failureMessage, postfixMessageVerb: \"match\", actualError: actualError, error: error)\n        return errorMatchesNonNilFieldsOrClosure(actualError, error: error)\n    }\n}\n\n/// A Nimble matcher that succeeds when the actual expression evaluates to an\n/// error of the specified type\npublic func matchError<T: Error>(_ errorType: T.Type) -> NonNilMatcherFunc<Error> {\n    return NonNilMatcherFunc { actualExpression, failureMessage in\n        let actualError: Error? = try actualExpression.evaluate()\n\n        setFailureMessageForError(failureMessage, postfixMessageVerb: \"match\", actualError: actualError, errorType: errorType)\n        return errorMatchesNonNilFieldsOrClosure(actualError, errorType: errorType)\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Matchers/MatcherFunc.swift",
    "content": "/// A convenience API to build matchers that don't need special negation\n/// behavior. The toNot() behavior is the negation of to().\n///\n/// @see NonNilMatcherFunc if you prefer to have this matcher fail when nil\n///                        values are recieved in an expectation.\n///\n/// You may use this when implementing your own custom matchers.\n///\n/// Use the Matcher protocol instead of this type to accept custom matchers as\n/// input parameters.\n/// @see allPass for an example that uses accepts other matchers as input.\npublic struct MatcherFunc<T>: Matcher {\n    public let matcher: (Expression<T>, FailureMessage) throws -> Bool\n\n    public init(_ matcher: @escaping (Expression<T>, FailureMessage) throws -> Bool) {\n        self.matcher = matcher\n    }\n\n    public func matches(_ actualExpression: Expression<T>, failureMessage: FailureMessage) throws -> Bool {\n        return try matcher(actualExpression, failureMessage)\n    }\n\n    public func doesNotMatch(_ actualExpression: Expression<T>, failureMessage: FailureMessage) throws -> Bool {\n        return try !matcher(actualExpression, failureMessage)\n    }\n}\n\n/// A convenience API to build matchers that don't need special negation\n/// behavior. The toNot() behavior is the negation of to().\n///\n/// Unlike MatcherFunc, this will always fail if an expectation contains nil.\n/// This applies regardless of using to() or toNot().\n///\n/// You may use this when implementing your own custom matchers.\n///\n/// Use the Matcher protocol instead of this type to accept custom matchers as\n/// input parameters.\n/// @see allPass for an example that uses accepts other matchers as input.\npublic struct NonNilMatcherFunc<T>: Matcher {\n    public let matcher: (Expression<T>, FailureMessage) throws -> Bool\n\n    public init(_ matcher: @escaping (Expression<T>, FailureMessage) throws -> Bool) {\n        self.matcher = matcher\n    }\n\n    public func matches(_ actualExpression: Expression<T>, failureMessage: FailureMessage) throws -> Bool {\n        let pass = try matcher(actualExpression, failureMessage)\n        if try attachNilErrorIfNeeded(actualExpression, failureMessage: failureMessage) {\n            return false\n        }\n        return pass\n    }\n\n    public func doesNotMatch(_ actualExpression: Expression<T>, failureMessage: FailureMessage) throws -> Bool {\n        let pass = try !matcher(actualExpression, failureMessage)\n        if try attachNilErrorIfNeeded(actualExpression, failureMessage: failureMessage) {\n            return false\n        }\n        return pass\n    }\n\n    internal func attachNilErrorIfNeeded(_ actualExpression: Expression<T>, failureMessage: FailureMessage) throws -> Bool {\n        if try actualExpression.evaluate() == nil {\n            failureMessage.postfixActual = \" (use beNil() to match nils)\"\n            return true\n        }\n        return false\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Matchers/MatcherProtocols.swift",
    "content": "import Foundation\n// `CGFloat` is in Foundation (swift-corelibs-foundation) on Linux.\n#if _runtime(_ObjC)\n    import CoreGraphics\n#endif\n\n/// Implement this protocol to implement a custom matcher for Swift\u0013\npublic protocol Matcher {\n    associatedtype ValueType\n    func matches(_ actualExpression: Expression<ValueType>, failureMessage: FailureMessage) throws -> Bool\n    func doesNotMatch(_ actualExpression: Expression<ValueType>, failureMessage: FailureMessage) throws -> Bool\n}\n\n#if _runtime(_ObjC)\n/// Objective-C interface to the Swift variant of Matcher.\n@objc public protocol NMBMatcher {\n    func matches(_ actualBlock: @escaping () -> NSObject!, failureMessage: FailureMessage, location: SourceLocation) -> Bool\n    func doesNotMatch(_ actualBlock: @escaping () -> NSObject!, failureMessage: FailureMessage, location: SourceLocation) -> Bool\n}\n#endif\n\n#if _runtime(_ObjC)\n/// Protocol for types that support contain() matcher.\n@objc public protocol NMBContainer {\n    @objc(containsObject:)\n    func contains(_ anObject: Any) -> Bool\n}\n\n// FIXME: NSHashTable can not conform to NMBContainer since swift-DEVELOPMENT-SNAPSHOT-2016-04-25-a\n//extension NSHashTable : NMBContainer {} // Corelibs Foundation does not include this class yet\n#else\npublic protocol NMBContainer {\n    func contains(_ anObject: Any) -> Bool\n}\n#endif\n\nextension NSArray : NMBContainer {}\nextension NSSet : NMBContainer {}\n\n#if _runtime(_ObjC)\n/// Protocol for types that support only beEmpty(), haveCount() matchers\n@objc public protocol NMBCollection {\n    var count: Int { get }\n}\n\nextension NSHashTable : NMBCollection {} // Corelibs Foundation does not include these classes yet\nextension NSMapTable : NMBCollection {}\n#else\npublic protocol NMBCollection {\n    var count: Int { get }\n}\n#endif\n\nextension NSSet : NMBCollection {}\nextension NSIndexSet : NMBCollection {}\nextension NSDictionary : NMBCollection {}\n\n#if _runtime(_ObjC)\n/// Protocol for types that support beginWith(), endWith(), beEmpty() matchers\n@objc public protocol NMBOrderedCollection : NMBCollection {\n    @objc(objectAtIndex:)\n    func object(at index: Int) -> Any\n}\n#else\npublic protocol NMBOrderedCollection : NMBCollection {\n    func object(at index: Int) -> Any\n}\n#endif\n\nextension NSArray : NMBOrderedCollection {}\n\npublic protocol NMBDoubleConvertible {\n    var doubleValue: CDouble { get }\n}\n\nextension Double : NMBDoubleConvertible {\n    public var doubleValue: CDouble {\n        return self\n    }\n}\n\nextension Float : NMBDoubleConvertible {\n    public var doubleValue: CDouble {\n        return CDouble(self)\n    }\n}\n\nextension CGFloat: NMBDoubleConvertible {\n    public var doubleValue: CDouble {\n        return CDouble(self)\n    }\n}\n\nextension NSNumber : NMBDoubleConvertible {\n}\n\nprivate let dateFormatter: DateFormatter = {\n    let formatter = DateFormatter()\n    formatter.dateFormat = \"yyyy-MM-dd HH:mm:ss.SSSS\"\n    formatter.locale = Locale(identifier: \"en_US_POSIX\")\n\n    return formatter\n}()\n\nextension Date: NMBDoubleConvertible {\n    public var doubleValue: CDouble {\n        return self.timeIntervalSinceReferenceDate\n    }\n}\n\nextension NSDate: NMBDoubleConvertible {\n    public var doubleValue: CDouble {\n        return self.timeIntervalSinceReferenceDate\n    }\n}\n\nextension Date: TestOutputStringConvertible {\n    public var testDescription: String {\n        return dateFormatter.string(from: self)\n    }\n}\n\nextension NSDate: TestOutputStringConvertible {\n    public var testDescription: String {\n        return dateFormatter.string(from: Date(timeIntervalSinceReferenceDate: self.timeIntervalSinceReferenceDate))\n    }\n}\n\n/// Protocol for types to support beLessThan(), beLessThanOrEqualTo(),\n///  beGreaterThan(), beGreaterThanOrEqualTo(), and equal() matchers.\n///\n/// Types that conform to Swift's Comparable protocol will work implicitly too\n#if _runtime(_ObjC)\n@objc public protocol NMBComparable {\n    func NMB_compare(_ otherObject: NMBComparable!) -> ComparisonResult\n}\n#else\n// This should become obsolete once Corelibs Foundation adds Comparable conformance to NSNumber\npublic protocol NMBComparable {\n    func NMB_compare(_ otherObject: NMBComparable!) -> ComparisonResult\n}\n#endif\n\nextension NSNumber : NMBComparable {\n    public func NMB_compare(_ otherObject: NMBComparable!) -> ComparisonResult {\n        return compare(otherObject as! NSNumber)\n    }\n}\nextension NSString : NMBComparable {\n    public func NMB_compare(_ otherObject: NMBComparable!) -> ComparisonResult {\n        return compare(otherObject as! String)\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Matchers/PostNotification.swift",
    "content": "import Foundation\n\ninternal class NotificationCollector {\n    private(set) var observedNotifications: [Notification]\n    private let notificationCenter: NotificationCenter\n    #if _runtime(_ObjC)\n    private var token: AnyObject?\n    #else\n    private var token: NSObjectProtocol?\n    #endif\n\n    required init(notificationCenter: NotificationCenter) {\n        self.notificationCenter = notificationCenter\n        self.observedNotifications = []\n    }\n\n    func startObserving() {\n        self.token = self.notificationCenter.addObserver(forName: nil, object: nil, queue: nil) {\n            // linux-swift gets confused by .append(n)\n            [weak self] n in self?.observedNotifications.append(n)\n        }\n    }\n\n    deinit {\n        #if _runtime(_ObjC)\n            if let token = self.token {\n                self.notificationCenter.removeObserver(token)\n            }\n        #else\n            if let token = self.token as? AnyObject {\n                self.notificationCenter.removeObserver(token)\n            }\n        #endif\n    }\n}\n\nprivate let mainThread = pthread_self()\n\nlet notificationCenterDefault = NotificationCenter.default\n\npublic func postNotifications<T>(\n    _ notificationsMatcher: T,\n    fromNotificationCenter center: NotificationCenter = notificationCenterDefault)\n    -> MatcherFunc<Any>\n    where T: Matcher, T.ValueType == [Notification]\n{\n    let _ = mainThread // Force lazy-loading of this value\n    let collector = NotificationCollector(notificationCenter: center)\n    collector.startObserving()\n    var once: Bool = false\n    return MatcherFunc { actualExpression, failureMessage in\n        let collectorNotificationsExpression = Expression(memoizedExpression: { _ in\n            return collector.observedNotifications\n            }, location: actualExpression.location, withoutCaching: true)\n\n        assert(pthread_equal(mainThread, pthread_self()) != 0, \"Only expecting closure to be evaluated on main thread.\")\n        if !once {\n            once = true\n            _ = try actualExpression.evaluate()\n        }\n\n        let match = try notificationsMatcher.matches(collectorNotificationsExpression, failureMessage: failureMessage)\n        if collector.observedNotifications.isEmpty {\n            failureMessage.actualValue = \"no notifications\"\n        } else {\n            failureMessage.actualValue = \"<\\(stringify(collector.observedNotifications))>\"\n        }\n        return match\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Matchers/RaisesException.swift",
    "content": "import Foundation\n\n// This matcher requires the Objective-C, and being built by Xcode rather than the Swift Package Manager \n#if _runtime(_ObjC) && !SWIFT_PACKAGE\n\n/// A Nimble matcher that succeeds when the actual expression raises an\n/// exception with the specified name, reason, and/or\u0013 userInfo.\n///\n/// Alternatively, you can pass a closure to do any arbitrary custom matching\n/// to the raised exception. The closure only gets called when an exception\n/// is raised.\n///\n/// nil arguments indicates that the matcher should not attempt to match against\n/// that parameter.\npublic func raiseException(\n    named: String? = nil,\n    reason: String? = nil,\n    userInfo: NSDictionary? = nil,\n    closure: ((NSException) -> Void)? = nil) -> MatcherFunc<Any> {\n        return MatcherFunc { actualExpression, failureMessage in\n\n            var exception: NSException?\n            let capture = NMBExceptionCapture(handler: ({ e in\n                exception = e\n            }), finally: nil)\n\n            capture.tryBlock {\n                _ = try! actualExpression.evaluate()\n                return\n            }\n\n            setFailureMessageForException(failureMessage, exception: exception, named: named, reason: reason, userInfo: userInfo, closure: closure)\n            return exceptionMatchesNonNilFieldsOrClosure(exception, named: named, reason: reason, userInfo: userInfo, closure: closure)\n        }\n}\n\ninternal func setFailureMessageForException(\n    _ failureMessage: FailureMessage,\n    exception: NSException?,\n    named: String?,\n    reason: String?,\n    userInfo: NSDictionary?,\n    closure: ((NSException) -> Void)?) {\n        failureMessage.postfixMessage = \"raise exception\"\n\n        if let named = named {\n            failureMessage.postfixMessage += \" with name <\\(named)>\"\n        }\n        if let reason = reason {\n            failureMessage.postfixMessage += \" with reason <\\(reason)>\"\n        }\n        if let userInfo = userInfo {\n            failureMessage.postfixMessage += \" with userInfo <\\(userInfo)>\"\n        }\n        if let _ = closure {\n            failureMessage.postfixMessage += \" that satisfies block\"\n        }\n        if named == nil && reason == nil && userInfo == nil && closure == nil {\n            failureMessage.postfixMessage = \"raise any exception\"\n        }\n\n        if let exception = exception {\n            failureMessage.actualValue = \"\\(String(describing: type(of: exception))) { name=\\(exception.name), reason='\\(stringify(exception.reason))', userInfo=\\(stringify(exception.userInfo)) }\"\n        } else {\n            failureMessage.actualValue = \"no exception\"\n        }\n}\n\ninternal func exceptionMatchesNonNilFieldsOrClosure(\n    _ exception: NSException?,\n    named: String?,\n    reason: String?,\n    userInfo: NSDictionary?,\n    closure: ((NSException) -> Void)?) -> Bool {\n        var matches = false\n\n        if let exception = exception {\n            matches = true\n\n            if let named = named, exception.name.rawValue != named {\n                matches = false\n            }\n            if reason != nil && exception.reason != reason {\n                matches = false\n            }\n            if let userInfo = userInfo, let exceptionUserInfo = exception.userInfo,\n                (exceptionUserInfo as NSDictionary) != userInfo {\n                matches = false\n            }\n            if let closure = closure {\n                let assertions = gatherFailingExpectations {\n                    closure(exception)\n                }\n                let messages = assertions.map { $0.message }\n                if messages.count > 0 {\n                    matches = false\n                }\n            }\n        }\n        \n        return matches\n}\n\npublic class NMBObjCRaiseExceptionMatcher : NSObject, NMBMatcher {\n    internal var _name: String?\n    internal var _reason: String?\n    internal var _userInfo: NSDictionary?\n    internal var _block: ((NSException) -> Void)?\n\n    internal init(name: String?, reason: String?, userInfo: NSDictionary?, block: ((NSException) -> Void)?) {\n        _name = name\n        _reason = reason\n        _userInfo = userInfo\n        _block = block\n    }\n\n    public func matches(_ actualBlock: @escaping () -> NSObject!, failureMessage: FailureMessage, location: SourceLocation) -> Bool {\n        let block: () -> Any? = ({ _ = actualBlock(); return nil })\n        let expr = Expression(expression: block, location: location)\n\n        return try! raiseException(\n            named: _name,\n            reason: _reason,\n            userInfo: _userInfo,\n            closure: _block\n        ).matches(expr, failureMessage: failureMessage)\n    }\n\n    public func doesNotMatch(_ actualBlock: @escaping () -> NSObject!, failureMessage: FailureMessage, location: SourceLocation) -> Bool {\n        return !matches(actualBlock, failureMessage: failureMessage, location: location)\n    }\n\n    public var named: (_ name: String) -> NMBObjCRaiseExceptionMatcher {\n        return ({ name in\n            return NMBObjCRaiseExceptionMatcher(\n                name: name,\n                reason: self._reason,\n                userInfo: self._userInfo,\n                block: self._block\n            )\n        })\n    }\n\n    public var reason: (_ reason: String?) -> NMBObjCRaiseExceptionMatcher {\n        return ({ reason in\n            return NMBObjCRaiseExceptionMatcher(\n                name: self._name,\n                reason: reason,\n                userInfo: self._userInfo,\n                block: self._block\n            )\n        })\n    }\n\n    public var userInfo: (_ userInfo: NSDictionary?) -> NMBObjCRaiseExceptionMatcher {\n        return ({ userInfo in\n            return NMBObjCRaiseExceptionMatcher(\n                name: self._name,\n                reason: self._reason,\n                userInfo: userInfo,\n                block: self._block\n            )\n        })\n    }\n\n    public var satisfyingBlock: (_ block: ((NSException) -> Void)?) -> NMBObjCRaiseExceptionMatcher {\n        return ({ block in\n            return NMBObjCRaiseExceptionMatcher(\n                name: self._name,\n                reason: self._reason,\n                userInfo: self._userInfo,\n                block: block\n            )\n        })\n    }\n}\n\nextension NMBObjCMatcher {\n    public class func raiseExceptionMatcher() -> NMBObjCRaiseExceptionMatcher {\n        return NMBObjCRaiseExceptionMatcher(name: nil, reason: nil, userInfo: nil, block: nil)\n    }\n}\n#endif\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Matchers/SatisfyAnyOf.swift",
    "content": "import Foundation\n\n/// A Nimble matcher that succeeds when the actual value matches with any of the matchers\n/// provided in the variable list of matchers. \npublic func satisfyAnyOf<T,U>(_ matchers: U...) -> NonNilMatcherFunc<T>\n    where U: Matcher, U.ValueType == T\n{\n    return satisfyAnyOf(matchers)\n}\n\ninternal func satisfyAnyOf<T,U>(_ matchers: [U]) -> NonNilMatcherFunc<T>\n    where U: Matcher, U.ValueType == T\n{\n    return NonNilMatcherFunc<T> { actualExpression, failureMessage in\n        let postfixMessages = NSMutableArray()\n        var matches = false\n        for matcher in matchers {\n            if try matcher.matches(actualExpression, failureMessage: failureMessage) {\n                matches = true\n            }\n            postfixMessages.add(NSString(string: \"{\\(failureMessage.postfixMessage)}\"))\n        }\n\n        failureMessage.postfixMessage = \"match one of: \" + postfixMessages.componentsJoined(by: \", or \")\n        if let actualValue = try actualExpression.evaluate() {\n            failureMessage.actualValue = \"\\(actualValue)\"\n        }\n\n        return matches\n    }\n}\n\npublic func ||<T>(left: NonNilMatcherFunc<T>, right: NonNilMatcherFunc<T>) -> NonNilMatcherFunc<T> {\n    return satisfyAnyOf(left, right)\n}\n\npublic func ||<T>(left: MatcherFunc<T>, right: MatcherFunc<T>) -> NonNilMatcherFunc<T> {\n    return satisfyAnyOf(left, right)\n}\n\n#if _runtime(_ObjC)\nextension NMBObjCMatcher {\n    public class func satisfyAnyOfMatcher(_ matchers: [NMBObjCMatcher]) -> NMBObjCMatcher {\n        return NMBObjCMatcher(canMatchNil: false) { actualExpression, failureMessage in\n            if matchers.isEmpty {\n                failureMessage.stringValue = \"satisfyAnyOf must be called with at least one matcher\"\n                return false\n            }\n            \n            var elementEvaluators = [NonNilMatcherFunc<NSObject>]()\n            for matcher in matchers {\n                let elementEvaluator: (Expression<NSObject>, FailureMessage) -> Bool = {\n                    expression, failureMessage in\n                    return matcher.matches(\n                        {try! expression.evaluate()}, failureMessage: failureMessage, location: actualExpression.location)\n                }\n                \n                elementEvaluators.append(NonNilMatcherFunc(elementEvaluator))\n            }\n            \n            return try! satisfyAnyOf(elementEvaluators).matches(actualExpression, failureMessage: failureMessage)\n        }\n    }\n}\n#endif\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Matchers/ThrowAssertion.swift",
    "content": "import Foundation\n\npublic func throwAssertion() -> MatcherFunc<Void> {\n    return MatcherFunc { actualExpression, failureMessage in\n    #if arch(x86_64) && _runtime(_ObjC) && !SWIFT_PACKAGE\n        failureMessage.postfixMessage = \"throw an assertion\"\n        failureMessage.actualValue = nil\n        \n        var succeeded = true\n        \n        let caughtException: BadInstructionException? = catchBadInstruction {\n            #if os(tvOS)\n                if (!NimbleEnvironment.activeInstance.suppressTVOSAssertionWarning) {\n                    print()\n                    print(\"[Nimble Warning]: If you're getting stuck on a debugger breakpoint for a \" +\n                        \"fatal error while using throwAssertion(), please disable 'Debug Executable' \" +\n                        \"in your scheme. Go to 'Edit Scheme > Test > Info' and uncheck \" +\n                        \"'Debug Executable'. If you've already done that, suppress this warning \" +\n                        \"by setting `NimbleEnvironment.activeInstance.suppressTVOSAssertionWarning = true`. \" +\n                        \"This is required because the standard methods of catching assertions \" +\n                        \"(mach APIs) are unavailable for tvOS. Instead, the same mechanism the \" +\n                        \"debugger uses is the fallback method for tvOS.\"\n                    )\n                    print()\n                    NimbleEnvironment.activeInstance.suppressTVOSAssertionWarning = true\n                }\n            #endif\n            do {\n                try actualExpression.evaluate()\n            } catch let error {\n                succeeded = false\n                failureMessage.postfixMessage += \"; threw error instead <\\(error)>\"\n            }\n        }\n\n        if !succeeded {\n            return false\n        }\n        \n        if caughtException == nil {\n            return false\n        }\n        \n        return true\n    #elseif SWIFT_PACKAGE\n        fatalError(\"The throwAssertion Nimble matcher does not currently support Swift CLI.\" +\n            \" You can silence this error by placing the test case inside an #if !SWIFT_PACKAGE\" +\n            \" conditional statement\")\n    #else\n        fatalError(\"The throwAssertion Nimble matcher can only run on x86_64 platforms with \" +\n            \"Objective-C (e.g. Mac, iPhone 5s or later simulators). You can silence this error \" +\n            \"by placing the test case inside an #if arch(x86_64) or _runtime(_ObjC) conditional statement\")\n    #endif\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Matchers/ThrowError.swift",
    "content": "import Foundation\n\n/// A Nimble matcher that succeeds when the actual expression throws an\n/// error of the specified type or from the specified case.\n///\n/// Errors are tried to be compared by their implementation of Equatable,\n/// otherwise they fallback to comparision by _domain and _code.\n///\n/// Alternatively, you can pass a closure to do any arbitrary custom matching\n/// to the thrown error. The closure only gets called when an error was thrown.\n///\n/// nil arguments indicates that the matcher should not attempt to match against\n/// that parameter.\npublic func throwError<T: Error>(\n    _ error: T? = nil,\n    errorType: T.Type? = nil,\n    closure: ((T) -> Void)? = nil) -> MatcherFunc<Any> {\n        return MatcherFunc { actualExpression, failureMessage in\n\n            var actualError: Error?\n            do {\n                _ = try actualExpression.evaluate()\n            } catch let catchedError {\n                actualError = catchedError\n            }\n\n            setFailureMessageForError(failureMessage, actualError: actualError, error: error, errorType: errorType, closure: closure)\n            return errorMatchesNonNilFieldsOrClosure(actualError, error: error, errorType: errorType, closure: closure)\n        }\n}\n\n/// A Nimble matcher that succeeds when the actual expression throws any\n/// error or when the passed closures' arbitrary custom matching succeeds.\n///\n/// This duplication to it's generic adequate is required to allow to receive\n/// values of the existential type `Error` in the closure.\n///\n/// The closure only gets called when an error was thrown.\npublic func throwError(\n    closure: ((Error) -> Void)? = nil) -> MatcherFunc<Any> {\n        return MatcherFunc { actualExpression, failureMessage in\n            \n            var actualError: Error?\n            do {\n                _ = try actualExpression.evaluate()\n            } catch let catchedError {\n                actualError = catchedError\n            }\n            \n            setFailureMessageForError(failureMessage, actualError: actualError, closure: closure)\n            return errorMatchesNonNilFieldsOrClosure(actualError, closure: closure)\n        }\n}\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Nimble.h",
    "content": "#import <Foundation/Foundation.h>\n#import \"NMBExceptionCapture.h\"\n#import \"NMBStringify.h\"\n#import \"DSL.h\"\n\n#import \"CwlCatchException.h\"\n#import \"CwlCatchBadInstruction.h\"\n\n#if !TARGET_OS_TV\n    #import \"mach_excServer.h\"\n#endif\n\nFOUNDATION_EXPORT double NimbleVersionNumber;\nFOUNDATION_EXPORT const unsigned char NimbleVersionString[];\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Utils/Async.swift",
    "content": "import CoreFoundation\nimport Dispatch\nimport Foundation\n\n#if !_runtime(_ObjC)\n    import CDispatch\n#endif\n\nprivate let timeoutLeeway = DispatchTimeInterval.milliseconds(1)\nprivate let pollLeeway = DispatchTimeInterval.milliseconds(1)\n\n/// Stores debugging information about callers\ninternal struct WaitingInfo: CustomStringConvertible {\n    let name: String\n    let file: FileString\n    let lineNumber: UInt\n\n    var description: String {\n        return \"\\(name) at \\(file):\\(lineNumber)\"\n    }\n}\n\ninternal protocol WaitLock {\n    func acquireWaitingLock(_ fnName: String, file: FileString, line: UInt)\n    func releaseWaitingLock()\n    func isWaitingLocked() -> Bool\n}\n\ninternal class AssertionWaitLock: WaitLock {\n    private var currentWaiter: WaitingInfo? = nil\n    init() { }\n\n    func acquireWaitingLock(_ fnName: String, file: FileString, line: UInt) {\n        let info = WaitingInfo(name: fnName, file: file, lineNumber: line)\n        #if _runtime(_ObjC)\n            let isMainThread = Thread.isMainThread\n        #else\n            let isMainThread = _CFIsMainThread()\n        #endif\n        nimblePrecondition(\n            isMainThread,\n            \"InvalidNimbleAPIUsage\",\n            \"\\(fnName) can only run on the main thread.\"\n        )\n        nimblePrecondition(\n            currentWaiter == nil,\n            \"InvalidNimbleAPIUsage\",\n            \"Nested async expectations are not allowed to avoid creating flaky tests.\\n\\n\" +\n            \"The call to\\n\\t\\(info)\\n\" +\n            \"triggered this exception because\\n\\t\\(currentWaiter!)\\n\" +\n            \"is currently managing the main run loop.\"\n        )\n        currentWaiter = info\n    }\n\n    func isWaitingLocked() -> Bool {\n        return currentWaiter != nil\n    }\n\n    func releaseWaitingLock() {\n        currentWaiter = nil\n    }\n}\n\ninternal enum AwaitResult<T> {\n    /// Incomplete indicates None (aka - this value hasn't been fulfilled yet)\n    case incomplete\n    /// TimedOut indicates the result reached its defined timeout limit before returning\n    case timedOut\n    /// BlockedRunLoop indicates the main runloop is too busy processing other blocks to trigger\n    /// the timeout code.\n    ///\n    /// This may also mean the async code waiting upon may have never actually ran within the\n    /// required time because other timers & sources are running on the main run loop.\n    case blockedRunLoop\n    /// The async block successfully executed and returned a given result\n    case completed(T)\n    /// When a Swift Error is thrown\n    case errorThrown(Error)\n    /// When an Objective-C Exception is raised\n    case raisedException(NSException)\n\n    func isIncomplete() -> Bool {\n        switch self {\n        case .incomplete: return true\n        default: return false\n        }\n    }\n\n    func isCompleted() -> Bool {\n        switch self {\n        case .completed(_): return true\n        default: return false\n        }\n    }\n}\n\n/// Holds the resulting value from an asynchronous expectation.\n/// This class is thread-safe at receiving an \"response\" to this promise.\ninternal class AwaitPromise<T> {\n    private(set) internal var asyncResult: AwaitResult<T> = .incomplete\n    private var signal: DispatchSemaphore\n\n    init() {\n        signal = DispatchSemaphore(value: 1)\n    }\n\n    /// Resolves the promise with the given result if it has not been resolved. Repeated calls to\n    /// this method will resolve in a no-op.\n    ///\n    /// @returns a Bool that indicates if the async result was accepted or rejected because another\n    ///          value was recieved first.\n    func resolveResult(_ result: AwaitResult<T>) -> Bool {\n        if signal.wait(timeout: .now()) == .success {\n            self.asyncResult = result\n            return true\n        } else {\n            return false\n        }\n    }\n}\n\ninternal struct AwaitTrigger {\n    let timeoutSource: DispatchSourceTimer\n    let actionSource: DispatchSourceTimer?\n    let start: () throws -> Void\n}\n\n/// Factory for building fully configured AwaitPromises and waiting for their results.\n///\n/// This factory stores all the state for an async expectation so that Await doesn't\n/// doesn't have to manage it.\ninternal class AwaitPromiseBuilder<T> {\n    let awaiter: Awaiter\n    let waitLock: WaitLock\n    let trigger: AwaitTrigger\n    let promise: AwaitPromise<T>\n\n    internal init(\n        awaiter: Awaiter,\n        waitLock: WaitLock,\n        promise: AwaitPromise<T>,\n        trigger: AwaitTrigger) {\n            self.awaiter = awaiter\n            self.waitLock = waitLock\n            self.promise = promise\n            self.trigger = trigger\n    }\n\n    func timeout(_ timeoutInterval: TimeInterval, forcefullyAbortTimeout: TimeInterval) -> Self {\n        // = Discussion =\n        //\n        // There's a lot of technical decisions here that is useful to elaborate on. This is\n        // definitely more lower-level than the previous NSRunLoop based implementation.\n        //\n        //\n        // Why Dispatch Source?\n        //\n        //\n        // We're using a dispatch source to have better control of the run loop behavior.\n        // A timer source gives us deferred-timing control without having to rely as much on\n        // a run loop's traditional dispatching machinery (eg - NSTimers, DefaultRunLoopMode, etc.)\n        // which is ripe for getting corrupted by application code.\n        //\n        // And unlike dispatch_async(), we can control how likely our code gets prioritized to\n        // executed (see leeway parameter) + DISPATCH_TIMER_STRICT.\n        //\n        // This timer is assumed to run on the HIGH priority queue to ensure it maintains the\n        // highest priority over normal application / test code when possible.\n        //\n        //\n        // Run Loop Management\n        //\n        // In order to properly interrupt the waiting behavior performed by this factory class,\n        // this timer stops the main run loop to tell the waiter code that the result should be\n        // checked.\n        //\n        // In addition, stopping the run loop is used to halt code executed on the main run loop.\n        trigger.timeoutSource.scheduleOneshot(\n            deadline: DispatchTime.now() + timeoutInterval,\n            leeway: timeoutLeeway)\n        trigger.timeoutSource.setEventHandler() {\n            guard self.promise.asyncResult.isIncomplete() else { return }\n            let timedOutSem = DispatchSemaphore(value: 0)\n            let semTimedOutOrBlocked = DispatchSemaphore(value: 0)\n            semTimedOutOrBlocked.signal()\n            let runLoop = CFRunLoopGetMain()\n            #if _runtime(_ObjC)\n                let runLoopMode = CFRunLoopMode.defaultMode.rawValue\n            #else\n                let runLoopMode = kCFRunLoopDefaultMode\n            #endif\n            CFRunLoopPerformBlock(runLoop, runLoopMode) {\n                if semTimedOutOrBlocked.wait(timeout: .now()) == .success {\n                    timedOutSem.signal()\n                    semTimedOutOrBlocked.signal()\n                    if self.promise.resolveResult(.timedOut) {\n                        CFRunLoopStop(CFRunLoopGetMain())\n                    }\n                }\n            }\n            // potentially interrupt blocking code on run loop to let timeout code run\n            CFRunLoopStop(runLoop)\n            let now = DispatchTime.now() + forcefullyAbortTimeout\n            let didNotTimeOut = timedOutSem.wait(timeout: now) != .success\n            let timeoutWasNotTriggered = semTimedOutOrBlocked.wait(timeout: .now()) == .success\n            if didNotTimeOut && timeoutWasNotTriggered {\n                if self.promise.resolveResult(.blockedRunLoop) {\n                    CFRunLoopStop(CFRunLoopGetMain())\n                }\n            }\n        }\n        return self\n    }\n\n    /// Blocks for an asynchronous result.\n    ///\n    /// @discussion\n    /// This function must be executed on the main thread and cannot be nested. This is because\n    /// this function (and it's related methods) coordinate through the main run loop. Tampering\n    /// with the run loop can cause undesireable behavior.\n    ///\n    /// This method will return an AwaitResult in the following cases:\n    ///\n    /// - The main run loop is blocked by other operations and the async expectation cannot be\n    ///   be stopped.\n    /// - The async expectation timed out\n    /// - The async expectation succeeded\n    /// - The async expectation raised an unexpected exception (objc)\n    /// - The async expectation raised an unexpected error (swift)\n    ///\n    /// The returned AwaitResult will NEVER be .incomplete.\n    func wait(_ fnName: String = #function, file: FileString = #file, line: UInt = #line) -> AwaitResult<T> {\n        waitLock.acquireWaitingLock(\n            fnName,\n            file: file,\n            line: line)\n\n        let capture = NMBExceptionCapture(handler: ({ exception in\n            _ = self.promise.resolveResult(.raisedException(exception))\n        }), finally: ({\n            self.waitLock.releaseWaitingLock()\n        }))\n        capture.tryBlock {\n            do {\n                try self.trigger.start()\n            } catch let error {\n                _ = self.promise.resolveResult(.errorThrown(error))\n            }\n            self.trigger.timeoutSource.resume()\n            while self.promise.asyncResult.isIncomplete() {\n                // Stopping the run loop does not work unless we run only 1 mode\n                _ = RunLoop.current.run(mode: .defaultRunLoopMode, before: .distantFuture)\n            }\n            self.trigger.timeoutSource.suspend()\n            self.trigger.timeoutSource.cancel()\n            if let asyncSource = self.trigger.actionSource {\n                asyncSource.cancel()\n            }\n        }\n\n        return promise.asyncResult\n    }\n}\n\ninternal class Awaiter {\n    let waitLock: WaitLock\n    let timeoutQueue: DispatchQueue\n    let asyncQueue: DispatchQueue\n\n    internal init(\n        waitLock: WaitLock,\n        asyncQueue: DispatchQueue,\n        timeoutQueue: DispatchQueue) {\n            self.waitLock = waitLock\n            self.asyncQueue = asyncQueue\n            self.timeoutQueue = timeoutQueue\n    }\n\n    private func createTimerSource(_ queue: DispatchQueue) -> DispatchSourceTimer {\n        return DispatchSource.makeTimerSource(flags: .strict, queue: queue)\n    }\n\n    func performBlock<T>(\n        _ closure: @escaping (@escaping (T) -> Void) throws -> Void) -> AwaitPromiseBuilder<T> {\n            let promise = AwaitPromise<T>()\n            let timeoutSource = createTimerSource(timeoutQueue)\n            var completionCount = 0\n            let trigger = AwaitTrigger(timeoutSource: timeoutSource, actionSource: nil) {\n                try closure() {\n                    completionCount += 1\n                    nimblePrecondition(\n                        completionCount < 2,\n                        \"InvalidNimbleAPIUsage\",\n                        \"Done closure's was called multiple times. waitUntil(..) expects its \" +\n                        \"completion closure to only be called once.\")\n                    if promise.resolveResult(.completed($0)) {\n                        CFRunLoopStop(CFRunLoopGetMain())\n                    }\n                }\n            }\n\n            return AwaitPromiseBuilder(\n                awaiter: self,\n                waitLock: waitLock,\n                promise: promise,\n                trigger: trigger)\n    }\n\n    func poll<T>(_ pollInterval: TimeInterval, closure: @escaping () throws -> T?) -> AwaitPromiseBuilder<T> {\n        let promise = AwaitPromise<T>()\n        let timeoutSource = createTimerSource(timeoutQueue)\n        let asyncSource = createTimerSource(asyncQueue)\n        let trigger = AwaitTrigger(timeoutSource: timeoutSource, actionSource: asyncSource) {\n            let interval = DispatchTimeInterval.nanoseconds(Int(pollInterval * TimeInterval(NSEC_PER_SEC)))\n            asyncSource.scheduleRepeating(deadline: .now(), interval: interval, leeway: pollLeeway)\n            asyncSource.setEventHandler() {\n                do {\n                    if let result = try closure() {\n                        if promise.resolveResult(.completed(result)) {\n                            CFRunLoopStop(CFRunLoopGetCurrent())\n                        }\n                    }\n                } catch let error {\n                    if promise.resolveResult(.errorThrown(error)) {\n                        CFRunLoopStop(CFRunLoopGetCurrent())\n                    }\n                }\n            }\n            asyncSource.resume()\n        }\n\n        return AwaitPromiseBuilder(\n            awaiter: self,\n            waitLock: waitLock,\n            promise: promise,\n            trigger: trigger)\n    }\n}\n\ninternal func pollBlock(\n    pollInterval: TimeInterval,\n    timeoutInterval: TimeInterval,\n    file: FileString,\n    line: UInt,\n    fnName: String = #function,\n    expression: @escaping () throws -> Bool) -> AwaitResult<Bool> {\n        let awaiter = NimbleEnvironment.activeInstance.awaiter\n        let result = awaiter.poll(pollInterval) { () throws -> Bool? in\n            do {\n                if try expression() {\n                    return true\n                }\n                return nil\n            } catch let error {\n                throw error\n            }\n        }.timeout(timeoutInterval, forcefullyAbortTimeout: timeoutInterval / 2.0).wait(fnName, file: file, line: line)\n\n        return result\n}\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Utils/Errors.swift",
    "content": "import Foundation\n\n// Generic\n\ninternal func setFailureMessageForError<T: Error>(\n    _ failureMessage: FailureMessage,\n    postfixMessageVerb: String = \"throw\",\n    actualError: Error?,\n    error: T? = nil,\n    errorType: T.Type? = nil,\n    closure: ((T) -> Void)? = nil) {\n    failureMessage.postfixMessage = \"\\(postfixMessageVerb) error\"\n\n    if let error = error {\n        if let error = error as? CustomDebugStringConvertible {\n            failureMessage.postfixMessage += \" <\\(error.debugDescription)>\"\n        } else {\n            failureMessage.postfixMessage += \" <\\(error)>\"\n        }\n    } else if errorType != nil || closure != nil {\n        failureMessage.postfixMessage += \" from type <\\(T.self)>\"\n    }\n    if let _ = closure {\n        failureMessage.postfixMessage += \" that satisfies block\"\n    }\n    if error == nil && errorType == nil && closure == nil {\n        failureMessage.postfixMessage = \"\\(postfixMessageVerb) any error\"\n    }\n\n    if let actualError = actualError {\n        failureMessage.actualValue = \"<\\(actualError)>\"\n    } else {\n        failureMessage.actualValue = \"no error\"\n    }\n}\n\ninternal func errorMatchesExpectedError<T: Error>(\n    _ actualError: Error,\n    expectedError: T) -> Bool {\n    return actualError._domain == expectedError._domain\n        && actualError._code   == expectedError._code\n}\n\ninternal func errorMatchesExpectedError<T: Error>(\n    _ actualError: Error,\n    expectedError: T) -> Bool\n    where T: Equatable\n{\n    if let actualError = actualError as? T {\n        return actualError == expectedError\n    }\n    return false\n}\n\ninternal func errorMatchesNonNilFieldsOrClosure<T: Error>(\n    _ actualError: Error?,\n    error: T? = nil,\n    errorType: T.Type? = nil,\n    closure: ((T) -> Void)? = nil) -> Bool {\n    var matches = false\n\n    if let actualError = actualError {\n        matches = true\n\n        if let error = error {\n            if !errorMatchesExpectedError(actualError, expectedError: error) {\n                matches = false\n            }\n        }\n        if let actualError = actualError as? T {\n            if let closure = closure {\n                let assertions = gatherFailingExpectations {\n                    closure(actualError as T)\n                }\n                let messages = assertions.map { $0.message }\n                if messages.count > 0 {\n                    matches = false\n                }\n            }\n        } else if errorType != nil {\n            matches = (actualError is T)\n            // The closure expects another ErrorProtocol as argument, so this\n            // is _supposed_ to fail, so that it becomes more obvious.\n            if let closure = closure {\n                let assertions = gatherExpectations {\n                    if let actual = actualError as? T {\n                        closure(actual)\n                    }\n                }\n                let messages = assertions.map { $0.message }\n                if messages.count > 0 {\n                    matches = false\n                }\n            }\n        }\n    }\n\n    return matches\n}\n\n// Non-generic\n\ninternal func setFailureMessageForError(\n    _ failureMessage: FailureMessage,\n    actualError: Error?,\n    closure: ((Error) -> Void)?) {\n    failureMessage.postfixMessage = \"throw error\"\n\n    if let _ = closure {\n        failureMessage.postfixMessage += \" that satisfies block\"\n    } else {\n        failureMessage.postfixMessage = \"throw any error\"\n    }\n\n    if let actualError = actualError {\n        failureMessage.actualValue = \"<\\(actualError)>\"\n    } else {\n        failureMessage.actualValue = \"no error\"\n    }\n}\n\ninternal func errorMatchesNonNilFieldsOrClosure(\n    _ actualError: Error?,\n    closure: ((Error) -> Void)?) -> Bool {\n    var matches = false\n\n    if let actualError = actualError {\n        matches = true\n\n        if let closure = closure {\n            let assertions = gatherFailingExpectations {\n                closure(actualError)\n            }\n            let messages = assertions.map { $0.message }\n            if messages.count > 0 {\n                matches = false\n            }\n        }\n    }\n\n    return matches\n}\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Utils/Functional.swift",
    "content": "import Foundation\n\nextension Sequence {\n    internal func all(_ fn: (Iterator.Element) -> Bool) -> Bool {\n        for item in self {\n            if !fn(item) {\n                return false\n            }\n        }\n        return true\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Utils/SourceLocation.swift",
    "content": "import Foundation\n\n// Ideally we would always use `StaticString` as the type for tracking the file name\n// that expectations originate from, for consistency with `assert` etc. from the\n// stdlib, and because recent versions of the XCTest overlay require `StaticString`\n// when calling `XCTFail`. Under the Objective-C runtime (i.e. building on Mac), we\n// have to use `String` instead because StaticString can't be generated from Objective-C\n#if _runtime(_ObjC)\npublic typealias FileString = String\n#else\npublic typealias FileString = StaticString\n#endif\n\npublic final class SourceLocation : NSObject {\n    public let file: FileString\n    public let line: UInt\n\n    override init() {\n        file = \"Unknown File\"\n        line = 0\n    }\n\n    init(file: FileString, line: UInt) {\n        self.file = file\n        self.line = line\n    }\n\n    override public var description: String {\n        return \"\\(file):\\(line)\"\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/Nimble/Utils/Stringers.swift",
    "content": "import Foundation\n\n\ninternal func identityAsString(_ value: Any?) -> String {\n    let anyObject: AnyObject?\n#if os(Linux)\n    anyObject = value as? AnyObject\n#else\n    anyObject = value as AnyObject?\n#endif\n    if let value = anyObject {\n        return NSString(format: \"<%p>\", unsafeBitCast(value, to: Int.self)).description\n    } else {\n        return \"nil\"\n    }\n}\n\ninternal func arrayAsString<T>(_ items: [T], joiner: String = \", \") -> String {\n    return items.reduce(\"\") { accum, item in\n        let prefix = (accum.isEmpty ? \"\" : joiner)\n        return accum + prefix + \"\\(stringify(item))\"\n    }\n}\n\n/// A type with a customized test output text representation.\n///\n/// This textual representation is produced when values will be\n/// printed in test runs, and may be useful when producing\n/// error messages in custom matchers.\n///\n/// - SeeAlso: `CustomDebugStringConvertible`\npublic protocol TestOutputStringConvertible {\n    var testDescription: String { get }\n}\n\nextension Double: TestOutputStringConvertible {\n    public var testDescription: String {\n        return NSNumber(value: self).testDescription\n    }\n}\n\nextension Float: TestOutputStringConvertible {\n    public var testDescription: String {\n        return NSNumber(value: self).testDescription\n    }\n}\n\nextension NSNumber: TestOutputStringConvertible {\n    // This is using `NSString(format:)` instead of\n    // `String(format:)` because the latter somehow breaks\n    // the travis CI build on linux.\n    public var testDescription: String {\n        let description = self.description\n        \n        if description.contains(\".\") {\n            // Travis linux swiftpm build doesn't like casting String to NSString,\n            // which is why this annoying nested initializer thing is here.\n            // Maybe this will change in a future snapshot.\n            let decimalPlaces = NSString(string: NSString(string: description)\n                .components(separatedBy: \".\")[1])\n\n            // SeeAlso: https://bugs.swift.org/browse/SR-1464\n            switch decimalPlaces.length {\n            case 1:\n                return NSString(format: \"%0.1f\", self.doubleValue).description\n            case 2:\n                return NSString(format: \"%0.2f\", self.doubleValue).description\n            case 3:\n                return NSString(format: \"%0.3f\", self.doubleValue).description\n            default:\n                return NSString(format: \"%0.4f\", self.doubleValue).description\n            }\n        }\n        return self.description\n    }\n}\n\nextension Array: TestOutputStringConvertible {\n    public var testDescription: String {\n        let list = self.map(Nimble.stringify).joined(separator: \", \")\n        return \"[\\(list)]\"\n    }\n}\n\nextension AnySequence: TestOutputStringConvertible {\n    public var testDescription: String {\n        let generator = self.makeIterator()\n        var strings = [String]()\n        var value: AnySequence.Iterator.Element?\n        \n        repeat {\n            value = generator.next()\n            if let value = value {\n                strings.append(stringify(value))\n            }\n        } while value != nil\n        \n        let list = strings.joined(separator: \", \")\n        return \"[\\(list)]\"\n    }\n}\n\nextension NSArray: TestOutputStringConvertible {\n    public var testDescription: String {\n        let list = Array(self).map(Nimble.stringify).joined(separator: \", \")\n        return \"(\\(list))\"\n    }\n}\n\nextension NSIndexSet: TestOutputStringConvertible {\n    public var testDescription: String {\n        let list = Array(self).map(Nimble.stringify).joined(separator: \", \")\n        return \"(\\(list))\"\n    }\n}\n\nextension String: TestOutputStringConvertible {\n    public var testDescription: String {\n        return self\n    }\n}\n\nextension Data: TestOutputStringConvertible {\n    public var testDescription: String {\n        #if os(Linux)\n            // FIXME: Swift on Linux triggers a segfault when calling NSData's hash() (last checked on 03-11-16)\n            return \"Data<length=\\(count)>\"\n        #else\n            return \"Data<hash=\\((self as NSData).hash),length=\\(count)>\"\n        #endif\n    }\n}\n\n///\n/// Returns a string appropriate for displaying in test output\n/// from the provided value.\n///\n/// - parameter value: A value that will show up in a test's output.\n///\n/// - returns: The string that is returned can be\n///     customized per type by conforming a type to the `TestOutputStringConvertible`\n///     protocol. When stringifying a non-`TestOutputStringConvertible` type, this\n///     function will return the value's debug description and then its\n///     normal description if available and in that order. Otherwise it\n///     will return the result of constructing a string from the value.\n///\n/// - SeeAlso: `TestOutputStringConvertible`\npublic func stringify<T>(_ value: T) -> String {\n    if let value = value as? TestOutputStringConvertible {\n        return value.testDescription\n    }\n    \n    if let value = value as? CustomDebugStringConvertible {\n        return value.debugDescription\n    }\n    \n    return String(describing: value)\n}\n\n/// -SeeAlso: `stringify<T>(value: T)`\npublic func stringify<T>(_ value: T?) -> String {\n    if let unboxed = value {\n        return stringify(unboxed)\n    }\n    return \"nil\"\n}\n\n#if _runtime(_ObjC)\n@objc public class NMBStringer: NSObject {\n    @objc public class func stringify(_ obj: Any?) -> String {\n        return Nimble.stringify(obj)\n    }\n}\n#endif\n\n// MARK: Collection Type Stringers\n\n/// Attempts to generate a pretty type string for a given value. If the value is of a Objective-C\n/// collection type, or a subclass thereof, (e.g. `NSArray`, `NSDictionary`, etc.). \n/// This function will return the type name of the root class of the class cluster for better\n/// readability (e.g. `NSArray` instead of `__NSArrayI`).\n///\n/// For values that don't have a type of an Objective-C collection, this function returns the\n/// default type description.\n///\n/// - parameter value: A value that will be used to determine a type name.\n///\n/// - returns: The name of the class cluster root class for Objective-C collection types, or the\n/// the `dynamicType` of the value for values of any other type.\npublic func prettyCollectionType<T>(_ value: T) -> String {\n    switch value {\n    case is NSArray:\n        return String(describing: NSArray.self)\n    case is NSDictionary:\n        return String(describing: NSDictionary.self)\n    case is NSSet:\n        return String(describing: NSSet.self)\n    case is NSIndexSet:\n        return String(describing: NSIndexSet.self)\n    default:\n        return String(describing: value)\n    }\n}\n\n/// Returns the type name for a given collection type. This overload is used by Swift\n/// collection types.\n///\n/// - parameter collection: A Swift `CollectionType` value.\n///\n/// - returns: A string representing the `dynamicType` of the value.\npublic func prettyCollectionType<T: Collection>(_ collection: T) -> String {\n    return String(describing: type(of: collection))\n}\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/NimbleObjectiveC/CurrentTestCaseTracker.h",
    "content": "#import <XCTest/XCTest.h>\n#import <Nimble/Nimble-Swift.h>\n\nSWIFT_CLASS(\"_TtC6Nimble22CurrentTestCaseTracker\")\n@interface CurrentTestCaseTracker : NSObject <XCTestObservation>\n+ (CurrentTestCaseTracker *)sharedInstance;\n@end\n\n@interface CurrentTestCaseTracker (Register) @end\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/NimbleObjectiveC/DSL.h",
    "content": "#import <Foundation/Foundation.h>\n\n@class NMBExpectation;\n@class NMBObjCBeCloseToMatcher;\n@class NMBObjCRaiseExceptionMatcher;\n@protocol NMBMatcher;\n\n\nNS_ASSUME_NONNULL_BEGIN\n\n\n#define NIMBLE_OVERLOADABLE __attribute__((overloadable))\n#define NIMBLE_EXPORT FOUNDATION_EXPORT\n#define NIMBLE_EXPORT_INLINE FOUNDATION_STATIC_INLINE\n\n#define NIMBLE_VALUE_OF(VAL) ({ \\\n    __typeof__((VAL)) val = (VAL); \\\n    [NSValue valueWithBytes:&val objCType:@encode(__typeof__((VAL)))]; \\\n})\n\n#ifdef NIMBLE_DISABLE_SHORT_SYNTAX\n#define NIMBLE_SHORT(PROTO, ORIGINAL)\n#define NIMBLE_SHORT_OVERLOADED(PROTO, ORIGINAL)\n#else\n#define NIMBLE_SHORT(PROTO, ORIGINAL) FOUNDATION_STATIC_INLINE PROTO { return (ORIGINAL); }\n#define NIMBLE_SHORT_OVERLOADED(PROTO, ORIGINAL) FOUNDATION_STATIC_INLINE NIMBLE_OVERLOADABLE PROTO { return (ORIGINAL); }\n#endif\n\n\n\n#define DEFINE_NMB_EXPECT_OVERLOAD(TYPE, EXPR) \\\n        NIMBLE_EXPORT_INLINE NIMBLE_OVERLOADABLE \\\n        NMBExpectation *NMB_expect(TYPE(^actualBlock)(), NSString *file, NSUInteger line) { \\\n            return NMB_expect(^id { return EXPR; }, file, line); \\\n        }\n\n    NIMBLE_EXPORT NIMBLE_OVERLOADABLE\n    NMBExpectation *NMB_expect(id(^actualBlock)(), NSString *file, NSUInteger line);\n\n    // overloaded dispatch for nils - expect(nil)\n    DEFINE_NMB_EXPECT_OVERLOAD(void*, nil)\n    DEFINE_NMB_EXPECT_OVERLOAD(NSRange, NIMBLE_VALUE_OF(actualBlock()))\n    DEFINE_NMB_EXPECT_OVERLOAD(long, @(actualBlock()))\n    DEFINE_NMB_EXPECT_OVERLOAD(unsigned long, @(actualBlock()))\n    DEFINE_NMB_EXPECT_OVERLOAD(int, @(actualBlock()))\n    DEFINE_NMB_EXPECT_OVERLOAD(unsigned int, @(actualBlock()))\n    DEFINE_NMB_EXPECT_OVERLOAD(float, @(actualBlock()))\n    DEFINE_NMB_EXPECT_OVERLOAD(double, @(actualBlock()))\n    DEFINE_NMB_EXPECT_OVERLOAD(long long, @(actualBlock()))\n    DEFINE_NMB_EXPECT_OVERLOAD(unsigned long long, @(actualBlock()))\n    DEFINE_NMB_EXPECT_OVERLOAD(char, @(actualBlock()))\n    DEFINE_NMB_EXPECT_OVERLOAD(unsigned char, @(actualBlock()))\n    // bool doesn't get the compiler to dispatch to BOOL types, but using BOOL here seems to allow\n    // the compiler to dispatch to bool.\n    DEFINE_NMB_EXPECT_OVERLOAD(BOOL, @(actualBlock()))\n    DEFINE_NMB_EXPECT_OVERLOAD(char *, @(actualBlock()))\n\n\n#undef DEFINE_NMB_EXPECT_OVERLOAD\n\n\n\nNIMBLE_EXPORT NMBExpectation *NMB_expectAction(void(^actualBlock)(), NSString *file, NSUInteger line);\n\n\n\n#define DEFINE_OVERLOAD(TYPE, EXPR) \\\n        NIMBLE_EXPORT_INLINE NIMBLE_OVERLOADABLE \\\n        id<NMBMatcher> NMB_equal(TYPE expectedValue) { \\\n            return NMB_equal((EXPR)); \\\n        } \\\n        NIMBLE_SHORT_OVERLOADED(id<NMBMatcher> equal(TYPE expectedValue), NMB_equal(expectedValue));\n\n\n    NIMBLE_EXPORT NIMBLE_OVERLOADABLE\n    id<NMBMatcher> NMB_equal(__nullable id expectedValue);\n\n    NIMBLE_SHORT_OVERLOADED(id<NMBMatcher> equal(__nullable id expectedValue),\n                            NMB_equal(expectedValue));\n\n    // overloaded dispatch for nils - expect(nil)\n    DEFINE_OVERLOAD(void*__nullable, (id)nil)\n    DEFINE_OVERLOAD(NSRange, NIMBLE_VALUE_OF(expectedValue))\n    DEFINE_OVERLOAD(long, @(expectedValue))\n    DEFINE_OVERLOAD(unsigned long, @(expectedValue))\n    DEFINE_OVERLOAD(int, @(expectedValue))\n    DEFINE_OVERLOAD(unsigned int, @(expectedValue))\n    DEFINE_OVERLOAD(float, @(expectedValue))\n    DEFINE_OVERLOAD(double, @(expectedValue))\n    DEFINE_OVERLOAD(long long, @(expectedValue))\n    DEFINE_OVERLOAD(unsigned long long, @(expectedValue))\n    DEFINE_OVERLOAD(char, @(expectedValue))\n    DEFINE_OVERLOAD(unsigned char, @(expectedValue))\n    // bool doesn't get the compiler to dispatch to BOOL types, but using BOOL here seems to allow\n    // the compiler to dispatch to bool.\n    DEFINE_OVERLOAD(BOOL, @(expectedValue))\n    DEFINE_OVERLOAD(char *, @(expectedValue))\n\n#undef DEFINE_OVERLOAD\n\n\n#define DEFINE_OVERLOAD(TYPE, EXPR) \\\n        NIMBLE_EXPORT_INLINE NIMBLE_OVERLOADABLE \\\n        id<NMBMatcher> NMB_haveCount(TYPE expectedValue) { \\\n            return NMB_haveCount((EXPR)); \\\n        } \\\n        NIMBLE_SHORT_OVERLOADED(id<NMBMatcher> haveCount(TYPE expectedValue), \\\n            NMB_haveCount(expectedValue));\n\n\n    NIMBLE_EXPORT NIMBLE_OVERLOADABLE\n    id<NMBMatcher> NMB_haveCount(id expectedValue);\n\n    NIMBLE_SHORT_OVERLOADED(id<NMBMatcher> haveCount(id expectedValue),\n                            NMB_haveCount(expectedValue));\n\n    DEFINE_OVERLOAD(long, @(expectedValue))\n    DEFINE_OVERLOAD(unsigned long, @(expectedValue))\n    DEFINE_OVERLOAD(int, @(expectedValue))\n    DEFINE_OVERLOAD(unsigned int, @(expectedValue))\n    DEFINE_OVERLOAD(long long, @(expectedValue))\n    DEFINE_OVERLOAD(unsigned long long, @(expectedValue))\n    DEFINE_OVERLOAD(char, @(expectedValue))\n    DEFINE_OVERLOAD(unsigned char, @(expectedValue))\n\n#undef DEFINE_OVERLOAD\n\n#define DEFINE_OVERLOAD(TYPE, EXPR) \\\n        NIMBLE_EXPORT_INLINE NIMBLE_OVERLOADABLE \\\n        NMBObjCBeCloseToMatcher *NMB_beCloseTo(TYPE expectedValue) { \\\n            return NMB_beCloseTo((NSNumber *)(EXPR)); \\\n        } \\\n        NIMBLE_SHORT_OVERLOADED(NMBObjCBeCloseToMatcher *beCloseTo(TYPE expectedValue), \\\n            NMB_beCloseTo(expectedValue));\n\n    NIMBLE_EXPORT NIMBLE_OVERLOADABLE NMBObjCBeCloseToMatcher *NMB_beCloseTo(NSNumber *expectedValue);\n    NIMBLE_SHORT_OVERLOADED(NMBObjCBeCloseToMatcher *beCloseTo(NSNumber *expectedValue),\n                            NMB_beCloseTo(expectedValue));\n\n    // it would be better to only overload float & double, but zero becomes ambigious\n\n    DEFINE_OVERLOAD(long, @(expectedValue))\n    DEFINE_OVERLOAD(unsigned long, @(expectedValue))\n    DEFINE_OVERLOAD(int, @(expectedValue))\n    DEFINE_OVERLOAD(unsigned int, @(expectedValue))\n    DEFINE_OVERLOAD(float, @(expectedValue))\n    DEFINE_OVERLOAD(double, @(expectedValue))\n    DEFINE_OVERLOAD(long long, @(expectedValue))\n    DEFINE_OVERLOAD(unsigned long long, @(expectedValue))\n    DEFINE_OVERLOAD(char, @(expectedValue))\n    DEFINE_OVERLOAD(unsigned char, @(expectedValue))\n\n#undef DEFINE_OVERLOAD\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_beAnInstanceOf(Class expectedClass);\nNIMBLE_EXPORT_INLINE id<NMBMatcher> beAnInstanceOf(Class expectedClass) {\n    return NMB_beAnInstanceOf(expectedClass);\n}\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_beAKindOf(Class expectedClass);\nNIMBLE_EXPORT_INLINE id<NMBMatcher> beAKindOf(Class expectedClass) {\n    return NMB_beAKindOf(expectedClass);\n}\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_beginWith(id itemElementOrSubstring);\nNIMBLE_EXPORT_INLINE id<NMBMatcher> beginWith(id itemElementOrSubstring) {\n    return NMB_beginWith(itemElementOrSubstring);\n}\n\n#define DEFINE_OVERLOAD(TYPE, EXPR) \\\n        NIMBLE_EXPORT_INLINE NIMBLE_OVERLOADABLE \\\n        id<NMBMatcher> NMB_beGreaterThan(TYPE expectedValue) { \\\n            return NMB_beGreaterThan((EXPR)); \\\n        } \\\n        NIMBLE_SHORT_OVERLOADED(id<NMBMatcher> beGreaterThan(TYPE expectedValue), NMB_beGreaterThan(expectedValue));\n\n    NIMBLE_EXPORT NIMBLE_OVERLOADABLE\n    id<NMBMatcher> NMB_beGreaterThan(NSNumber *expectedValue);\n\n    NIMBLE_EXPORT_INLINE NIMBLE_OVERLOADABLE\n    id<NMBMatcher> beGreaterThan(NSNumber *expectedValue) {\n        return NMB_beGreaterThan(expectedValue);\n    }\n\n    DEFINE_OVERLOAD(long, @(expectedValue))\n    DEFINE_OVERLOAD(unsigned long, @(expectedValue))\n    DEFINE_OVERLOAD(int, @(expectedValue))\n    DEFINE_OVERLOAD(unsigned int, @(expectedValue))\n    DEFINE_OVERLOAD(long long, @(expectedValue))\n    DEFINE_OVERLOAD(unsigned long long, @(expectedValue))\n    DEFINE_OVERLOAD(char, @(expectedValue))\n    DEFINE_OVERLOAD(unsigned char, @(expectedValue))\n\n#undef DEFINE_OVERLOAD\n\n#define DEFINE_OVERLOAD(TYPE, EXPR) \\\n        NIMBLE_EXPORT_INLINE NIMBLE_OVERLOADABLE \\\n        id<NMBMatcher> NMB_beGreaterThanOrEqualTo(TYPE expectedValue) { \\\n            return NMB_beGreaterThanOrEqualTo((EXPR)); \\\n        } \\\n        NIMBLE_SHORT_OVERLOADED(id<NMBMatcher> beGreaterThanOrEqualTo(TYPE expectedValue), \\\n            NMB_beGreaterThanOrEqualTo(expectedValue));\n\n    NIMBLE_EXPORT NIMBLE_OVERLOADABLE\n    id<NMBMatcher> NMB_beGreaterThanOrEqualTo(NSNumber *expectedValue);\n\n    NIMBLE_EXPORT_INLINE NIMBLE_OVERLOADABLE\n    id<NMBMatcher> beGreaterThanOrEqualTo(NSNumber *expectedValue) {\n        return NMB_beGreaterThanOrEqualTo(expectedValue);\n    }\n\n    DEFINE_OVERLOAD(long, @(expectedValue))\n    DEFINE_OVERLOAD(unsigned long, @(expectedValue))\n    DEFINE_OVERLOAD(int, @(expectedValue))\n    DEFINE_OVERLOAD(unsigned int, @(expectedValue))\n    DEFINE_OVERLOAD(float, @(expectedValue))\n    DEFINE_OVERLOAD(double, @(expectedValue))\n    DEFINE_OVERLOAD(long long, @(expectedValue))\n    DEFINE_OVERLOAD(unsigned long long, @(expectedValue))\n    DEFINE_OVERLOAD(char, @(expectedValue))\n    DEFINE_OVERLOAD(unsigned char, @(expectedValue))\n\n\n#undef DEFINE_OVERLOAD\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_beIdenticalTo(id expectedInstance);\nNIMBLE_SHORT(id<NMBMatcher> beIdenticalTo(id expectedInstance),\n             NMB_beIdenticalTo(expectedInstance));\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_be(id expectedInstance);\nNIMBLE_SHORT(id<NMBMatcher> be(id expectedInstance),\n             NMB_be(expectedInstance));\n\n\n#define DEFINE_OVERLOAD(TYPE, EXPR) \\\n        NIMBLE_EXPORT_INLINE NIMBLE_OVERLOADABLE \\\n        id<NMBMatcher> NMB_beLessThan(TYPE expectedValue) { \\\n            return NMB_beLessThan((EXPR)); \\\n        } \\\n        NIMBLE_SHORT_OVERLOADED(id<NMBMatcher> beLessThan(TYPE expectedValue), \\\n            NMB_beLessThan(expectedValue));\n\n    NIMBLE_EXPORT NIMBLE_OVERLOADABLE\n    id<NMBMatcher> NMB_beLessThan(NSNumber *expectedValue);\n\n    NIMBLE_EXPORT_INLINE NIMBLE_OVERLOADABLE\n    id<NMBMatcher> beLessThan(NSNumber *expectedValue) {\n        return NMB_beLessThan(expectedValue);\n    }\n\n    DEFINE_OVERLOAD(long, @(expectedValue))\n    DEFINE_OVERLOAD(unsigned long, @(expectedValue))\n    DEFINE_OVERLOAD(int, @(expectedValue))\n    DEFINE_OVERLOAD(unsigned int, @(expectedValue))\n    DEFINE_OVERLOAD(float, @(expectedValue))\n    DEFINE_OVERLOAD(double, @(expectedValue))\n    DEFINE_OVERLOAD(long long, @(expectedValue))\n    DEFINE_OVERLOAD(unsigned long long, @(expectedValue))\n    DEFINE_OVERLOAD(char, @(expectedValue))\n    DEFINE_OVERLOAD(unsigned char, @(expectedValue))\n\n#undef DEFINE_OVERLOAD\n\n\n#define DEFINE_OVERLOAD(TYPE, EXPR) \\\n    NIMBLE_EXPORT_INLINE NIMBLE_OVERLOADABLE \\\n    id<NMBMatcher> NMB_beLessThanOrEqualTo(TYPE expectedValue) { \\\n        return NMB_beLessThanOrEqualTo((EXPR)); \\\n    } \\\n    NIMBLE_SHORT_OVERLOADED(id<NMBMatcher> beLessThanOrEqualTo(TYPE expectedValue), \\\n        NMB_beLessThanOrEqualTo(expectedValue));\n\n\n    NIMBLE_EXPORT NIMBLE_OVERLOADABLE\n    id<NMBMatcher> NMB_beLessThanOrEqualTo(NSNumber *expectedValue);\n\n    NIMBLE_EXPORT_INLINE NIMBLE_OVERLOADABLE\n    id<NMBMatcher> beLessThanOrEqualTo(NSNumber *expectedValue) {\n        return NMB_beLessThanOrEqualTo(expectedValue);\n    }\n\n    DEFINE_OVERLOAD(long, @(expectedValue))\n    DEFINE_OVERLOAD(unsigned long, @(expectedValue))\n    DEFINE_OVERLOAD(int, @(expectedValue))\n    DEFINE_OVERLOAD(unsigned int, @(expectedValue))\n    DEFINE_OVERLOAD(float, @(expectedValue))\n    DEFINE_OVERLOAD(double, @(expectedValue))\n    DEFINE_OVERLOAD(long long, @(expectedValue))\n    DEFINE_OVERLOAD(unsigned long long, @(expectedValue))\n    DEFINE_OVERLOAD(char, @(expectedValue))\n    DEFINE_OVERLOAD(unsigned char, @(expectedValue))\n\n#undef DEFINE_OVERLOAD\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_beTruthy(void);\nNIMBLE_SHORT(id<NMBMatcher> beTruthy(void),\n             NMB_beTruthy());\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_beFalsy(void);\nNIMBLE_SHORT(id<NMBMatcher> beFalsy(void),\n             NMB_beFalsy());\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_beTrue(void);\nNIMBLE_SHORT(id<NMBMatcher> beTrue(void),\n             NMB_beTrue());\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_beFalse(void);\nNIMBLE_SHORT(id<NMBMatcher> beFalse(void),\n             NMB_beFalse());\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_beNil(void);\nNIMBLE_SHORT(id<NMBMatcher> beNil(void),\n             NMB_beNil());\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_beEmpty(void);\nNIMBLE_SHORT(id<NMBMatcher> beEmpty(void),\n             NMB_beEmpty());\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_containWithNilTermination(id itemOrSubstring, ...) NS_REQUIRES_NIL_TERMINATION;\n#define NMB_contain(...) NMB_containWithNilTermination(__VA_ARGS__, nil)\n#ifndef NIMBLE_DISABLE_SHORT_SYNTAX\n#define contain(...) NMB_contain(__VA_ARGS__)\n#endif\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_endWith(id itemElementOrSubstring);\nNIMBLE_SHORT(id<NMBMatcher> endWith(id itemElementOrSubstring),\n             NMB_endWith(itemElementOrSubstring));\n\nNIMBLE_EXPORT NMBObjCRaiseExceptionMatcher *NMB_raiseException(void);\nNIMBLE_SHORT(NMBObjCRaiseExceptionMatcher *raiseException(void),\n             NMB_raiseException());\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_match(id expectedValue);\nNIMBLE_SHORT(id<NMBMatcher> match(id expectedValue),\n             NMB_match(expectedValue));\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_allPass(id matcher);\nNIMBLE_SHORT(id<NMBMatcher> allPass(id matcher),\n             NMB_allPass(matcher));\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_satisfyAnyOfWithMatchers(id matchers);\n#define NMB_satisfyAnyOf(...) NMB_satisfyAnyOfWithMatchers(@[__VA_ARGS__])\n#ifndef NIMBLE_DISABLE_SHORT_SYNTAX\n#define satisfyAnyOf(...) NMB_satisfyAnyOf(__VA_ARGS__)\n#endif\n\n// In order to preserve breakpoint behavior despite using macros to fill in __FILE__ and __LINE__,\n// define a builder that populates __FILE__ and __LINE__, and returns a block that takes timeout\n// and action arguments. See https://github.com/Quick/Quick/pull/185 for details.\ntypedef void (^NMBWaitUntilTimeoutBlock)(NSTimeInterval timeout, void (^action)(void (^)(void)));\ntypedef void (^NMBWaitUntilBlock)(void (^action)(void (^)(void)));\n\nNIMBLE_EXPORT void NMB_failWithMessage(NSString *msg, NSString *file, NSUInteger line);\n\nNIMBLE_EXPORT NMBWaitUntilTimeoutBlock NMB_waitUntilTimeoutBuilder(NSString *file, NSUInteger line);\nNIMBLE_EXPORT NMBWaitUntilBlock NMB_waitUntilBuilder(NSString *file, NSUInteger line);\n\nNIMBLE_EXPORT void NMB_failWithMessage(NSString *msg, NSString *file, NSUInteger line);\n\n#define NMB_waitUntilTimeout NMB_waitUntilTimeoutBuilder(@(__FILE__), __LINE__)\n#define NMB_waitUntil NMB_waitUntilBuilder(@(__FILE__), __LINE__)\n\n#ifndef NIMBLE_DISABLE_SHORT_SYNTAX\n#define expect(...) NMB_expect(^{ return (__VA_ARGS__); }, @(__FILE__), __LINE__)\n#define expectAction(BLOCK) NMB_expectAction((BLOCK), @(__FILE__), __LINE__)\n#define failWithMessage(msg) NMB_failWithMessage(msg, @(__FILE__), __LINE__)\n#define fail() failWithMessage(@\"fail() always fails\")\n\n\n#define waitUntilTimeout NMB_waitUntilTimeout\n#define waitUntil NMB_waitUntil\n\n#undef NIMBLE_VALUE_OF\n\n#endif\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/NimbleObjectiveC/DSL.m",
    "content": "#import <Nimble/DSL.h>\n#import <Nimble/Nimble-Swift.h>\n\nSWIFT_CLASS(\"_TtC6Nimble7NMBWait\")\n@interface NMBWait : NSObject\n\n+ (void)untilTimeout:(NSTimeInterval)timeout file:(NSString *)file line:(NSUInteger)line action:(void(^)())action;\n+ (void)untilFile:(NSString *)file line:(NSUInteger)line action:(void(^)())action;\n\n@end\n\n\nNS_ASSUME_NONNULL_BEGIN\n\n\nNIMBLE_EXPORT NIMBLE_OVERLOADABLE NMBExpectation *__nonnull NMB_expect(id __nullable(^actualBlock)(), NSString *__nonnull file, NSUInteger line) {\n    return [[NMBExpectation alloc] initWithActualBlock:actualBlock\n                                              negative:NO\n                                                  file:file\n                                                  line:line];\n}\n\nNIMBLE_EXPORT NMBExpectation *NMB_expectAction(void(^actualBlock)(), NSString *file, NSUInteger line) {\n    return NMB_expect(^id{\n        actualBlock();\n        return nil;\n    }, file, line);\n}\n\nNIMBLE_EXPORT void NMB_failWithMessage(NSString *msg, NSString *file, NSUInteger line) {\n    return [NMBExpectation failWithMessage:msg file:file line:line];\n}\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_beAnInstanceOf(Class expectedClass) {\n    return [NMBObjCMatcher beAnInstanceOfMatcher:expectedClass];\n}\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_beAKindOf(Class expectedClass) {\n    return [NMBObjCMatcher beAKindOfMatcher:expectedClass];\n}\n\nNIMBLE_EXPORT NIMBLE_OVERLOADABLE NMBObjCBeCloseToMatcher *NMB_beCloseTo(NSNumber *expectedValue) {\n    return [NMBObjCMatcher beCloseToMatcher:expectedValue within:0.001];\n}\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_beginWith(id itemElementOrSubstring) {\n    return [NMBObjCMatcher beginWithMatcher:itemElementOrSubstring];\n}\n\nNIMBLE_EXPORT NIMBLE_OVERLOADABLE id<NMBMatcher> NMB_beGreaterThan(NSNumber *expectedValue) {\n    return [NMBObjCMatcher beGreaterThanMatcher:expectedValue];\n}\n\nNIMBLE_EXPORT NIMBLE_OVERLOADABLE id<NMBMatcher> NMB_beGreaterThanOrEqualTo(NSNumber *expectedValue) {\n    return [NMBObjCMatcher beGreaterThanOrEqualToMatcher:expectedValue];\n}\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_beIdenticalTo(id expectedInstance) {\n    return [NMBObjCMatcher beIdenticalToMatcher:expectedInstance];\n}\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_be(id expectedInstance) {\n    return [NMBObjCMatcher beIdenticalToMatcher:expectedInstance];\n}\n\nNIMBLE_EXPORT NIMBLE_OVERLOADABLE id<NMBMatcher> NMB_beLessThan(NSNumber *expectedValue) {\n    return [NMBObjCMatcher beLessThanMatcher:expectedValue];\n}\n\nNIMBLE_EXPORT NIMBLE_OVERLOADABLE id<NMBMatcher> NMB_beLessThanOrEqualTo(NSNumber *expectedValue) {\n    return [NMBObjCMatcher beLessThanOrEqualToMatcher:expectedValue];\n}\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_beTruthy() {\n    return [NMBObjCMatcher beTruthyMatcher];\n}\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_beFalsy() {\n    return [NMBObjCMatcher beFalsyMatcher];\n}\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_beTrue() {\n    return [NMBObjCMatcher beTrueMatcher];\n}\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_beFalse() {\n    return [NMBObjCMatcher beFalseMatcher];\n}\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_beNil() {\n    return [NMBObjCMatcher beNilMatcher];\n}\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_beEmpty() {\n    return [NMBObjCMatcher beEmptyMatcher];\n}\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_containWithNilTermination(id itemOrSubstring, ...) {\n    NSMutableArray *itemOrSubstringArray = [NSMutableArray array];\n\n    if (itemOrSubstring) {\n        [itemOrSubstringArray addObject:itemOrSubstring];\n\n        va_list args;\n        va_start(args, itemOrSubstring);\n        id next;\n        while ((next = va_arg(args, id))) {\n            [itemOrSubstringArray addObject:next];\n        }\n        va_end(args);\n    }\n\n    return [NMBObjCMatcher containMatcher:itemOrSubstringArray];\n}\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_endWith(id itemElementOrSubstring) {\n    return [NMBObjCMatcher endWithMatcher:itemElementOrSubstring];\n}\n\nNIMBLE_EXPORT NIMBLE_OVERLOADABLE id<NMBMatcher> NMB_equal(__nullable id expectedValue) {\n    return [NMBObjCMatcher equalMatcher:expectedValue];\n}\n\nNIMBLE_EXPORT NIMBLE_OVERLOADABLE id<NMBMatcher> NMB_haveCount(id expectedValue) {\n    return [NMBObjCMatcher haveCountMatcher:expectedValue];\n}\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_match(id expectedValue) {\n    return [NMBObjCMatcher matchMatcher:expectedValue];\n}\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_allPass(id expectedValue) {\n    return [NMBObjCMatcher allPassMatcher:expectedValue];\n}\n\nNIMBLE_EXPORT id<NMBMatcher> NMB_satisfyAnyOfWithMatchers(id matchers) {\n    return [NMBObjCMatcher satisfyAnyOfMatcher:matchers];\n}\n\nNIMBLE_EXPORT NMBObjCRaiseExceptionMatcher *NMB_raiseException() {\n    return [NMBObjCMatcher raiseExceptionMatcher];\n}\n\nNIMBLE_EXPORT NMBWaitUntilTimeoutBlock NMB_waitUntilTimeoutBuilder(NSString *file, NSUInteger line) {\n    return ^(NSTimeInterval timeout, void (^action)(void (^)(void))) {\n        [NMBWait untilTimeout:timeout file:file line:line action:action];\n    };\n}\n\nNIMBLE_EXPORT NMBWaitUntilBlock NMB_waitUntilBuilder(NSString *file, NSUInteger line) {\n  return ^(void (^action)(void (^)(void))) {\n    [NMBWait untilFile:file line:line action:action];\n  };\n}\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBExceptionCapture.h",
    "content": "#import <Foundation/Foundation.h>\n#import <dispatch/dispatch.h>\n\n@interface NMBExceptionCapture : NSObject\n\n- (nonnull instancetype)initWithHandler:(void(^ _Nullable)(NSException * _Nonnull))handler finally:(void(^ _Nullable)())finally;\n- (void)tryBlock:(void(^ _Nonnull)())unsafeBlock NS_SWIFT_NAME(tryBlock(_:));\n\n@end\n\ntypedef void(^NMBSourceCallbackBlock)(BOOL successful);\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBExceptionCapture.m",
    "content": "#import \"NMBExceptionCapture.h\"\n\n@interface NMBExceptionCapture ()\n@property (nonatomic, copy) void(^ _Nullable handler)(NSException * _Nullable);\n@property (nonatomic, copy) void(^ _Nullable finally)();\n@end\n\n@implementation NMBExceptionCapture\n\n- (nonnull instancetype)initWithHandler:(void(^ _Nullable)(NSException * _Nonnull))handler finally:(void(^ _Nullable)())finally {\n    self = [super init];\n    if (self) {\n        self.handler = handler;\n        self.finally = finally;\n    }\n    return self;\n}\n\n- (void)tryBlock:(void(^ _Nonnull)())unsafeBlock {\n    @try {\n        unsafeBlock();\n    }\n    @catch (NSException *exception) {\n        if (self.handler) {\n            self.handler(exception);\n        }\n    }\n    @finally {\n        if (self.finally) {\n            self.finally();\n        }\n    }\n}\n\n@end\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBStringify.h",
    "content": "@class NSString;\n\n/**\n * Returns a string appropriate for displaying in test output\n * from the provided value.\n *\n * @param value A value that will show up in a test's output.\n *\n * @return The string that is returned can be\n *     customized per type by conforming a type to the `TestOutputStringConvertible`\n *     protocol. When stringifying a non-`TestOutputStringConvertible` type, this\n *     function will return the value's debug description and then its\n *     normal description if available and in that order. Otherwise it\n *     will return the result of constructing a string from the value.\n *\n * @see `TestOutputStringConvertible`\n */\nextern NSString *_Nonnull NMBStringify(id _Nullable anyObject) __attribute__((warn_unused_result));\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBStringify.m",
    "content": "#import \"NMBStringify.h\"\n#import <Nimble/Nimble-Swift.h>\n\nNSString *_Nonnull NMBStringify(id _Nullable anyObject) {\n    return [NMBStringer stringify:anyObject];\n}\n"
  },
  {
    "path": "Example/Pods/Nimble/Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m",
    "content": "#import \"CurrentTestCaseTracker.h\"\n#import <XCTest/XCTest.h>\n#import <objc/runtime.h>\n\n#pragma mark - Method Swizzling\n\n/// Swaps the implementations between two instance methods.\n///\n/// @param class               The class containing `originalSelector`.\n/// @param originalSelector    Original method to replace.\n/// @param replacementSelector Replacement method.\nvoid swizzleSelectors(Class class, SEL originalSelector, SEL replacementSelector) {\n    Method originalMethod = class_getInstanceMethod(class, originalSelector);\n    Method replacementMethod = class_getInstanceMethod(class, replacementSelector);\n\n    BOOL didAddMethod =\n    class_addMethod(class,\n                    originalSelector,\n                    method_getImplementation(replacementMethod),\n                    method_getTypeEncoding(replacementMethod));\n\n    if (didAddMethod) {\n        class_replaceMethod(class,\n                            replacementSelector,\n                            method_getImplementation(originalMethod),\n                            method_getTypeEncoding(originalMethod));\n    } else {\n        method_exchangeImplementations(originalMethod, replacementMethod);\n    }\n}\n\n#pragma mark - Private\n\n@interface XCTestObservationCenter (Private)\n- (void)_addLegacyTestObserver:(id)observer;\n@end\n\n@implementation XCTestObservationCenter (Register)\n\n/// Uses objc method swizzling to register `CurrentTestCaseTracker` as a test observer. This is necessary\n/// because Xcode 7.3 introduced timing issues where if a custom `XCTestObservation` is registered too early\n/// it suppresses all console output (generated by `XCTestLog`), breaking any tools that depend on this output.\n/// This approach waits to register our custom test observer until XCTest adds its first \"legacy\" observer,\n/// falling back to registering after the first normal observer if this private method ever changes.\n+ (void)load {\n    if (class_getInstanceMethod([self class], @selector(_addLegacyTestObserver:))) {\n        // Swizzle -_addLegacyTestObserver:\n        swizzleSelectors([self class], @selector(_addLegacyTestObserver:), @selector(NMB_original__addLegacyTestObserver:));\n    } else {\n        // Swizzle -addTestObserver:, only if -_addLegacyTestObserver: is not implemented\n        swizzleSelectors([self class], @selector(addTestObserver:), @selector(NMB_original_addTestObserver:));\n    }\n}\n\n#pragma mark - Replacement Methods\n\n/// Registers `CurrentTestCaseTracker` as a test observer after `XCTestLog` has been added.\n- (void)NMB_original__addLegacyTestObserver:(id)observer {\n    [self NMB_original__addLegacyTestObserver:observer];\n\n    static dispatch_once_t onceToken;\n    dispatch_once(&onceToken, ^{\n        [self addTestObserver:[CurrentTestCaseTracker sharedInstance]];\n    });\n}\n\n/// Registers `CurrentTestCaseTracker` as a test observer after `XCTestLog` has been added.\n/// This method is only used if `-_addLegacyTestObserver:` is not impelemented. (added in Xcode 7.3)\n- (void)NMB_original_addTestObserver:(id<XCTestObservation>)observer {\n    [self NMB_original_addTestObserver:observer];\n\n    static dispatch_once_t onceToken;\n    dispatch_once(&onceToken, ^{\n        [self NMB_original_addTestObserver:[CurrentTestCaseTracker sharedInstance]];\n    });\n}\n\n@end\n"
  },
  {
    "path": "Example/Pods/Pods.xcodeproj/project.pbxproj",
    "content": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 46;\n\tobjects = {\n\n/* Begin PBXBuildFile section */\n\t\t01297E76B8F59B57CA207191681F7B5B /* RelativePointer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A7F4F011E3296C5BDBCDA0E0662448F /* RelativePointer.swift */; };\n\t\t020B66398FFAE7EF8DC82BCFBC847B74 /* World+DSL.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E29A6AE6378CC0FFE2CBF7A691DF366 /* World+DSL.h */; settings = {ATTRIBUTES = (Project, ); }; };\n\t\t0447EAC87AD27FB27515B70F15F4837C /* PersistentStorageSerializable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8E892409CB344988B711253F95DF9A6 /* PersistentStorageSerializable.swift */; };\n\t\t047A68C646E00EB6D7D4D7343B801D09 /* AdapterProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45186F11C51E26728BB50D85C0390181 /* AdapterProtocols.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t052E642802CDFAE58E5015973CC29989 /* Identity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 409470BF79C61A1DC5EE998F14636B1D /* Identity.swift */; };\n\t\t053B74B0FCB3178D1ED0607D0F972A71 /* Reflection-iOS-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 01EC2AA7495F252C13BD7234C74E79F3 /* Reflection-iOS-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t0553835581ED0E2219057AAAF8EDACB7 /* MemoryProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 35699FC5A45F8604D9E53D74B994634E /* MemoryProperties.swift */; };\n\t\t0595F8F053D261E51EE0A53C8B27A343 /* PersistentStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = E12E2760F92F1A2C4D26629773BE116E /* PersistentStorage.swift */; };\n\t\t07722FBCF6B380961B9D2832D5883F45 /* BeGreaterThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEED2885ABD003AA6FD143802588C6B4 /* BeGreaterThan.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t07731CF449EB16282C6A18D2739B0814 /* ExampleGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F7A1D7D610669DBC95F6145CE72F1E6 /* ExampleGroup.swift */; };\n\t\t079AB49FD0F4774D822A66A51327DA53 /* PersistentStorageSerializable-OSX-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B23DC3D7DA990D4E2939C1BC4496A08A /* PersistentStorageSerializable-OSX-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t0AEC20AACF9B10846830274E3B2AA6FD /* BeLogical.swift in Sources */ = {isa = PBXBuildFile; fileRef = A2FA10E38A6C6E200ABA275E72DD4023 /* BeLogical.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t0B95B4873A60B312637F64D29989704F /* Array+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9578A4E1FCE35AB00735C22CFC7162C2 /* Array+Extensions.swift */; };\n\t\t0ECEEBC712D404AA6CF1E76A9284BFF9 /* DSL.h in Headers */ = {isa = PBXBuildFile; fileRef = 38E7ED6F46ED044FD279837053FB0991 /* DSL.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t0F98B9251F2C3EE6F7E51AEC683860F7 /* ValueWitnessTable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 297F08DEBA780355103E1943E91C9863 /* ValueWitnessTable.swift */; };\n\t\t10FB7310EAD5D4DA82EC2E3A01673CE1 /* PersistentStorageSerializable-iOS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BA1549C5D1B25AFA3C649C78FA1F854 /* PersistentStorageSerializable-iOS-dummy.m */; };\n\t\t110A640A9BE45841BA938B4C29EF5446 /* ThrowAssertion.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2426CDF7725EBE8B022AB5940A504C8 /* ThrowAssertion.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t1126C787C127CB914614414DC0AB6B47 /* Metadata+Kind.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8B180A74BF7DA9BBC0C73181205FB92 /* Metadata+Kind.swift */; };\n\t\t1132968D8FD56FC339BE397D93F30182 /* NominalType.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC711F896F1F753CD40D0336E1891051 /* NominalType.swift */; };\n\t\t127CD37052B8E0BC645D83D4664F59D4 /* NMBStringify.m in Sources */ = {isa = PBXBuildFile; fileRef = 83845FD26AACEFCEC9B6152D1153AE71 /* NMBStringify.m */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t17261E344C2027602431A636759AC7F2 /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68E8EB308595205EAFD2911F340CA696 /* DSL.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t18B7E2BF4A724A3632E02E0AA3918844 /* World+DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6ADE93DC4F670B429664153334AC498A /* World+DSL.swift */; };\n\t\t1B17B3C06FE5ADDFB860494D7695A3A2 /* Metadata+Tuple.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D6D4970F760DF36BCCBDE630066C7B2 /* Metadata+Tuple.swift */; };\n\t\t1C50F54510D5C2B2AD84D7B74A6EDEBB /* BeGreaterThanOrEqualTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE13F5C238F2F59965B512E89C0D946B /* BeGreaterThanOrEqualTo.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t1C7CA1FAFBF8B865596C739FEA39CDEE /* DSL.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB462E985BF4F3D549283CCE0813916 /* DSL.m */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t1E156B80065588ACEE97FF552C24920B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A3812E2DC98C94413C4741910FB77160 /* Foundation.framework */; };\n\t\t1FACBA5B035E21841BFC908DF2F8DE60 /* Reflection-iOS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 13BD39469AED51D519EF9058AC78DB5B /* Reflection-iOS-dummy.m */; };\n\t\t1FEFF9515601DF2AD8B7AA51F78D84CD /* ReflectionError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 972E1E97A8BE5406BCB6970C92C39D67 /* ReflectionError.swift */; };\n\t\t22C1DE74D494C10BBE727F239A68447D /* ThrowError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 079BB80084E1A015AB255272CDD214F6 /* ThrowError.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t234BFC45ACAC4A8FB945EA17B6A74B0B /* SourceLocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5E6BFF347E9847E936924A832FBABBB /* SourceLocation.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t23E2E1E02FE79EE1E1688CBBAA777297 /* MatcherProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4AD1312A77F4A770BB0CC46BEC8DBA5 /* MatcherProtocols.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t24EF979DB6A2B88464E07F5C5937EE14 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A3812E2DC98C94413C4741910FB77160 /* Foundation.framework */; };\n\t\t2568862D51DC7E7E605FEA67B3C2B2DF /* NominalType.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC711F896F1F753CD40D0336E1891051 /* NominalType.swift */; };\n\t\t27B262F95D3CF9E3C74541A41929691C /* NMBStringify.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FF2C07CF5BF76578AEAF758FD251ED7 /* NMBStringify.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t27C8D0B5BDCE5D2598D72B26804C5C02 /* QCKDSL.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A92C161CC0365639BDA3BF5C09D75B0 /* QCKDSL.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t2BEA3608F762A2FE5015B1E18DFCD271 /* Metadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22089DBC28F5B811B25675FBD14A464C /* Metadata.swift */; };\n\t\t32D21EE104D5522D22A63814A3014CE2 /* ValueWitnessTable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 297F08DEBA780355103E1943E91C9863 /* ValueWitnessTable.swift */; };\n\t\t3600CF9CB81FDA40631664F18C987565 /* ExampleMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00B18873BB378B52DE8BD4C15DD36011 /* ExampleMetadata.swift */; };\n\t\t36DE34FECFBAA5C66AD16796D49C922C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A3812E2DC98C94413C4741910FB77160 /* Foundation.framework */; };\n\t\t3915DBB4731CB17B255A7FE86E240B6E /* CwlCatchBadInstruction.m in Sources */ = {isa = PBXBuildFile; fileRef = 469E378328AB74CE2F16E82A53E9FAAA /* CwlCatchBadInstruction.m */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t43DCD3F2C3E435EAD0B167ACD20CE1CE /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3AA62C473D27598FC7557C82330D047A /* DSL.swift */; };\n\t\t465F487084A675DF1D8FF41AB942A461 /* Pods-PersistentStorageSerializable_iOSExample-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BC62F6B906201B92A5E117B29415D918 /* Pods-PersistentStorageSerializable_iOSExample-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t469E9C3ED9FD6009F7C9AAF9E537E212 /* Nimble.h in Headers */ = {isa = PBXBuildFile; fileRef = A41ACB6A39BC53C1AD5ECDF57143D17F /* Nimble.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t492FCC6E224A949B9883FA7F4568B0C3 /* HooksPhase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CC161CB4301C486CAB9553D7771F325 /* HooksPhase.swift */; };\n\t\t4C672CABC57F27FD257A00D44A41AA2C /* QuickConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AB1B530FD4746C7F1ED45FB4D5A9874 /* QuickConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t4C9F41FE904E314F55D857A80457CADC /* XCTestSuite+QuickTestSuiteBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = F944D7066C3FBE6346D1BC4CCEFF019B /* XCTestSuite+QuickTestSuiteBuilder.m */; };\n\t\t4EB98E304582EC3C0213C88146DE42F9 /* Reflection-OSX-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 88A0A2C900F1B0DA95C4E099D8EF69DE /* Reflection-OSX-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t4F3F103945CC52D0A3B8A891BB0E21C4 /* RaisesException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 160CAC0E61452631C6449C6AD9B44A76 /* RaisesException.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t502697EEDEB856CB927D86CEFFEFD81F /* MetadataType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FBD8197371FDDD1F56733D5344DA39C /* MetadataType.swift */; };\n\t\t50B80F12A9BAE302F07F6CF94752F462 /* mach_excServer.c in Sources */ = {isa = PBXBuildFile; fileRef = A8B01A7115AF84CE2793835F62484967 /* mach_excServer.c */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t514986E42D0AB20608C3841E710357D2 /* World.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE9A987E830816D13D423881223CAD20 /* World.swift */; };\n\t\t551440A0F92574039C1D2EB39227D6B8 /* AsyncMatcherWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFB88A73C0CB8BEA601FC0FFCAC65E93 /* AsyncMatcherWrapper.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t58BBAA735E0564DC10B759A045722D28 /* Pods-PersistentStorageSerializable_MacExample-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F76B520EB440AD883F9E762A2520AE65 /* Pods-PersistentStorageSerializable_MacExample-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t58FAC51B72C06FEC4A6C73A97477B0A9 /* PersistentStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = E12E2760F92F1A2C4D26629773BE116E /* PersistentStorage.swift */; };\n\t\t599669823A2EED2928C77F301F6B0515 /* BeNil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7198266CDCBE981765D73B51A366A2EC /* BeNil.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t5B15ED51D2DDC01FCECB0A6085564A83 /* Pods-PersistentStorageSerializable_MacExample-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D3B7A9361C95282C7B4CDDB9F84197FF /* Pods-PersistentStorageSerializable_MacExample-dummy.m */; };\n\t\t5B863E4F94C0031EAA2395D95EEB6971 /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 217580B44B73532ED783A1267CCDB3FA /* Storage.swift */; };\n\t\t5DD5045E9FD98BA38FD09BC13331DB22 /* QuickSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = F8B44832CF0A8EC7A1EFA01846604B27 /* QuickSpec.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t5EAF1AE63153220FC957F99817820067 /* SwiftTryCatch.h in Headers */ = {isa = PBXBuildFile; fileRef = AC46343C8BF32068677D41A1DC13B7EA /* SwiftTryCatch.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t5F0656C57F3790BFAECDEE9DD19FF9F8 /* Quick-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E196A082C7CA44AB8438286B821016A9 /* Quick-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t60986639F7C83D8C8120F0C56EACB273 /* RelativePointer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A7F4F011E3296C5BDBCDA0E0662448F /* RelativePointer.swift */; };\n\t\t6151084EDA799E77F35D31B123AA4FC4 /* Properties.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE3AC896DCF9F346EDE03FFD0488C493 /* Properties.swift */; };\n\t\t62744EF299751FB49B5FCD81D8C8FFF7 /* SatisfyAnyOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B9854299BC061D75E995BB3C3634F23 /* SatisfyAnyOf.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t6302DC24446FB6D1D3F28C7A91074E6C /* Advance.swift in Sources */ = {isa = PBXBuildFile; fileRef = 559C95F20B29BE7F707CA733C7738B29 /* Advance.swift */; };\n\t\t65F5217D44A557FC16218DE5DE348C35 /* CwlCatchBadInstruction.h in Headers */ = {isa = PBXBuildFile; fileRef = 40337972E5B074C5A690D3990DF7905F /* CwlCatchBadInstruction.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t696055C40EA92B1E64AA427B5F279F17 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4AF86E0EEBE4ECA5D93983C10918FE02 /* XCTest.framework */; };\n\t\t698B22A2197B6B1C3FBD6152F580A56E /* MetadataType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FBD8197371FDDD1F56733D5344DA39C /* MetadataType.swift */; };\n\t\t6CA40832F248BADDAEAD9799D25E8327 /* Any+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD76B886530DC003364EE0F566036318 /* Any+Extensions.swift */; };\n\t\t6CDBA48C3A8621E4EE1DAFFE240F0D82 /* CwlCatchBadInstruction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 011E5DDBA8311C08981F7D176417FCC8 /* CwlCatchBadInstruction.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t6E397D9FB11A47E48D70287D734B12B2 /* BeLessThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = B37769BCBFDCACCA32CB732FFB0DAA20 /* BeLessThan.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t71591AC90458BECCD88F503B98B7E307 /* Set.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96F31DEAF8546F97D13B6631A0613D6C /* Set.swift */; };\n\t\t737E19F3254F5929263982C29237C0BA /* CwlBadInstructionException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18F76549DC53A24E718801CA74B5AA09 /* CwlBadInstructionException.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t74FD712F3B503891B6BD9E5CD287E481 /* AssertionDispatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E235870D7A5353B927F7EBA6540C98D /* AssertionDispatcher.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t75ADBCD6658BE042CBE2EF88470AD142 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A3812E2DC98C94413C4741910FB77160 /* Foundation.framework */; };\n\t\t76036D32625A56D480D84AA46961EF91 /* Nimble-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BA9BDC9D1D74EFFEE8DC76C6DE0B7C7 /* Nimble-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t78F3DE174B4F8D368EF8EEFD7EE62087 /* BeVoid.swift in Sources */ = {isa = PBXBuildFile; fileRef = C23CDF8784A07DF2572B6822663C7933 /* BeVoid.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t7B7AB22D0F4F8BE806E6E64EBF69C086 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A3812E2DC98C94413C4741910FB77160 /* Foundation.framework */; };\n\t\t7D2A4146047606E0D021403D9D2CA45A /* ExampleHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF8E3FA49E14F3F1714335FBAADF79B6 /* ExampleHooks.swift */; };\n\t\t7D6269A3CFE53C28DAA6B92E8FC017A7 /* FailureMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A3BA563C4ADDE47EE94EB7E7ED106F5 /* FailureMessage.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t7F6750C7B1847733370B18C4CBFE32DF /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F19211B3AEEEC934B1FE393C5561046 /* Errors.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t8015239010C1D642F14C105F8FF8E035 /* Expression.swift in Sources */ = {isa = PBXBuildFile; fileRef = F748A8D90936AA999672DB5B2D47B07A /* Expression.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t810870C32C831856AA9056F4FBEC1512 /* SuiteHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C478096F55DAAFB3A4039B64FEFAE98 /* SuiteHooks.swift */; };\n\t\t8154A9D75CE273A5CA11AD734F8DD0AF /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 217580B44B73532ED783A1267CCDB3FA /* Storage.swift */; };\n\t\t83D71334D516ECEF04E52AF19341CF92 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3D7153B4402DAA3EEF052B341B37773F /* Cocoa.framework */; };\n\t\t84096C1960B46419BEAA85A22B353DB2 /* MemoryProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 35699FC5A45F8604D9E53D74B994634E /* MemoryProperties.swift */; };\n\t\t8431C26BBC7EAB8C47681E2B96AB93B5 /* PersistentStorageSerializable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8E892409CB344988B711253F95DF9A6 /* PersistentStorageSerializable.swift */; };\n\t\t8507F4BF7437EB40A3626EDCC68BFF6D /* Contain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 747AE697137B5D4B95170B071EAE349D /* Contain.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t8654571F855691C23B7B8E61B2141944 /* EndWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5D9FE92E1B00D3504D61F30D99D12B4 /* EndWith.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t86FFB76B2EDCF4AE79CC4C0BD8A0FE9A /* DSL+Wait.swift in Sources */ = {isa = PBXBuildFile; fileRef = 578411CA2D094C30D95F87E06ADD724A /* DSL+Wait.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t87DD62F200DAB5E1D701AB9F94D1D422 /* CwlCatchException.h in Headers */ = {isa = PBXBuildFile; fileRef = 87B3D180D720E49401F81F66966E6417 /* CwlCatchException.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t88D2CD8353F07F320B24053F75B0AA8A /* SwiftTryCatch.m in Sources */ = {isa = PBXBuildFile; fileRef = B17CA6902411F751101E932D315A01A3 /* SwiftTryCatch.m */; };\n\t\t8C30EAD5FFD28B387099B41C74657A67 /* NMBExpectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = F56CFE193CC4072A0438EA2F4E084175 /* NMBExpectation.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t8DFD3ED6E1F4FC0D540E0FE53C8D67D8 /* Construct.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80C39B59F6205A8B8AF381514259A66D /* Construct.swift */; };\n\t\t917949F596E1188261FC59214782C3D9 /* NMBExceptionCapture.h in Headers */ = {isa = PBXBuildFile; fileRef = BF2FBABC3914541778F7605748F68659 /* NMBExceptionCapture.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t947162383483B6391F8CDF38249BFBD2 /* CwlCatchException.m in Sources */ = {isa = PBXBuildFile; fileRef = 441B373D2C5A3C7017EED3662A2E5E7C /* CwlCatchException.m */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t9544A4EEC2A8448743ECA9981F88B60F /* BeCloseTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5BA4C3F41EC945CFBBFEF98BF01FB49 /* BeCloseTo.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t96DAA4B406FA5410F4D3474B8EDB890C /* Metadata+Tuple.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D6D4970F760DF36BCCBDE630066C7B2 /* Metadata+Tuple.swift */; };\n\t\t96E14093C91E8E1DB68029173EB8D45C /* URL+FileName.swift in Sources */ = {isa = PBXBuildFile; fileRef = C878728B2C3CFD5993B6822137CE771B /* URL+FileName.swift */; };\n\t\t970E9F902FFC919D23F51D8861E05EBC /* UserDefaultsStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55ECD6A7CA8C0BE3247C517C2BF3CD48 /* UserDefaultsStorage.swift */; };\n\t\t9AF235C16362BA00BFBF12147907E953 /* BeEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE30AD879574EA8033F752AC8AE0824B /* BeEmpty.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t9BEBD1791C233763A8DC13080BFB99C9 /* Stringers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1751B926019ABF625854A4E26839A0CA /* Stringers.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\t9C547F2004309855E778AE6D60A10291 /* Configuration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 219C092F09954399C1A31DF8A3206EAB /* Configuration.swift */; };\n\t\t9E605272EAFAAD942D11080DBE9CA985 /* QuickConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = CA7ED0ECCD1072B842759099B8A5BB64 /* QuickConfiguration.m */; };\n\t\t9E95D6E15DBE9B0FC92AAF60D42D1464 /* Nimble-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FA2C3F5E0A780BE8ACBF263F1144522 /* Nimble-dummy.m */; };\n\t\t9F08882A4973621F4AF68EB72EDF6239 /* NominalTypeDescriptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD2E21D6BE5962664A0A86D50A5F27FF /* NominalTypeDescriptor.swift */; };\n\t\tA044BA198D7D7B695111CC1D2D72D8CB /* Metadata+Kind.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8B180A74BF7DA9BBC0C73181205FB92 /* Metadata+Kind.swift */; };\n\t\tA21134677479F6C55B6E5481D7AAA043 /* World.h in Headers */ = {isa = PBXBuildFile; fileRef = 67B1F98F024249532383E6CED2529B76 /* World.h */; settings = {ATTRIBUTES = (Project, ); }; };\n\t\tA33F1754198E8E8CCC7087F6176FFDC8 /* BeIdenticalTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = E540642D5AE67802640578D42DD3C385 /* BeIdenticalTo.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\tA448F837592E21D9387322E8DA0DD93F /* BeAnInstanceOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB94377F385F2D67C9712226280BAFFD /* BeAnInstanceOf.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\tA75A6FB66967A82A2FE709B7DA7D430E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E91672B06B55CA166C0DBC1160D16897 /* Foundation.framework */; };\n\t\tA91166D0A5E8F1D5D5377622C381C045 /* Match.swift in Sources */ = {isa = PBXBuildFile; fileRef = 588E4C9B1904E209FFFE7F7CEC43BAC9 /* Match.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\tAB255C27EF10E742C6567775022F49D5 /* BeginWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2EEA7B45558989FF3AC986804E224B5 /* BeginWith.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\tAB2BA417AEEFD18FE0F73F80C97987CC /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82A0734EE3DC7F6358E28BF8AE2FDF3E /* Example.swift */; };\n\t\tAB2E65E61E97DB35009A8531 /* PlistStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB2E65E51E97DB35009A8531 /* PlistStorage.swift */; };\n\t\tAB2E65E71E97DB35009A8531 /* PlistStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB2E65E51E97DB35009A8531 /* PlistStorage.swift */; };\n\t\tAB7641581E9798B5007279BE /* PropertiesIteration.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB7641571E9798B5007279BE /* PropertiesIteration.swift */; };\n\t\tAB7641591E9798B5007279BE /* PropertiesIteration.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB7641571E9798B5007279BE /* PropertiesIteration.swift */; };\n\t\tABD62B3892A67B671316A6D145AF6761 /* UnsafePointer+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F08D19A4E34CF4C3804349437273B90 /* UnsafePointer+Extensions.swift */; };\n\t\tABEACAEF1E9B6E4D004C1C2F /* SupportedSerializableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABEACAEE1E9B6E4D004C1C2F /* SupportedSerializableType.swift */; };\n\t\tABEACAF01E9B6E4D004C1C2F /* SupportedSerializableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABEACAEE1E9B6E4D004C1C2F /* SupportedSerializableType.swift */; };\n\t\tAC0B24EF198E3BEDFCC9F25D7B8EEDAB /* NMBObjCMatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41415B1CBC6148AB3EAE70E253CDF09E /* NMBObjCMatcher.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\tAC29CC89E22273BF0D0DC2C841B7524C /* Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5C9115DBFFBCA4CBC7B5D325CDFA974 /* Async.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\tAC5137B44BDB6C4C38C6450791C1BAF4 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F51A6A4AD26C84606E8A06CEF80604CC /* Filter.swift */; };\n\t\tAD5162BE3EE92A4A3197423D7040F0C5 /* NSString+QCKSelectorName.h in Headers */ = {isa = PBXBuildFile; fileRef = CDF2382E3A3EBF8C4EA56EA63B0450BC /* NSString+QCKSelectorName.h */; settings = {ATTRIBUTES = (Project, ); }; };\n\t\tAD6BACF97D192AE3BC9AA98DBB6B0C8F /* Construct.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80C39B59F6205A8B8AF381514259A66D /* Construct.swift */; };\n\t\tADAFA23A712E649A250F51E1E4A3B9A6 /* Array+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9578A4E1FCE35AB00735C22CFC7162C2 /* Array+Extensions.swift */; };\n\t\tADB23C0587582C77280651FABBBB20E7 /* Properties.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE3AC896DCF9F346EDE03FFD0488C493 /* Properties.swift */; };\n\t\tADFCB73443130CB466C1EEE6422E3EA1 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3D7153B4402DAA3EEF052B341B37773F /* Cocoa.framework */; };\n\t\tAFBB8B76ECE814775A6EC638AB37A43F /* Pods-PersistentStorageSerializable_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CB4072DCEF8D77880842C53D041AB97 /* Pods-PersistentStorageSerializable_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tB093484B1637B3D3AF65DF2232FDBADC /* mach_excServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 927DCA96CF6C59B4A98CBD6C063C6DE5 /* mach_excServer.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tB12039684B5C118037A233D091B8E832 /* Quick-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E28B0C352E6F01D475C896EB2AC2BF88 /* Quick-dummy.m */; };\n\t\tB2231C0FB5071D40FDDCE3461FDB8F98 /* NominalTypeDescriptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD2E21D6BE5962664A0A86D50A5F27FF /* NominalTypeDescriptor.swift */; };\n\t\tB6E3B1A8C83A31066CF8ED1A341AA5AA /* Callsite.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AA4D8CFED2767407ECB264B19B3F94F /* Callsite.swift */; };\n\t\tB7C651D3CB5879217669C82B3897B0E4 /* Metadata+Struct.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08F6FE8EEAA8D621FB74B7B387C39435 /* Metadata+Struct.swift */; };\n\t\tB894AA08164D83B7428202D518B328CC /* QuickSelectedTestSuiteBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6243AD9E6311D7DCEFDEF4BC3A50859 /* QuickSelectedTestSuiteBuilder.swift */; };\n\t\tB9BD565DAB07F8E2288A960A1D3EFAC1 /* MatcherFunc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 688F1664230F9D437028E4FE35E2B787 /* MatcherFunc.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\tBA09DEE84D61AFCD97C518D61A3D3A96 /* ReflectionError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 972E1E97A8BE5406BCB6970C92C39D67 /* ReflectionError.swift */; };\n\t\tBA72C62E612AC2615BFD2215E4E009E5 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3D7153B4402DAA3EEF052B341B37773F /* Cocoa.framework */; };\n\t\tBAEFDCBE1577A385DBE693446B7A43E4 /* QuickTestSuite.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1EABCA2C5F0C8116ADA4972CD177535 /* QuickTestSuite.swift */; };\n\t\tBB10A2D0B1EE5B1BA811354116F83E3F /* CwlDarwinDefinitions.swift in Sources */ = {isa = PBXBuildFile; fileRef = D28E7A2DCC4CCB6CE200E402A592FE62 /* CwlDarwinDefinitions.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\tBF232BD5ED6C85D9397D2F54335AC84F /* Metadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22089DBC28F5B811B25675FBD14A464C /* Metadata.swift */; };\n\t\tBF3AF1D2B46E09E2B3DCC824E6C1F5AF /* Equal.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5F067F59522C866F69B1F02CAD8458D /* Equal.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\tC059821F074270276AE2F165C8A2FA05 /* QuickSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = D78F0624BEB297D6125991F8F27CA381 /* QuickSpec.m */; };\n\t\tC0A7EED80F769F12D2BD3846B7DF137C /* PersistentStorageSerializable-OSX-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BBD89AD9CE542E5D5CA821020724FFBA /* PersistentStorageSerializable-OSX-dummy.m */; };\n\t\tC1DD2D7CE982C0064A8448E4E661098E /* Closures.swift in Sources */ = {isa = PBXBuildFile; fileRef = B80B627A14B4E0A37EC0E7A9982A125D /* Closures.swift */; };\n\t\tC331C441134E33E71ED4C596B95C10EA /* NSString+QCKSelectorName.m in Sources */ = {isa = PBXBuildFile; fileRef = 61BCEA4D2FE54567759B6361862E85A5 /* NSString+QCKSelectorName.m */; };\n\t\tC60420491851A44ADA0989C09A0A00A8 /* PersistentStorageSerializable-iOS-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A026A2D246B6B842F4B7564B2E87C903 /* PersistentStorageSerializable-iOS-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tC75B4E3F0052DF9F138A20EE54C52E87 /* Metadata+Struct.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08F6FE8EEAA8D621FB74B7B387C39435 /* Metadata+Struct.swift */; };\n\t\tC9510EA7D95C129CD044F451413547A6 /* Set.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96F31DEAF8546F97D13B6631A0613D6C /* Set.swift */; };\n\t\tCB7558CCDD935C9E82BBF454022ED1D3 /* Expectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7E2F7C919910E3CBA06A9B9D7323E50 /* Expectation.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\tCD6CC09B21B2BCBAA4F16A8613806246 /* Metadata+Class.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47982F2D4AB9B4C4719DA6F8802FC275 /* Metadata+Class.swift */; };\n\t\tCE3FA6AE0944D4AE737F0E57CFF4A615 /* HaveCount.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1817B32F3FC7E047D8B9194BC1136606 /* HaveCount.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\tCE4CEF6328E255B380E2B2692B351CF8 /* MatchError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 620732F4BDA95B19DBB955D49CA1C5F9 /* MatchError.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\tCEB1E434D27275AD2A65C817A838EF97 /* Reflection-OSX-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C7BF7B887150EFCDEFB19473A8CCFB25 /* Reflection-OSX-dummy.m */; };\n\t\tD1F0D71DC0ED03185D640B1D3EEA3150 /* SwiftTryCatch.m in Sources */ = {isa = PBXBuildFile; fileRef = B17CA6902411F751101E932D315A01A3 /* SwiftTryCatch.m */; };\n\t\tD2CB5974414798DD931B35C52E1444FB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A3812E2DC98C94413C4741910FB77160 /* Foundation.framework */; };\n\t\tD3B626F2AC4E553461FA5875C298D41B /* PointerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA30706E8884E8F1B0E6CD2EA1B84275 /* PointerType.swift */; };\n\t\tD4DD435BD76E710101BBACFBDA5539EE /* Pods-PersistentStorageSerializable_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A18E35F09E61F21D2E34681DE3CAB1BB /* Pods-PersistentStorageSerializable_Tests-dummy.m */; };\n\t\tD88575ED37BC462E8130CDBEFE9EA308 /* XCTestObservationCenter+Register.m in Sources */ = {isa = PBXBuildFile; fileRef = 23FB991E1056AD6AEA2355DD1A9F4C9C /* XCTestObservationCenter+Register.m */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\tD9D0C0BB64E7C80001F92BE20AEDD20C /* NSBundle+CurrentTestBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 475EE8B724BFCA089214492EB90258F4 /* NSBundle+CurrentTestBundle.swift */; };\n\t\tDB5B42776D188C8BA01E7F214CE2B2E5 /* Advance.swift in Sources */ = {isa = PBXBuildFile; fileRef = 559C95F20B29BE7F707CA733C7738B29 /* Advance.swift */; };\n\t\tDC32331BE565888E694E1321BB1D80F5 /* NMBExceptionCapture.m in Sources */ = {isa = PBXBuildFile; fileRef = CC381077BAF0D5E990F3FA9B68C3D1B9 /* NMBExceptionCapture.m */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\tDCEE854E62441E78FED15CC994497F61 /* AllPass.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0552E74FBD3E66212FFE3E8BE396E8F /* AllPass.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\tDD70CBB5FBFE8E2BE8F6D2E2C7754A44 /* PointerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA30706E8884E8F1B0E6CD2EA1B84275 /* PointerType.swift */; };\n\t\tDF767D1E1FFE54AE90119C25E603B1C0 /* Reflection.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6EFD55C435B2B0C8D1D85EC50C34952E /* Reflection.framework */; };\n\t\tE03BAAB6CA5552B89F00F4157D7E4552 /* Reflection.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6EFD55C435B2B0C8D1D85EC50C34952E /* Reflection.framework */; };\n\t\tE0534D41B876E82FD0472460B8D51179 /* UserDefaultsStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55ECD6A7CA8C0BE3247C517C2BF3CD48 /* UserDefaultsStorage.swift */; };\n\t\tE1A93DCEC817DE5770524BF75E840E08 /* Pods-PersistentStorageSerializable_iOSExample-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C94794649537F0066EB7D122F0E30D60 /* Pods-PersistentStorageSerializable_iOSExample-dummy.m */; };\n\t\tE522A8C892DC6E5CAEDC20148D704EF8 /* Quick.h in Headers */ = {isa = PBXBuildFile; fileRef = B8F86A7E42E45B16621FA7D141DDD102 /* Quick.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tE5CCEF0B83F8272D10671C01AAE4FFA0 /* NimbleXCTestHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8EA38D47FEF4AFE18A0F512010D99D16 /* NimbleXCTestHandler.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\tE7B341CCA626B55029DA67A8F4D8E78B /* Get.swift in Sources */ = {isa = PBXBuildFile; fileRef = F15DABBF3A935A0689C332EA250AD0DE /* Get.swift */; };\n\t\tE8B55982DC570A58CFCE688C476FD5F6 /* ErrorUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = AED6C0967624AED98816B8F1161F42BB /* ErrorUtility.swift */; };\n\t\tEBA52C16F42E42A1824D87C284F4A60C /* PostNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7535FB188FA658A1D4BE308C7260DFCB /* PostNotification.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\tEEB1AB6DD725CC3E48EC1A253B8365A0 /* Identity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 409470BF79C61A1DC5EE998F14636B1D /* Identity.swift */; };\n\t\tEFCF71BE7182C23F3517B99A90EF647E /* Any+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD76B886530DC003364EE0F566036318 /* Any+Extensions.swift */; };\n\t\tF20E741BBC41327AED358EB0E719D1CF /* SwiftTryCatch.h in Headers */ = {isa = PBXBuildFile; fileRef = AC46343C8BF32068677D41A1DC13B7EA /* SwiftTryCatch.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tF4A1B7A059AAA6727EB70E58E09332A4 /* CwlCatchException.swift in Sources */ = {isa = PBXBuildFile; fileRef = A073FCA24B91588D8ACB577C9DC91B45 /* CwlCatchException.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\tF5B288321A3A12AB215FCEFAC0208522 /* UnsafePointer+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F08D19A4E34CF4C3804349437273B90 /* UnsafePointer+Extensions.swift */; };\n\t\tF60D221B548716DF35193FC2CF244676 /* BeAKindOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1917257A77F7B817A10400B4DAF65E20 /* BeAKindOf.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\tF68273DF598C7366016B4942A61059B8 /* Get.swift in Sources */ = {isa = PBXBuildFile; fileRef = F15DABBF3A935A0689C332EA250AD0DE /* Get.swift */; };\n\t\tF693D0A9E0D05F815A85DC258E75AF8D /* CurrentTestCaseTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 924D5CF3D65D791C1C28BA3301BD8BB6 /* CurrentTestCaseTracker.h */; settings = {ATTRIBUTES = (Private, ); }; };\n\t\tF9D61EB5EEB799105913685722FF4C9C /* NimbleEnvironment.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB22C6757F9B47F0DFEED8B0996FA956 /* NimbleEnvironment.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\tF9E05A63D447B51E008B89731192FE7F /* AssertionRecorder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CF611AC318BFEB347CA578141B6DBB9 /* AssertionRecorder.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\tFAB4ECE0C5039D99BB7173880670871D /* BeLessThanOrEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3CB2BCB50D1984E0D33F874869511ACB /* BeLessThanOrEqual.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\tFB0EEC25C35082E1C2E0BE2EFFF36EF8 /* Metadata+Class.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47982F2D4AB9B4C4719DA6F8802FC275 /* Metadata+Class.swift */; };\n\t\tFCFFEB587281358CFF05A65ED9E94C12 /* Functional.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC2D23D7A476F61595C9DF0B6A4B1FB1 /* Functional.swift */; settings = {COMPILER_FLAGS = \"-DPRODUCT_NAME=Nimble/Nimble\"; }; };\n\t\tFDD34D9019B0A1A2BD782EDF6F91DFBC /* QCKDSL.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A0483B4BB0243CC28E72E5FBD8DB68B /* QCKDSL.m */; };\n/* End PBXBuildFile section */\n\n/* Begin PBXContainerItemProxy section */\n\t\t0301C33F3EE8422150ECA9CD70476491 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = F0CEC1F3C61AFCB9ADA5919C64B003CE;\n\t\t\tremoteInfo = \"Reflection-iOS\";\n\t\t};\n\t\t27510798F8AD1C92D9FB66C516C94881 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = F0CEC1F3C61AFCB9ADA5919C64B003CE;\n\t\t\tremoteInfo = \"Reflection-iOS\";\n\t\t};\n\t\t362C7D8F64D2069669D0361A894B07DD /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 1321E318D10CFDC9F5B93A7952492CCD;\n\t\t\tremoteInfo = Nimble;\n\t\t};\n\t\t3C951DED5AEBD73277E58FD83A3DEAC1 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = B29FB212BE53D249CF080AF2FC6B42D5;\n\t\t\tremoteInfo = \"PersistentStorageSerializable-OSX\";\n\t\t};\n\t\t4D2A85AFB5315F895ED8E20766C4B614 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 810EE9CC72099DB8CE653C742754EC04;\n\t\t\tremoteInfo = \"PersistentStorageSerializable-iOS\";\n\t\t};\n\t\t830ED203775A09F2188E8B7988E838FD /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = F0CEC1F3C61AFCB9ADA5919C64B003CE;\n\t\t\tremoteInfo = \"Reflection-iOS\";\n\t\t};\n\t\t893F510CFF86D0DAA159249D0A0A391D /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 78DD5EB06C96485107D83E0183C84D70;\n\t\t\tremoteInfo = Quick;\n\t\t};\n\t\tB26D0DAB801E487506A768E6C181571B /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 8302DFE25125E545B660DD41FB4DAD67;\n\t\t\tremoteInfo = \"Reflection-OSX\";\n\t\t};\n\t\tD49CF07FCC46DBEEE26DD631094D3918 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 810EE9CC72099DB8CE653C742754EC04;\n\t\t\tremoteInfo = \"PersistentStorageSerializable-iOS\";\n\t\t};\n\t\tD7611BE4244CB48B792553F5B14E126B /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 8302DFE25125E545B660DD41FB4DAD67;\n\t\t\tremoteInfo = \"Reflection-OSX\";\n\t\t};\n/* End PBXContainerItemProxy section */\n\n/* Begin PBXFileReference section */\n\t\t00B18873BB378B52DE8BD4C15DD36011 /* ExampleMetadata.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleMetadata.swift; path = Sources/Quick/ExampleMetadata.swift; sourceTree = \"<group>\"; };\n\t\t011E5DDBA8311C08981F7D176417FCC8 /* CwlCatchBadInstruction.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlCatchBadInstruction.swift; path = Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlCatchBadInstruction.swift; sourceTree = \"<group>\"; };\n\t\t01EC2AA7495F252C13BD7234C74E79F3 /* Reflection-iOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = \"Reflection-iOS-umbrella.h\"; path = \"../Reflection-iOS/Reflection-iOS-umbrella.h\"; sourceTree = \"<group>\"; };\n\t\t079BB80084E1A015AB255272CDD214F6 /* ThrowError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThrowError.swift; path = Sources/Nimble/Matchers/ThrowError.swift; sourceTree = \"<group>\"; };\n\t\t08F6FE8EEAA8D621FB74B7B387C39435 /* Metadata+Struct.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = \"Metadata+Struct.swift\"; path = \"Sources/Reflection/Metadata+Struct.swift\"; sourceTree = \"<group>\"; };\n\t\t09C1992E68D8FC0C0241FC40D3899B5D /* Nimble.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Nimble.xcconfig; sourceTree = \"<group>\"; };\n\t\t09F16AFC755B1E7DA916EB123B4B433C /* Pods-PersistentStorageSerializable_iOSExample-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = \"Pods-PersistentStorageSerializable_iOSExample-resources.sh\"; sourceTree = \"<group>\"; };\n\t\t0A7F4F011E3296C5BDBCDA0E0662448F /* RelativePointer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RelativePointer.swift; path = Sources/Reflection/RelativePointer.swift; sourceTree = \"<group>\"; };\n\t\t0AA4D8CFED2767407ECB264B19B3F94F /* Callsite.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Callsite.swift; path = Sources/Quick/Callsite.swift; sourceTree = \"<group>\"; };\n\t\t0CF611AC318BFEB347CA578141B6DBB9 /* AssertionRecorder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssertionRecorder.swift; path = Sources/Nimble/Adapters/AssertionRecorder.swift; sourceTree = \"<group>\"; };\n\t\t0FBD8197371FDDD1F56733D5344DA39C /* MetadataType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MetadataType.swift; path = Sources/Reflection/MetadataType.swift; sourceTree = \"<group>\"; };\n\t\t0FF2C07CF5BF76578AEAF758FD251ED7 /* NMBStringify.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NMBStringify.h; path = Sources/NimbleObjectiveC/NMBStringify.h; sourceTree = \"<group>\"; };\n\t\t10BF599C02A2F92878A7D882C9611421 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\t13BD39469AED51D519EF9058AC78DB5B /* Reflection-iOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = \"Reflection-iOS-dummy.m\"; path = \"../Reflection-iOS/Reflection-iOS-dummy.m\"; sourceTree = \"<group>\"; };\n\t\t160CAC0E61452631C6449C6AD9B44A76 /* RaisesException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RaisesException.swift; path = Sources/Nimble/Matchers/RaisesException.swift; sourceTree = \"<group>\"; };\n\t\t1751B926019ABF625854A4E26839A0CA /* Stringers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Stringers.swift; path = Sources/Nimble/Utils/Stringers.swift; sourceTree = \"<group>\"; };\n\t\t1817B32F3FC7E047D8B9194BC1136606 /* HaveCount.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HaveCount.swift; path = Sources/Nimble/Matchers/HaveCount.swift; sourceTree = \"<group>\"; };\n\t\t18785D0D7962AC70BC0DDD2600F7CAA9 /* Reflection-iOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = \"sourcecode.module-map\"; name = \"Reflection-iOS.modulemap\"; path = \"../Reflection-iOS/Reflection-iOS.modulemap\"; sourceTree = \"<group>\"; };\n\t\t18F76549DC53A24E718801CA74B5AA09 /* CwlBadInstructionException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlBadInstructionException.swift; path = Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlBadInstructionException.swift; sourceTree = \"<group>\"; };\n\t\t1917257A77F7B817A10400B4DAF65E20 /* BeAKindOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAKindOf.swift; path = Sources/Nimble/Matchers/BeAKindOf.swift; sourceTree = \"<group>\"; };\n\t\t1AD12082F1076D96DAC1FD9A39D116A7 /* PersistentStorageSerializable-OSX.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = \"PersistentStorageSerializable-OSX.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t1D92A2C0B35822F6671F491C09EC6EDB /* Pods_PersistentStorageSerializable_iOSExample.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_PersistentStorageSerializable_iOSExample.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t1E991206BBAD4F0FA3A741A59A57E783 /* Pods-PersistentStorageSerializable_iOSExample-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = \"Pods-PersistentStorageSerializable_iOSExample-acknowledgements.markdown\"; sourceTree = \"<group>\"; };\n\t\t213549B893FEA076CD035251ADFE9845 /* Pods-PersistentStorageSerializable_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = \"sourcecode.module-map\"; path = \"Pods-PersistentStorageSerializable_Tests.modulemap\"; sourceTree = \"<group>\"; };\n\t\t217580B44B73532ED783A1267CCDB3FA /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Storage.swift; path = Sources/Reflection/Storage.swift; sourceTree = \"<group>\"; };\n\t\t219C092F09954399C1A31DF8A3206EAB /* Configuration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Configuration.swift; path = Sources/Quick/Configuration/Configuration.swift; sourceTree = \"<group>\"; };\n\t\t22089DBC28F5B811B25675FBD14A464C /* Metadata.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Metadata.swift; path = Sources/Reflection/Metadata.swift; sourceTree = \"<group>\"; };\n\t\t236C27708A8A6A5A6183983A059511E4 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = \"../Reflection-iOS/Info.plist\"; sourceTree = \"<group>\"; };\n\t\t23FB991E1056AD6AEA2355DD1A9F4C9C /* XCTestObservationCenter+Register.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = \"XCTestObservationCenter+Register.m\"; path = \"Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m\"; sourceTree = \"<group>\"; };\n\t\t2447827F13EA2ED7E904EA15F647F2EA /* Quick.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Quick.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t272AA0D36A2B77FCF978B083C7D8673C /* Pods-PersistentStorageSerializable_iOSExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = \"Pods-PersistentStorageSerializable_iOSExample.release.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t297F08DEBA780355103E1943E91C9863 /* ValueWitnessTable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ValueWitnessTable.swift; path = Sources/Reflection/ValueWitnessTable.swift; sourceTree = \"<group>\"; };\n\t\t3075226313FF83346C5B4B26AFC5D7C7 /* Pods-PersistentStorageSerializable_iOSExample-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = \"Pods-PersistentStorageSerializable_iOSExample-frameworks.sh\"; sourceTree = \"<group>\"; };\n\t\t330960B91D30A9CFAE24181F3B16FD69 /* Pods-PersistentStorageSerializable_MacExample-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = \"Pods-PersistentStorageSerializable_MacExample-acknowledgements.plist\"; sourceTree = \"<group>\"; };\n\t\t35699FC5A45F8604D9E53D74B994634E /* MemoryProperties.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MemoryProperties.swift; path = Sources/Reflection/MemoryProperties.swift; sourceTree = \"<group>\"; };\n\t\t37FEFD4566840955F87EC36E6CFA43F1 /* Pods-PersistentStorageSerializable_MacExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = \"Pods-PersistentStorageSerializable_MacExample.debug.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t38E7ED6F46ED044FD279837053FB0991 /* DSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DSL.h; path = Sources/NimbleObjectiveC/DSL.h; sourceTree = \"<group>\"; };\n\t\t3A92C161CC0365639BDA3BF5C09D75B0 /* QCKDSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QCKDSL.h; path = Sources/QuickObjectiveC/DSL/QCKDSL.h; sourceTree = \"<group>\"; };\n\t\t3AA62C473D27598FC7557C82330D047A /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Sources/Quick/DSL/DSL.swift; sourceTree = \"<group>\"; };\n\t\t3CB2BCB50D1984E0D33F874869511ACB /* BeLessThanOrEqual.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThanOrEqual.swift; path = Sources/Nimble/Matchers/BeLessThanOrEqual.swift; sourceTree = \"<group>\"; };\n\t\t3D6D4970F760DF36BCCBDE630066C7B2 /* Metadata+Tuple.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = \"Metadata+Tuple.swift\"; path = \"Sources/Reflection/Metadata+Tuple.swift\"; sourceTree = \"<group>\"; };\n\t\t3D7153B4402DAA3EEF052B341B37773F /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk/System/Library/Frameworks/Cocoa.framework; sourceTree = DEVELOPER_DIR; };\n\t\t3DB462E985BF4F3D549283CCE0813916 /* DSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DSL.m; path = Sources/NimbleObjectiveC/DSL.m; sourceTree = \"<group>\"; };\n\t\t3F6AF0730A8A933938DC9F34A8A068E2 /* Pods-PersistentStorageSerializable_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = \"Pods-PersistentStorageSerializable_Tests-frameworks.sh\"; sourceTree = \"<group>\"; };\n\t\t40337972E5B074C5A690D3990DF7905F /* CwlCatchBadInstruction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CwlCatchBadInstruction.h; path = Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlCatchBadInstruction.h; sourceTree = \"<group>\"; };\n\t\t409470BF79C61A1DC5EE998F14636B1D /* Identity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Identity.swift; path = Sources/Reflection/Identity.swift; sourceTree = \"<group>\"; };\n\t\t40D4F0906C3E8D0F7BD6A7B203991625 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\t41415B1CBC6148AB3EAE70E253CDF09E /* NMBObjCMatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NMBObjCMatcher.swift; path = Sources/Nimble/Adapters/NMBObjCMatcher.swift; sourceTree = \"<group>\"; };\n\t\t441B373D2C5A3C7017EED3662A2E5E7C /* CwlCatchException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CwlCatchException.m; path = Sources/Lib/CwlPreconditionTesting/CwlCatchException/CwlCatchException/CwlCatchException.m; sourceTree = \"<group>\"; };\n\t\t449695496334292237F7ABF92C612C79 /* Reflection-OSX.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = \"Reflection-OSX.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t45186F11C51E26728BB50D85C0390181 /* AdapterProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AdapterProtocols.swift; path = Sources/Nimble/Adapters/AdapterProtocols.swift; sourceTree = \"<group>\"; };\n\t\t45326A29AFE6D19B42FE6CAAAC531328 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\t469E378328AB74CE2F16E82A53E9FAAA /* CwlCatchBadInstruction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CwlCatchBadInstruction.m; path = Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlCatchBadInstruction.m; sourceTree = \"<group>\"; };\n\t\t475EE8B724BFCA089214492EB90258F4 /* NSBundle+CurrentTestBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = \"NSBundle+CurrentTestBundle.swift\"; path = \"Sources/Quick/NSBundle+CurrentTestBundle.swift\"; sourceTree = \"<group>\"; };\n\t\t47982F2D4AB9B4C4719DA6F8802FC275 /* Metadata+Class.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = \"Metadata+Class.swift\"; path = \"Sources/Reflection/Metadata+Class.swift\"; sourceTree = \"<group>\"; };\n\t\t48BE6F62489EFA706F38F78647FD9728 /* PersistentStorageSerializable-iOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = \"sourcecode.module-map\"; name = \"PersistentStorageSerializable-iOS.modulemap\"; path = \"../PersistentStorageSerializable-iOS/PersistentStorageSerializable-iOS.modulemap\"; sourceTree = \"<group>\"; };\n\t\t4A3BA563C4ADDE47EE94EB7E7ED106F5 /* FailureMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FailureMessage.swift; path = Sources/Nimble/FailureMessage.swift; sourceTree = \"<group>\"; };\n\t\t4AB1B530FD4746C7F1ED45FB4D5A9874 /* QuickConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickConfiguration.h; path = Sources/QuickObjectiveC/Configuration/QuickConfiguration.h; sourceTree = \"<group>\"; };\n\t\t4AF86E0EEBE4ECA5D93983C10918FE02 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk/System/Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };\n\t\t4B9854299BC061D75E995BB3C3634F23 /* SatisfyAnyOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SatisfyAnyOf.swift; path = Sources/Nimble/Matchers/SatisfyAnyOf.swift; sourceTree = \"<group>\"; };\n\t\t4F08D19A4E34CF4C3804349437273B90 /* UnsafePointer+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = \"UnsafePointer+Extensions.swift\"; path = \"Sources/Reflection/UnsafePointer+Extensions.swift\"; sourceTree = \"<group>\"; };\n\t\t4FA2C3F5E0A780BE8ACBF263F1144522 /* Nimble-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = \"Nimble-dummy.m\"; sourceTree = \"<group>\"; };\n\t\t4FFE5B7B0ECD5BFF9BF32C39E01BF3CF /* Reflection-OSX-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"Reflection-OSX-prefix.pch\"; sourceTree = \"<group>\"; };\n\t\t539A7260F2A2B5AB2DF4494D3EBFD410 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = \"../PersistentStorageSerializable-iOS/Info.plist\"; sourceTree = \"<group>\"; };\n\t\t549FEBEE27325E9E177BE6D99C52B08C /* PersistentStorageSerializable.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = PersistentStorageSerializable.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t559C95F20B29BE7F707CA733C7738B29 /* Advance.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Advance.swift; path = Sources/Reflection/Advance.swift; sourceTree = \"<group>\"; };\n\t\t55ECD6A7CA8C0BE3247C517C2BF3CD48 /* UserDefaultsStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = UserDefaultsStorage.swift; sourceTree = \"<group>\"; };\n\t\t574E9F7002EDCC105A916FA3AEC5E703 /* PersistentStorageSerializable.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = PersistentStorageSerializable.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t578411CA2D094C30D95F87E06ADD724A /* DSL+Wait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = \"DSL+Wait.swift\"; path = \"Sources/Nimble/DSL+Wait.swift\"; sourceTree = \"<group>\"; };\n\t\t588E4C9B1904E209FFFE7F7CEC43BAC9 /* Match.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Match.swift; path = Sources/Nimble/Matchers/Match.swift; sourceTree = \"<group>\"; };\n\t\t5A0483B4BB0243CC28E72E5FBD8DB68B /* QCKDSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QCKDSL.m; path = Sources/QuickObjectiveC/DSL/QCKDSL.m; sourceTree = \"<group>\"; };\n\t\t5CB4072DCEF8D77880842C53D041AB97 /* Pods-PersistentStorageSerializable_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"Pods-PersistentStorageSerializable_Tests-umbrella.h\"; sourceTree = \"<group>\"; };\n\t\t5E235870D7A5353B927F7EBA6540C98D /* AssertionDispatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssertionDispatcher.swift; path = Sources/Nimble/Adapters/AssertionDispatcher.swift; sourceTree = \"<group>\"; };\n\t\t5E29A6AE6378CC0FFE2CBF7A691DF366 /* World+DSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = \"World+DSL.h\"; path = \"Sources/QuickObjectiveC/DSL/World+DSL.h\"; sourceTree = \"<group>\"; };\n\t\t5F7A1D7D610669DBC95F6145CE72F1E6 /* ExampleGroup.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleGroup.swift; path = Sources/Quick/ExampleGroup.swift; sourceTree = \"<group>\"; };\n\t\t61BCEA4D2FE54567759B6361862E85A5 /* NSString+QCKSelectorName.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = \"NSString+QCKSelectorName.m\"; path = \"Sources/QuickObjectiveC/NSString+QCKSelectorName.m\"; sourceTree = \"<group>\"; };\n\t\t620732F4BDA95B19DBB955D49CA1C5F9 /* MatchError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatchError.swift; path = Sources/Nimble/Matchers/MatchError.swift; sourceTree = \"<group>\"; };\n\t\t6390C415FDF7E2074F9679B0EF4E9DA1 /* Pods-PersistentStorageSerializable_iOSExample.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = \"sourcecode.module-map\"; path = \"Pods-PersistentStorageSerializable_iOSExample.modulemap\"; sourceTree = \"<group>\"; };\n\t\t66EA1514CB8DCAB8B490F192914CCE88 /* Reflection-iOS.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"Reflection-iOS.xcconfig\"; path = \"../Reflection-iOS/Reflection-iOS.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t67B1F98F024249532383E6CED2529B76 /* World.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = World.h; path = Sources/QuickObjectiveC/World.h; sourceTree = \"<group>\"; };\n\t\t688F1664230F9D437028E4FE35E2B787 /* MatcherFunc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatcherFunc.swift; path = Sources/Nimble/Matchers/MatcherFunc.swift; sourceTree = \"<group>\"; };\n\t\t68E8EB308595205EAFD2911F340CA696 /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Sources/Nimble/DSL.swift; sourceTree = \"<group>\"; };\n\t\t6ADE93DC4F670B429664153334AC498A /* World+DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = \"World+DSL.swift\"; path = \"Sources/Quick/DSL/World+DSL.swift\"; sourceTree = \"<group>\"; };\n\t\t6BA9BDC9D1D74EFFEE8DC76C6DE0B7C7 /* Nimble-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"Nimble-umbrella.h\"; sourceTree = \"<group>\"; };\n\t\t6DDCF5299547FB5521D650CE6A57F2AF /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\t6EFD55C435B2B0C8D1D85EC50C34952E /* Reflection.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Reflection.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t7198266CDCBE981765D73B51A366A2EC /* BeNil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeNil.swift; path = Sources/Nimble/Matchers/BeNil.swift; sourceTree = \"<group>\"; };\n\t\t747AE697137B5D4B95170B071EAE349D /* Contain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Contain.swift; path = Sources/Nimble/Matchers/Contain.swift; sourceTree = \"<group>\"; };\n\t\t7535FB188FA658A1D4BE308C7260DFCB /* PostNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PostNotification.swift; path = Sources/Nimble/Matchers/PostNotification.swift; sourceTree = \"<group>\"; };\n\t\t75E42118B71F2B29F7881C63C2B011FB /* PersistentStorageSerializable-iOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = \"PersistentStorageSerializable-iOS-prefix.pch\"; path = \"../PersistentStorageSerializable-iOS/PersistentStorageSerializable-iOS-prefix.pch\"; sourceTree = \"<group>\"; };\n\t\t7CC161CB4301C486CAB9553D7771F325 /* HooksPhase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HooksPhase.swift; path = Sources/Quick/Hooks/HooksPhase.swift; sourceTree = \"<group>\"; };\n\t\t7EA1857941993C28916ABAA7338C2124 /* Nimble.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Nimble.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t80C39B59F6205A8B8AF381514259A66D /* Construct.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Construct.swift; path = Sources/Reflection/Construct.swift; sourceTree = \"<group>\"; };\n\t\t82A0734EE3DC7F6358E28BF8AE2FDF3E /* Example.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Example.swift; path = Sources/Quick/Example.swift; sourceTree = \"<group>\"; };\n\t\t82BB205A9D6D44244AAAF4109F30BBAC /* Reflection-OSX.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = \"sourcecode.module-map\"; path = \"Reflection-OSX.modulemap\"; sourceTree = \"<group>\"; };\n\t\t8383C2DB5F3EB2FE3DFB4992A399343B /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\t83845FD26AACEFCEC9B6152D1153AE71 /* NMBStringify.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NMBStringify.m; path = Sources/NimbleObjectiveC/NMBStringify.m; sourceTree = \"<group>\"; };\n\t\t8564F055BF244AF3234A9A5931029A54 /* Reflection-iOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = \"Reflection-iOS-prefix.pch\"; path = \"../Reflection-iOS/Reflection-iOS-prefix.pch\"; sourceTree = \"<group>\"; };\n\t\t85D107FD08A65476FFB42BF6F74A3DB2 /* Quick.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = \"sourcecode.module-map\"; path = Quick.modulemap; sourceTree = \"<group>\"; };\n\t\t87B3D180D720E49401F81F66966E6417 /* CwlCatchException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CwlCatchException.h; path = Sources/Lib/CwlPreconditionTesting/CwlCatchException/CwlCatchException/CwlCatchException.h; sourceTree = \"<group>\"; };\n\t\t88A0A2C900F1B0DA95C4E099D8EF69DE /* Reflection-OSX-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"Reflection-OSX-umbrella.h\"; sourceTree = \"<group>\"; };\n\t\t89CA505A4090716FCFBB675A171D4137 /* Quick.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Quick.xcconfig; sourceTree = \"<group>\"; };\n\t\t8D9D52F249D62845DF022590C42147CD /* Pods-PersistentStorageSerializable_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = \"Pods-PersistentStorageSerializable_Tests-acknowledgements.markdown\"; sourceTree = \"<group>\"; };\n\t\t8EA38D47FEF4AFE18A0F512010D99D16 /* NimbleXCTestHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleXCTestHandler.swift; path = Sources/Nimble/Adapters/NimbleXCTestHandler.swift; sourceTree = \"<group>\"; };\n\t\t8F48EBA91CB748656BB261C2366EF4A5 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\t8F942B77C05759400B0802230EA76478 /* PersistentStorageSerializable-OSX.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = \"sourcecode.module-map\"; path = \"PersistentStorageSerializable-OSX.modulemap\"; sourceTree = \"<group>\"; };\n\t\t924D5CF3D65D791C1C28BA3301BD8BB6 /* CurrentTestCaseTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CurrentTestCaseTracker.h; path = Sources/NimbleObjectiveC/CurrentTestCaseTracker.h; sourceTree = \"<group>\"; };\n\t\t927DCA96CF6C59B4A98CBD6C063C6DE5 /* mach_excServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mach_excServer.h; path = Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/mach_excServer.h; sourceTree = \"<group>\"; };\n\t\t93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };\n\t\t944DE07F663B6872169C028461F2F467 /* Pods-PersistentStorageSerializable_MacExample-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = \"Pods-PersistentStorageSerializable_MacExample-acknowledgements.markdown\"; sourceTree = \"<group>\"; };\n\t\t9578A4E1FCE35AB00735C22CFC7162C2 /* Array+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = \"Array+Extensions.swift\"; path = \"Sources/Reflection/Array+Extensions.swift\"; sourceTree = \"<group>\"; };\n\t\t96F31DEAF8546F97D13B6631A0613D6C /* Set.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Set.swift; path = Sources/Reflection/Set.swift; sourceTree = \"<group>\"; };\n\t\t972E1E97A8BE5406BCB6970C92C39D67 /* ReflectionError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ReflectionError.swift; path = Sources/Reflection/ReflectionError.swift; sourceTree = \"<group>\"; };\n\t\t9BA1549C5D1B25AFA3C649C78FA1F854 /* PersistentStorageSerializable-iOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = \"PersistentStorageSerializable-iOS-dummy.m\"; path = \"../PersistentStorageSerializable-iOS/PersistentStorageSerializable-iOS-dummy.m\"; sourceTree = \"<group>\"; };\n\t\t9C478096F55DAAFB3A4039B64FEFAE98 /* SuiteHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SuiteHooks.swift; path = Sources/Quick/Hooks/SuiteHooks.swift; sourceTree = \"<group>\"; };\n\t\t9D8169968C7213ADA57D2C051D306C17 /* Nimble.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = \"sourcecode.module-map\"; path = Nimble.modulemap; sourceTree = \"<group>\"; };\n\t\t9E14E05F296DA5CB818FF86D62211B6C /* Pods-PersistentStorageSerializable_MacExample.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = \"sourcecode.module-map\"; path = \"Pods-PersistentStorageSerializable_MacExample.modulemap\"; sourceTree = \"<group>\"; };\n\t\t9F19211B3AEEEC934B1FE393C5561046 /* Errors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Errors.swift; path = Sources/Nimble/Utils/Errors.swift; sourceTree = \"<group>\"; };\n\t\tA026A2D246B6B842F4B7564B2E87C903 /* PersistentStorageSerializable-iOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = \"PersistentStorageSerializable-iOS-umbrella.h\"; path = \"../PersistentStorageSerializable-iOS/PersistentStorageSerializable-iOS-umbrella.h\"; sourceTree = \"<group>\"; };\n\t\tA073FCA24B91588D8ACB577C9DC91B45 /* CwlCatchException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlCatchException.swift; path = Sources/Lib/CwlPreconditionTesting/CwlCatchException/CwlCatchException/CwlCatchException.swift; sourceTree = \"<group>\"; };\n\t\tA0786455757A284E0F80A4F1D4140D38 /* Pods_PersistentStorageSerializable_MacExample.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_PersistentStorageSerializable_MacExample.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tA18E35F09E61F21D2E34681DE3CAB1BB /* Pods-PersistentStorageSerializable_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = \"Pods-PersistentStorageSerializable_Tests-dummy.m\"; sourceTree = \"<group>\"; };\n\t\tA1EABCA2C5F0C8116ADA4972CD177535 /* QuickTestSuite.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickTestSuite.swift; path = Sources/Quick/QuickTestSuite.swift; sourceTree = \"<group>\"; };\n\t\tA2FA10E38A6C6E200ABA275E72DD4023 /* BeLogical.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLogical.swift; path = Sources/Nimble/Matchers/BeLogical.swift; sourceTree = \"<group>\"; };\n\t\tA3812E2DC98C94413C4741910FB77160 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };\n\t\tA41ACB6A39BC53C1AD5ECDF57143D17F /* Nimble.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Nimble.h; path = Sources/Nimble/Nimble.h; sourceTree = \"<group>\"; };\n\t\tA4B56A6EED0B50275C67F754263391DA /* Pods-PersistentStorageSerializable_iOSExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = \"Pods-PersistentStorageSerializable_iOSExample.debug.xcconfig\"; sourceTree = \"<group>\"; };\n\t\tA5C9115DBFFBCA4CBC7B5D325CDFA974 /* Async.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Async.swift; path = Sources/Nimble/Utils/Async.swift; sourceTree = \"<group>\"; };\n\t\tA5E6BFF347E9847E936924A832FBABBB /* SourceLocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SourceLocation.swift; path = Sources/Nimble/Utils/SourceLocation.swift; sourceTree = \"<group>\"; };\n\t\tA5F067F59522C866F69B1F02CAD8458D /* Equal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Equal.swift; path = Sources/Nimble/Matchers/Equal.swift; sourceTree = \"<group>\"; };\n\t\tA8B01A7115AF84CE2793835F62484967 /* mach_excServer.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mach_excServer.c; path = Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/mach_excServer.c; sourceTree = \"<group>\"; };\n\t\tAB2E65E51E97DB35009A8531 /* PlistStorage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PlistStorage.swift; sourceTree = \"<group>\"; };\n\t\tAB379B8B8259CE097D226FB13A1FC648 /* PersistentStorageSerializable-iOS.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"PersistentStorageSerializable-iOS.xcconfig\"; path = \"../PersistentStorageSerializable-iOS/PersistentStorageSerializable-iOS.xcconfig\"; sourceTree = \"<group>\"; };\n\t\tAB7641571E9798B5007279BE /* PropertiesIteration.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PropertiesIteration.swift; sourceTree = \"<group>\"; };\n\t\tABEACAEE1E9B6E4D004C1C2F /* SupportedSerializableType.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SupportedSerializableType.swift; sourceTree = \"<group>\"; };\n\t\tAC46343C8BF32068677D41A1DC13B7EA /* SwiftTryCatch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SwiftTryCatch.h; sourceTree = \"<group>\"; };\n\t\tAC711F896F1F753CD40D0336E1891051 /* NominalType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NominalType.swift; path = Sources/Reflection/NominalType.swift; sourceTree = \"<group>\"; };\n\t\tAD76B886530DC003364EE0F566036318 /* Any+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = \"Any+Extensions.swift\"; path = \"Sources/Reflection/Any+Extensions.swift\"; sourceTree = \"<group>\"; };\n\t\tAED6C0967624AED98816B8F1161F42BB /* ErrorUtility.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ErrorUtility.swift; path = Sources/Quick/ErrorUtility.swift; sourceTree = \"<group>\"; };\n\t\tAFB88A73C0CB8BEA601FC0FFCAC65E93 /* AsyncMatcherWrapper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncMatcherWrapper.swift; path = Sources/Nimble/Matchers/AsyncMatcherWrapper.swift; sourceTree = \"<group>\"; };\n\t\tB0552E74FBD3E66212FFE3E8BE396E8F /* AllPass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllPass.swift; path = Sources/Nimble/Matchers/AllPass.swift; sourceTree = \"<group>\"; };\n\t\tB17CA6902411F751101E932D315A01A3 /* SwiftTryCatch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SwiftTryCatch.m; sourceTree = \"<group>\"; };\n\t\tB23DC3D7DA990D4E2939C1BC4496A08A /* PersistentStorageSerializable-OSX-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"PersistentStorageSerializable-OSX-umbrella.h\"; sourceTree = \"<group>\"; };\n\t\tB37769BCBFDCACCA32CB732FFB0DAA20 /* BeLessThan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThan.swift; path = Sources/Nimble/Matchers/BeLessThan.swift; sourceTree = \"<group>\"; };\n\t\tB4F57D336E8CD0C8E07BF34E6FBCF86E /* Pods-PersistentStorageSerializable_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = \"Pods-PersistentStorageSerializable_Tests.debug.xcconfig\"; sourceTree = \"<group>\"; };\n\t\tB80B627A14B4E0A37EC0E7A9982A125D /* Closures.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Closures.swift; path = Sources/Quick/Hooks/Closures.swift; sourceTree = \"<group>\"; };\n\t\tB843A390CA2C46325E617109CE7C00B4 /* Pods-PersistentStorageSerializable_MacExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = \"Pods-PersistentStorageSerializable_MacExample.release.xcconfig\"; sourceTree = \"<group>\"; };\n\t\tB8F86A7E42E45B16621FA7D141DDD102 /* Quick.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Quick.h; path = Sources/QuickObjectiveC/Quick.h; sourceTree = \"<group>\"; };\n\t\tB9C83EAA39CDD9F7107D4D7F499A4D03 /* Quick-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"Quick-prefix.pch\"; sourceTree = \"<group>\"; };\n\t\tBBD89AD9CE542E5D5CA821020724FFBA /* PersistentStorageSerializable-OSX-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = \"PersistentStorageSerializable-OSX-dummy.m\"; sourceTree = \"<group>\"; };\n\t\tBC62F6B906201B92A5E117B29415D918 /* Pods-PersistentStorageSerializable_iOSExample-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"Pods-PersistentStorageSerializable_iOSExample-umbrella.h\"; sourceTree = \"<group>\"; };\n\t\tBE30AD879574EA8033F752AC8AE0824B /* BeEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeEmpty.swift; path = Sources/Nimble/Matchers/BeEmpty.swift; sourceTree = \"<group>\"; };\n\t\tBE3AC896DCF9F346EDE03FFD0488C493 /* Properties.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Properties.swift; path = Sources/Reflection/Properties.swift; sourceTree = \"<group>\"; };\n\t\tBF2FBABC3914541778F7605748F68659 /* NMBExceptionCapture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NMBExceptionCapture.h; path = Sources/NimbleObjectiveC/NMBExceptionCapture.h; sourceTree = \"<group>\"; };\n\t\tC00223D84C0D987C5C44B6E450DCB8F3 /* Pods-PersistentStorageSerializable_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = \"Pods-PersistentStorageSerializable_Tests-resources.sh\"; sourceTree = \"<group>\"; };\n\t\tC23CDF8784A07DF2572B6822663C7933 /* BeVoid.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeVoid.swift; path = Sources/Nimble/Matchers/BeVoid.swift; sourceTree = \"<group>\"; };\n\t\tC4AD1312A77F4A770BB0CC46BEC8DBA5 /* MatcherProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatcherProtocols.swift; path = Sources/Nimble/Matchers/MatcherProtocols.swift; sourceTree = \"<group>\"; };\n\t\tC7BF7B887150EFCDEFB19473A8CCFB25 /* Reflection-OSX-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = \"Reflection-OSX-dummy.m\"; sourceTree = \"<group>\"; };\n\t\tC878728B2C3CFD5993B6822137CE771B /* URL+FileName.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = \"URL+FileName.swift\"; path = \"Sources/Quick/URL+FileName.swift\"; sourceTree = \"<group>\"; };\n\t\tC94794649537F0066EB7D122F0E30D60 /* Pods-PersistentStorageSerializable_iOSExample-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = \"Pods-PersistentStorageSerializable_iOSExample-dummy.m\"; sourceTree = \"<group>\"; };\n\t\tC9633F84E2EEA318823E16E16FA3E7CE /* Pods-PersistentStorageSerializable_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = \"Pods-PersistentStorageSerializable_Tests-acknowledgements.plist\"; sourceTree = \"<group>\"; };\n\t\tCA172C3BBC2F641B659ED5C623805BDC /* Pods_PersistentStorageSerializable_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_PersistentStorageSerializable_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tCA30706E8884E8F1B0E6CD2EA1B84275 /* PointerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PointerType.swift; path = Sources/Reflection/PointerType.swift; sourceTree = \"<group>\"; };\n\t\tCA7ED0ECCD1072B842759099B8A5BB64 /* QuickConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickConfiguration.m; path = Sources/QuickObjectiveC/Configuration/QuickConfiguration.m; sourceTree = \"<group>\"; };\n\t\tCC381077BAF0D5E990F3FA9B68C3D1B9 /* NMBExceptionCapture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NMBExceptionCapture.m; path = Sources/NimbleObjectiveC/NMBExceptionCapture.m; sourceTree = \"<group>\"; };\n\t\tCD13BDB1BAB67FC79EF84323384574CE /* Pods-PersistentStorageSerializable_MacExample-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = \"Pods-PersistentStorageSerializable_MacExample-frameworks.sh\"; sourceTree = \"<group>\"; };\n\t\tCDF2382E3A3EBF8C4EA56EA63B0450BC /* NSString+QCKSelectorName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = \"NSString+QCKSelectorName.h\"; path = \"Sources/QuickObjectiveC/NSString+QCKSelectorName.h\"; sourceTree = \"<group>\"; };\n\t\tCDFE125ABF7991778EB9DCFEBE1980AD /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\tCE13F5C238F2F59965B512E89C0D946B /* BeGreaterThanOrEqualTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThanOrEqualTo.swift; path = Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift; sourceTree = \"<group>\"; };\n\t\tD28E7A2DCC4CCB6CE200E402A592FE62 /* CwlDarwinDefinitions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlDarwinDefinitions.swift; path = Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlDarwinDefinitions.swift; sourceTree = \"<group>\"; };\n\t\tD2EEA7B45558989FF3AC986804E224B5 /* BeginWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeginWith.swift; path = Sources/Nimble/Matchers/BeginWith.swift; sourceTree = \"<group>\"; };\n\t\tD3B7A9361C95282C7B4CDDB9F84197FF /* Pods-PersistentStorageSerializable_MacExample-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = \"Pods-PersistentStorageSerializable_MacExample-dummy.m\"; sourceTree = \"<group>\"; };\n\t\tD3F8840B178F3FF2FC53CE285B77F87E /* Nimble-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"Nimble-prefix.pch\"; sourceTree = \"<group>\"; };\n\t\tD5D9FE92E1B00D3504D61F30D99D12B4 /* EndWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndWith.swift; path = Sources/Nimble/Matchers/EndWith.swift; sourceTree = \"<group>\"; };\n\t\tD78F0624BEB297D6125991F8F27CA381 /* QuickSpec.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickSpec.m; path = Sources/QuickObjectiveC/QuickSpec.m; sourceTree = \"<group>\"; };\n\t\tDD2E21D6BE5962664A0A86D50A5F27FF /* NominalTypeDescriptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NominalTypeDescriptor.swift; path = Sources/Reflection/NominalTypeDescriptor.swift; sourceTree = \"<group>\"; };\n\t\tDDAB3E7FAA610141534F47F426392A3D /* Pods-PersistentStorageSerializable_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = \"Pods-PersistentStorageSerializable_Tests.release.xcconfig\"; sourceTree = \"<group>\"; };\n\t\tDEED2885ABD003AA6FD143802588C6B4 /* BeGreaterThan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThan.swift; path = Sources/Nimble/Matchers/BeGreaterThan.swift; sourceTree = \"<group>\"; };\n\t\tE09F71C71226DABFB704EBB455FD474D /* Pods-PersistentStorageSerializable_MacExample-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = \"Pods-PersistentStorageSerializable_MacExample-resources.sh\"; sourceTree = \"<group>\"; };\n\t\tE12E2760F92F1A2C4D26629773BE116E /* PersistentStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PersistentStorage.swift; sourceTree = \"<group>\"; };\n\t\tE196A082C7CA44AB8438286B821016A9 /* Quick-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"Quick-umbrella.h\"; sourceTree = \"<group>\"; };\n\t\tE28B0C352E6F01D475C896EB2AC2BF88 /* Quick-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = \"Quick-dummy.m\"; sourceTree = \"<group>\"; };\n\t\tE540642D5AE67802640578D42DD3C385 /* BeIdenticalTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeIdenticalTo.swift; path = Sources/Nimble/Matchers/BeIdenticalTo.swift; sourceTree = \"<group>\"; };\n\t\tE5BA4C3F41EC945CFBBFEF98BF01FB49 /* BeCloseTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeCloseTo.swift; path = Sources/Nimble/Matchers/BeCloseTo.swift; sourceTree = \"<group>\"; };\n\t\tE7E2F7C919910E3CBA06A9B9D7323E50 /* Expectation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expectation.swift; path = Sources/Nimble/Expectation.swift; sourceTree = \"<group>\"; };\n\t\tE91672B06B55CA166C0DBC1160D16897 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };\n\t\tEAC1A086219F60C7564C880B9CE22833 /* Reflection.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Reflection.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tEB22C6757F9B47F0DFEED8B0996FA956 /* NimbleEnvironment.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleEnvironment.swift; path = Sources/Nimble/Adapters/NimbleEnvironment.swift; sourceTree = \"<group>\"; };\n\t\tEB94377F385F2D67C9712226280BAFFD /* BeAnInstanceOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAnInstanceOf.swift; path = Sources/Nimble/Matchers/BeAnInstanceOf.swift; sourceTree = \"<group>\"; };\n\t\tEC2D23D7A476F61595C9DF0B6A4B1FB1 /* Functional.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Functional.swift; path = Sources/Nimble/Utils/Functional.swift; sourceTree = \"<group>\"; };\n\t\tEE9A987E830816D13D423881223CAD20 /* World.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = World.swift; path = Sources/Quick/World.swift; sourceTree = \"<group>\"; };\n\t\tEF8E3FA49E14F3F1714335FBAADF79B6 /* ExampleHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleHooks.swift; path = Sources/Quick/Hooks/ExampleHooks.swift; sourceTree = \"<group>\"; };\n\t\tF002B2610679A6F73A8EBDAE1FB8B769 /* Reflection.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Reflection.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tF15DABBF3A935A0689C332EA250AD0DE /* Get.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Get.swift; path = Sources/Reflection/Get.swift; sourceTree = \"<group>\"; };\n\t\tF18E3ACFDE1E8E7880CCE9E1210A80AC /* PersistentStorageSerializable-OSX-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"PersistentStorageSerializable-OSX-prefix.pch\"; sourceTree = \"<group>\"; };\n\t\tF2426CDF7725EBE8B022AB5940A504C8 /* ThrowAssertion.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThrowAssertion.swift; path = Sources/Nimble/Matchers/ThrowAssertion.swift; sourceTree = \"<group>\"; };\n\t\tF51A6A4AD26C84606E8A06CEF80604CC /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = Sources/Quick/Filter.swift; sourceTree = \"<group>\"; };\n\t\tF56CFE193CC4072A0438EA2F4E084175 /* NMBExpectation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NMBExpectation.swift; path = Sources/Nimble/Adapters/NMBExpectation.swift; sourceTree = \"<group>\"; };\n\t\tF6243AD9E6311D7DCEFDEF4BC3A50859 /* QuickSelectedTestSuiteBuilder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickSelectedTestSuiteBuilder.swift; path = Sources/Quick/QuickSelectedTestSuiteBuilder.swift; sourceTree = \"<group>\"; };\n\t\tF748A8D90936AA999672DB5B2D47B07A /* Expression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expression.swift; path = Sources/Nimble/Expression.swift; sourceTree = \"<group>\"; };\n\t\tF76B520EB440AD883F9E762A2520AE65 /* Pods-PersistentStorageSerializable_MacExample-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"Pods-PersistentStorageSerializable_MacExample-umbrella.h\"; sourceTree = \"<group>\"; };\n\t\tF7E8EF54B0B1130FB01D55683CCB70BD /* Pods-PersistentStorageSerializable_iOSExample-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = \"Pods-PersistentStorageSerializable_iOSExample-acknowledgements.plist\"; sourceTree = \"<group>\"; };\n\t\tF8B180A74BF7DA9BBC0C73181205FB92 /* Metadata+Kind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = \"Metadata+Kind.swift\"; path = \"Sources/Reflection/Metadata+Kind.swift\"; sourceTree = \"<group>\"; };\n\t\tF8B44832CF0A8EC7A1EFA01846604B27 /* QuickSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickSpec.h; path = Sources/QuickObjectiveC/QuickSpec.h; sourceTree = \"<group>\"; };\n\t\tF8E892409CB344988B711253F95DF9A6 /* PersistentStorageSerializable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PersistentStorageSerializable.swift; sourceTree = \"<group>\"; };\n\t\tF944D7066C3FBE6346D1BC4CCEFF019B /* XCTestSuite+QuickTestSuiteBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = \"XCTestSuite+QuickTestSuiteBuilder.m\"; path = \"Sources/QuickObjectiveC/XCTestSuite+QuickTestSuiteBuilder.m\"; sourceTree = \"<group>\"; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\t1E587FE14CF0ED99AAD2265A8B9CBEA4 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t75ADBCD6658BE042CBE2EF88470AD142 /* Foundation.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t22F12015985B9E18FDDC014D683C3AE5 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t7B7AB22D0F4F8BE806E6E64EBF69C086 /* Foundation.framework in Frameworks */,\n\t\t\t\t696055C40EA92B1E64AA427B5F279F17 /* XCTest.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t4EB16425BDA91C91D2FADCA18300D987 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t83D71334D516ECEF04E52AF19341CF92 /* Cocoa.framework in Frameworks */,\n\t\t\t\tA75A6FB66967A82A2FE709B7DA7D430E /* Foundation.framework in Frameworks */,\n\t\t\t\tE03BAAB6CA5552B89F00F4157D7E4552 /* Reflection.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t90F7CC3A876AD76ED38ED1EBC225EA40 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tADFCB73443130CB466C1EEE6422E3EA1 /* Cocoa.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t9E1716F5D34F5505736FEB173664D299 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t1E156B80065588ACEE97FF552C24920B /* Foundation.framework in Frameworks */,\n\t\t\t\tDF767D1E1FFE54AE90119C25E603B1C0 /* Reflection.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tBFB5F99A63F936C3C47B70F4A922146A /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t36DE34FECFBAA5C66AD16796D49C922C /* Foundation.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tDBE2CE2F5ED086FC1DD44D4B176AEA5B /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t24EF979DB6A2B88464E07F5C5937EE14 /* Foundation.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tDEECF0B3A5FC43A3CA9BAF0B9547809C /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tD2CB5974414798DD931B35C52E1444FB /* Foundation.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tF782E107EC5038AD4ACDFA75608A6E01 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tBA72C62E612AC2615BFD2215E4E009E5 /* Cocoa.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXFrameworksBuildPhase section */\n\n/* Begin PBXGroup section */\n\t\t01C8399240B3656FB9FD76C9D6831AAC /* PersistentStorageSerializable */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t1C8B4BF0792A90B44A334AFF94FB5CEF /* Classes */,\n\t\t\t);\n\t\t\tpath = PersistentStorageSerializable;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t05726D4C8C55E92510638D41B1182E34 /* Nimble */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t45186F11C51E26728BB50D85C0390181 /* AdapterProtocols.swift */,\n\t\t\t\tB0552E74FBD3E66212FFE3E8BE396E8F /* AllPass.swift */,\n\t\t\t\t5E235870D7A5353B927F7EBA6540C98D /* AssertionDispatcher.swift */,\n\t\t\t\t0CF611AC318BFEB347CA578141B6DBB9 /* AssertionRecorder.swift */,\n\t\t\t\tA5C9115DBFFBCA4CBC7B5D325CDFA974 /* Async.swift */,\n\t\t\t\tAFB88A73C0CB8BEA601FC0FFCAC65E93 /* AsyncMatcherWrapper.swift */,\n\t\t\t\t1917257A77F7B817A10400B4DAF65E20 /* BeAKindOf.swift */,\n\t\t\t\tEB94377F385F2D67C9712226280BAFFD /* BeAnInstanceOf.swift */,\n\t\t\t\tE5BA4C3F41EC945CFBBFEF98BF01FB49 /* BeCloseTo.swift */,\n\t\t\t\tBE30AD879574EA8033F752AC8AE0824B /* BeEmpty.swift */,\n\t\t\t\tD2EEA7B45558989FF3AC986804E224B5 /* BeginWith.swift */,\n\t\t\t\tDEED2885ABD003AA6FD143802588C6B4 /* BeGreaterThan.swift */,\n\t\t\t\tCE13F5C238F2F59965B512E89C0D946B /* BeGreaterThanOrEqualTo.swift */,\n\t\t\t\tE540642D5AE67802640578D42DD3C385 /* BeIdenticalTo.swift */,\n\t\t\t\tB37769BCBFDCACCA32CB732FFB0DAA20 /* BeLessThan.swift */,\n\t\t\t\t3CB2BCB50D1984E0D33F874869511ACB /* BeLessThanOrEqual.swift */,\n\t\t\t\tA2FA10E38A6C6E200ABA275E72DD4023 /* BeLogical.swift */,\n\t\t\t\t7198266CDCBE981765D73B51A366A2EC /* BeNil.swift */,\n\t\t\t\tC23CDF8784A07DF2572B6822663C7933 /* BeVoid.swift */,\n\t\t\t\t747AE697137B5D4B95170B071EAE349D /* Contain.swift */,\n\t\t\t\t924D5CF3D65D791C1C28BA3301BD8BB6 /* CurrentTestCaseTracker.h */,\n\t\t\t\t18F76549DC53A24E718801CA74B5AA09 /* CwlBadInstructionException.swift */,\n\t\t\t\t40337972E5B074C5A690D3990DF7905F /* CwlCatchBadInstruction.h */,\n\t\t\t\t469E378328AB74CE2F16E82A53E9FAAA /* CwlCatchBadInstruction.m */,\n\t\t\t\t011E5DDBA8311C08981F7D176417FCC8 /* CwlCatchBadInstruction.swift */,\n\t\t\t\t87B3D180D720E49401F81F66966E6417 /* CwlCatchException.h */,\n\t\t\t\t441B373D2C5A3C7017EED3662A2E5E7C /* CwlCatchException.m */,\n\t\t\t\tA073FCA24B91588D8ACB577C9DC91B45 /* CwlCatchException.swift */,\n\t\t\t\tD28E7A2DCC4CCB6CE200E402A592FE62 /* CwlDarwinDefinitions.swift */,\n\t\t\t\t38E7ED6F46ED044FD279837053FB0991 /* DSL.h */,\n\t\t\t\t3DB462E985BF4F3D549283CCE0813916 /* DSL.m */,\n\t\t\t\t68E8EB308595205EAFD2911F340CA696 /* DSL.swift */,\n\t\t\t\t578411CA2D094C30D95F87E06ADD724A /* DSL+Wait.swift */,\n\t\t\t\tD5D9FE92E1B00D3504D61F30D99D12B4 /* EndWith.swift */,\n\t\t\t\tA5F067F59522C866F69B1F02CAD8458D /* Equal.swift */,\n\t\t\t\t9F19211B3AEEEC934B1FE393C5561046 /* Errors.swift */,\n\t\t\t\tE7E2F7C919910E3CBA06A9B9D7323E50 /* Expectation.swift */,\n\t\t\t\tF748A8D90936AA999672DB5B2D47B07A /* Expression.swift */,\n\t\t\t\t4A3BA563C4ADDE47EE94EB7E7ED106F5 /* FailureMessage.swift */,\n\t\t\t\tEC2D23D7A476F61595C9DF0B6A4B1FB1 /* Functional.swift */,\n\t\t\t\t1817B32F3FC7E047D8B9194BC1136606 /* HaveCount.swift */,\n\t\t\t\tA8B01A7115AF84CE2793835F62484967 /* mach_excServer.c */,\n\t\t\t\t927DCA96CF6C59B4A98CBD6C063C6DE5 /* mach_excServer.h */,\n\t\t\t\t588E4C9B1904E209FFFE7F7CEC43BAC9 /* Match.swift */,\n\t\t\t\t688F1664230F9D437028E4FE35E2B787 /* MatcherFunc.swift */,\n\t\t\t\tC4AD1312A77F4A770BB0CC46BEC8DBA5 /* MatcherProtocols.swift */,\n\t\t\t\t620732F4BDA95B19DBB955D49CA1C5F9 /* MatchError.swift */,\n\t\t\t\tA41ACB6A39BC53C1AD5ECDF57143D17F /* Nimble.h */,\n\t\t\t\tEB22C6757F9B47F0DFEED8B0996FA956 /* NimbleEnvironment.swift */,\n\t\t\t\t8EA38D47FEF4AFE18A0F512010D99D16 /* NimbleXCTestHandler.swift */,\n\t\t\t\tBF2FBABC3914541778F7605748F68659 /* NMBExceptionCapture.h */,\n\t\t\t\tCC381077BAF0D5E990F3FA9B68C3D1B9 /* NMBExceptionCapture.m */,\n\t\t\t\tF56CFE193CC4072A0438EA2F4E084175 /* NMBExpectation.swift */,\n\t\t\t\t41415B1CBC6148AB3EAE70E253CDF09E /* NMBObjCMatcher.swift */,\n\t\t\t\t0FF2C07CF5BF76578AEAF758FD251ED7 /* NMBStringify.h */,\n\t\t\t\t83845FD26AACEFCEC9B6152D1153AE71 /* NMBStringify.m */,\n\t\t\t\t7535FB188FA658A1D4BE308C7260DFCB /* PostNotification.swift */,\n\t\t\t\t160CAC0E61452631C6449C6AD9B44A76 /* RaisesException.swift */,\n\t\t\t\t4B9854299BC061D75E995BB3C3634F23 /* SatisfyAnyOf.swift */,\n\t\t\t\tA5E6BFF347E9847E936924A832FBABBB /* SourceLocation.swift */,\n\t\t\t\t1751B926019ABF625854A4E26839A0CA /* Stringers.swift */,\n\t\t\t\tF2426CDF7725EBE8B022AB5940A504C8 /* ThrowAssertion.swift */,\n\t\t\t\t079BB80084E1A015AB255272CDD214F6 /* ThrowError.swift */,\n\t\t\t\t23FB991E1056AD6AEA2355DD1A9F4C9C /* XCTestObservationCenter+Register.m */,\n\t\t\t\tC9DC65308111F737200B1E64FCBDA75E /* Support Files */,\n\t\t\t);\n\t\t\tpath = Nimble;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t112B47088E1A093231482A68550F00E8 /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t7EA1857941993C28916ABAA7338C2124 /* Nimble.framework */,\n\t\t\t\t574E9F7002EDCC105A916FA3AEC5E703 /* PersistentStorageSerializable.framework */,\n\t\t\t\t549FEBEE27325E9E177BE6D99C52B08C /* PersistentStorageSerializable.framework */,\n\t\t\t\t1D92A2C0B35822F6671F491C09EC6EDB /* Pods_PersistentStorageSerializable_iOSExample.framework */,\n\t\t\t\tA0786455757A284E0F80A4F1D4140D38 /* Pods_PersistentStorageSerializable_MacExample.framework */,\n\t\t\t\tCA172C3BBC2F641B659ED5C623805BDC /* Pods_PersistentStorageSerializable_Tests.framework */,\n\t\t\t\t2447827F13EA2ED7E904EA15F647F2EA /* Quick.framework */,\n\t\t\t\tEAC1A086219F60C7564C880B9CE22833 /* Reflection.framework */,\n\t\t\t\tF002B2610679A6F73A8EBDAE1FB8B769 /* Reflection.framework */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t1457A5B98FA989360F0D80579C7F2057 /* Frameworks */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t6EFD55C435B2B0C8D1D85EC50C34952E /* Reflection.framework */,\n\t\t\t\tB76AD05414975C4FA2C7ED1838BB5600 /* iOS */,\n\t\t\t\t3951C868986B062B13881BC87545151B /* OS X */,\n\t\t\t);\n\t\t\tname = Frameworks;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t1C8B4BF0792A90B44A334AFF94FB5CEF /* Classes */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tE12E2760F92F1A2C4D26629773BE116E /* PersistentStorage.swift */,\n\t\t\t\tF8E892409CB344988B711253F95DF9A6 /* PersistentStorageSerializable.swift */,\n\t\t\t\tABEACAEE1E9B6E4D004C1C2F /* SupportedSerializableType.swift */,\n\t\t\t\tAB7641571E9798B5007279BE /* PropertiesIteration.swift */,\n\t\t\t\tAC46343C8BF32068677D41A1DC13B7EA /* SwiftTryCatch.h */,\n\t\t\t\tB17CA6902411F751101E932D315A01A3 /* SwiftTryCatch.m */,\n\t\t\t\t55ECD6A7CA8C0BE3247C517C2BF3CD48 /* UserDefaultsStorage.swift */,\n\t\t\t\tAB2E65E51E97DB35009A8531 /* PlistStorage.swift */,\n\t\t\t);\n\t\t\tpath = Classes;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t2AB8D204A1CFF4CBA30176679BBED97E /* Development Pods */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t68A40BDDB283092F875791156923FBB7 /* PersistentStorageSerializable */,\n\t\t\t);\n\t\t\tname = \"Development Pods\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t3951C868986B062B13881BC87545151B /* OS X */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t3D7153B4402DAA3EEF052B341B37773F /* Cocoa.framework */,\n\t\t\t\tE91672B06B55CA166C0DBC1160D16897 /* Foundation.framework */,\n\t\t\t);\n\t\t\tname = \"OS X\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t3C44D2D68BDE305386D95A2CD24F2BF1 /* Quick */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t0AA4D8CFED2767407ECB264B19B3F94F /* Callsite.swift */,\n\t\t\t\tB80B627A14B4E0A37EC0E7A9982A125D /* Closures.swift */,\n\t\t\t\t219C092F09954399C1A31DF8A3206EAB /* Configuration.swift */,\n\t\t\t\t3AA62C473D27598FC7557C82330D047A /* DSL.swift */,\n\t\t\t\tAED6C0967624AED98816B8F1161F42BB /* ErrorUtility.swift */,\n\t\t\t\t82A0734EE3DC7F6358E28BF8AE2FDF3E /* Example.swift */,\n\t\t\t\t5F7A1D7D610669DBC95F6145CE72F1E6 /* ExampleGroup.swift */,\n\t\t\t\tEF8E3FA49E14F3F1714335FBAADF79B6 /* ExampleHooks.swift */,\n\t\t\t\t00B18873BB378B52DE8BD4C15DD36011 /* ExampleMetadata.swift */,\n\t\t\t\tF51A6A4AD26C84606E8A06CEF80604CC /* Filter.swift */,\n\t\t\t\t7CC161CB4301C486CAB9553D7771F325 /* HooksPhase.swift */,\n\t\t\t\t475EE8B724BFCA089214492EB90258F4 /* NSBundle+CurrentTestBundle.swift */,\n\t\t\t\tCDF2382E3A3EBF8C4EA56EA63B0450BC /* NSString+QCKSelectorName.h */,\n\t\t\t\t61BCEA4D2FE54567759B6361862E85A5 /* NSString+QCKSelectorName.m */,\n\t\t\t\t3A92C161CC0365639BDA3BF5C09D75B0 /* QCKDSL.h */,\n\t\t\t\t5A0483B4BB0243CC28E72E5FBD8DB68B /* QCKDSL.m */,\n\t\t\t\tB8F86A7E42E45B16621FA7D141DDD102 /* Quick.h */,\n\t\t\t\t4AB1B530FD4746C7F1ED45FB4D5A9874 /* QuickConfiguration.h */,\n\t\t\t\tCA7ED0ECCD1072B842759099B8A5BB64 /* QuickConfiguration.m */,\n\t\t\t\tF6243AD9E6311D7DCEFDEF4BC3A50859 /* QuickSelectedTestSuiteBuilder.swift */,\n\t\t\t\tF8B44832CF0A8EC7A1EFA01846604B27 /* QuickSpec.h */,\n\t\t\t\tD78F0624BEB297D6125991F8F27CA381 /* QuickSpec.m */,\n\t\t\t\tA1EABCA2C5F0C8116ADA4972CD177535 /* QuickTestSuite.swift */,\n\t\t\t\t9C478096F55DAAFB3A4039B64FEFAE98 /* SuiteHooks.swift */,\n\t\t\t\tC878728B2C3CFD5993B6822137CE771B /* URL+FileName.swift */,\n\t\t\t\t67B1F98F024249532383E6CED2529B76 /* World.h */,\n\t\t\t\tEE9A987E830816D13D423881223CAD20 /* World.swift */,\n\t\t\t\t5E29A6AE6378CC0FFE2CBF7A691DF366 /* World+DSL.h */,\n\t\t\t\t6ADE93DC4F670B429664153334AC498A /* World+DSL.swift */,\n\t\t\t\tF944D7066C3FBE6346D1BC4CCEFF019B /* XCTestSuite+QuickTestSuiteBuilder.m */,\n\t\t\t\t4CF216E4372B016FCC3723A0C0FB9A62 /* Support Files */,\n\t\t\t);\n\t\t\tpath = Quick;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t4CF216E4372B016FCC3723A0C0FB9A62 /* Support Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tCDFE125ABF7991778EB9DCFEBE1980AD /* Info.plist */,\n\t\t\t\t85D107FD08A65476FFB42BF6F74A3DB2 /* Quick.modulemap */,\n\t\t\t\t89CA505A4090716FCFBB675A171D4137 /* Quick.xcconfig */,\n\t\t\t\tE28B0C352E6F01D475C896EB2AC2BF88 /* Quick-dummy.m */,\n\t\t\t\tB9C83EAA39CDD9F7107D4D7F499A4D03 /* Quick-prefix.pch */,\n\t\t\t\tE196A082C7CA44AB8438286B821016A9 /* Quick-umbrella.h */,\n\t\t\t);\n\t\t\tname = \"Support Files\";\n\t\t\tpath = \"../Target Support Files/Quick\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t5B35EBC88BB4B3C48041E879D7D48865 /* Pods */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t05726D4C8C55E92510638D41B1182E34 /* Nimble */,\n\t\t\t\t3C44D2D68BDE305386D95A2CD24F2BF1 /* Quick */,\n\t\t\t\tC177F8F3FCB64CCB33485690CC670143 /* Reflection */,\n\t\t\t);\n\t\t\tname = Pods;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t68A40BDDB283092F875791156923FBB7 /* PersistentStorageSerializable */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t01C8399240B3656FB9FD76C9D6831AAC /* PersistentStorageSerializable */,\n\t\t\t\t981FA3EA82839531F6C0D2580F700D0E /* Support Files */,\n\t\t\t);\n\t\t\tname = PersistentStorageSerializable;\n\t\t\tpath = ../..;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t7DB346D0F39D3F0E887471402A8071AB = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */,\n\t\t\t\t2AB8D204A1CFF4CBA30176679BBED97E /* Development Pods */,\n\t\t\t\t1457A5B98FA989360F0D80579C7F2057 /* Frameworks */,\n\t\t\t\t5B35EBC88BB4B3C48041E879D7D48865 /* Pods */,\n\t\t\t\t112B47088E1A093231482A68550F00E8 /* Products */,\n\t\t\t\t95FA4C334EB05550157C56B2CEE9A1F1 /* Targets Support Files */,\n\t\t\t);\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t8924E3D4BE7707FB3B2B34CFA1B7D2BE /* Pods-PersistentStorageSerializable_MacExample */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t45326A29AFE6D19B42FE6CAAAC531328 /* Info.plist */,\n\t\t\t\t9E14E05F296DA5CB818FF86D62211B6C /* Pods-PersistentStorageSerializable_MacExample.modulemap */,\n\t\t\t\t944DE07F663B6872169C028461F2F467 /* Pods-PersistentStorageSerializable_MacExample-acknowledgements.markdown */,\n\t\t\t\t330960B91D30A9CFAE24181F3B16FD69 /* Pods-PersistentStorageSerializable_MacExample-acknowledgements.plist */,\n\t\t\t\tD3B7A9361C95282C7B4CDDB9F84197FF /* Pods-PersistentStorageSerializable_MacExample-dummy.m */,\n\t\t\t\tCD13BDB1BAB67FC79EF84323384574CE /* Pods-PersistentStorageSerializable_MacExample-frameworks.sh */,\n\t\t\t\tE09F71C71226DABFB704EBB455FD474D /* Pods-PersistentStorageSerializable_MacExample-resources.sh */,\n\t\t\t\tF76B520EB440AD883F9E762A2520AE65 /* Pods-PersistentStorageSerializable_MacExample-umbrella.h */,\n\t\t\t\t37FEFD4566840955F87EC36E6CFA43F1 /* Pods-PersistentStorageSerializable_MacExample.debug.xcconfig */,\n\t\t\t\tB843A390CA2C46325E617109CE7C00B4 /* Pods-PersistentStorageSerializable_MacExample.release.xcconfig */,\n\t\t\t);\n\t\t\tname = \"Pods-PersistentStorageSerializable_MacExample\";\n\t\t\tpath = \"Target Support Files/Pods-PersistentStorageSerializable_MacExample\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t95FA4C334EB05550157C56B2CEE9A1F1 /* Targets Support Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tBEB38A81834392A2E7E6883F47BEFF1C /* Pods-PersistentStorageSerializable_iOSExample */,\n\t\t\t\t8924E3D4BE7707FB3B2B34CFA1B7D2BE /* Pods-PersistentStorageSerializable_MacExample */,\n\t\t\t\tE6C3EC009DAD7C99819DA47CAE1A8691 /* Pods-PersistentStorageSerializable_Tests */,\n\t\t\t);\n\t\t\tname = \"Targets Support Files\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t981FA3EA82839531F6C0D2580F700D0E /* Support Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t539A7260F2A2B5AB2DF4494D3EBFD410 /* Info.plist */,\n\t\t\t\t10BF599C02A2F92878A7D882C9611421 /* Info.plist */,\n\t\t\t\t48BE6F62489EFA706F38F78647FD9728 /* PersistentStorageSerializable-iOS.modulemap */,\n\t\t\t\tAB379B8B8259CE097D226FB13A1FC648 /* PersistentStorageSerializable-iOS.xcconfig */,\n\t\t\t\t9BA1549C5D1B25AFA3C649C78FA1F854 /* PersistentStorageSerializable-iOS-dummy.m */,\n\t\t\t\t75E42118B71F2B29F7881C63C2B011FB /* PersistentStorageSerializable-iOS-prefix.pch */,\n\t\t\t\tA026A2D246B6B842F4B7564B2E87C903 /* PersistentStorageSerializable-iOS-umbrella.h */,\n\t\t\t\t8F942B77C05759400B0802230EA76478 /* PersistentStorageSerializable-OSX.modulemap */,\n\t\t\t\t1AD12082F1076D96DAC1FD9A39D116A7 /* PersistentStorageSerializable-OSX.xcconfig */,\n\t\t\t\tBBD89AD9CE542E5D5CA821020724FFBA /* PersistentStorageSerializable-OSX-dummy.m */,\n\t\t\t\tF18E3ACFDE1E8E7880CCE9E1210A80AC /* PersistentStorageSerializable-OSX-prefix.pch */,\n\t\t\t\tB23DC3D7DA990D4E2939C1BC4496A08A /* PersistentStorageSerializable-OSX-umbrella.h */,\n\t\t\t);\n\t\t\tname = \"Support Files\";\n\t\t\tpath = \"Example/Pods/Target Support Files/PersistentStorageSerializable-OSX\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tB76AD05414975C4FA2C7ED1838BB5600 /* iOS */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tA3812E2DC98C94413C4741910FB77160 /* Foundation.framework */,\n\t\t\t\t4AF86E0EEBE4ECA5D93983C10918FE02 /* XCTest.framework */,\n\t\t\t);\n\t\t\tname = iOS;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tBEB38A81834392A2E7E6883F47BEFF1C /* Pods-PersistentStorageSerializable_iOSExample */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t40D4F0906C3E8D0F7BD6A7B203991625 /* Info.plist */,\n\t\t\t\t6390C415FDF7E2074F9679B0EF4E9DA1 /* Pods-PersistentStorageSerializable_iOSExample.modulemap */,\n\t\t\t\t1E991206BBAD4F0FA3A741A59A57E783 /* Pods-PersistentStorageSerializable_iOSExample-acknowledgements.markdown */,\n\t\t\t\tF7E8EF54B0B1130FB01D55683CCB70BD /* Pods-PersistentStorageSerializable_iOSExample-acknowledgements.plist */,\n\t\t\t\tC94794649537F0066EB7D122F0E30D60 /* Pods-PersistentStorageSerializable_iOSExample-dummy.m */,\n\t\t\t\t3075226313FF83346C5B4B26AFC5D7C7 /* Pods-PersistentStorageSerializable_iOSExample-frameworks.sh */,\n\t\t\t\t09F16AFC755B1E7DA916EB123B4B433C /* Pods-PersistentStorageSerializable_iOSExample-resources.sh */,\n\t\t\t\tBC62F6B906201B92A5E117B29415D918 /* Pods-PersistentStorageSerializable_iOSExample-umbrella.h */,\n\t\t\t\tA4B56A6EED0B50275C67F754263391DA /* Pods-PersistentStorageSerializable_iOSExample.debug.xcconfig */,\n\t\t\t\t272AA0D36A2B77FCF978B083C7D8673C /* Pods-PersistentStorageSerializable_iOSExample.release.xcconfig */,\n\t\t\t);\n\t\t\tname = \"Pods-PersistentStorageSerializable_iOSExample\";\n\t\t\tpath = \"Target Support Files/Pods-PersistentStorageSerializable_iOSExample\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC10B9F96B8EA91B32F2573AD1849405A /* Support Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t236C27708A8A6A5A6183983A059511E4 /* Info.plist */,\n\t\t\t\t8383C2DB5F3EB2FE3DFB4992A399343B /* Info.plist */,\n\t\t\t\t18785D0D7962AC70BC0DDD2600F7CAA9 /* Reflection-iOS.modulemap */,\n\t\t\t\t66EA1514CB8DCAB8B490F192914CCE88 /* Reflection-iOS.xcconfig */,\n\t\t\t\t13BD39469AED51D519EF9058AC78DB5B /* Reflection-iOS-dummy.m */,\n\t\t\t\t8564F055BF244AF3234A9A5931029A54 /* Reflection-iOS-prefix.pch */,\n\t\t\t\t01EC2AA7495F252C13BD7234C74E79F3 /* Reflection-iOS-umbrella.h */,\n\t\t\t\t82BB205A9D6D44244AAAF4109F30BBAC /* Reflection-OSX.modulemap */,\n\t\t\t\t449695496334292237F7ABF92C612C79 /* Reflection-OSX.xcconfig */,\n\t\t\t\tC7BF7B887150EFCDEFB19473A8CCFB25 /* Reflection-OSX-dummy.m */,\n\t\t\t\t4FFE5B7B0ECD5BFF9BF32C39E01BF3CF /* Reflection-OSX-prefix.pch */,\n\t\t\t\t88A0A2C900F1B0DA95C4E099D8EF69DE /* Reflection-OSX-umbrella.h */,\n\t\t\t);\n\t\t\tname = \"Support Files\";\n\t\t\tpath = \"../Target Support Files/Reflection-OSX\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC177F8F3FCB64CCB33485690CC670143 /* Reflection */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t559C95F20B29BE7F707CA733C7738B29 /* Advance.swift */,\n\t\t\t\tAD76B886530DC003364EE0F566036318 /* Any+Extensions.swift */,\n\t\t\t\t9578A4E1FCE35AB00735C22CFC7162C2 /* Array+Extensions.swift */,\n\t\t\t\t80C39B59F6205A8B8AF381514259A66D /* Construct.swift */,\n\t\t\t\tF15DABBF3A935A0689C332EA250AD0DE /* Get.swift */,\n\t\t\t\t409470BF79C61A1DC5EE998F14636B1D /* Identity.swift */,\n\t\t\t\t35699FC5A45F8604D9E53D74B994634E /* MemoryProperties.swift */,\n\t\t\t\t22089DBC28F5B811B25675FBD14A464C /* Metadata.swift */,\n\t\t\t\t47982F2D4AB9B4C4719DA6F8802FC275 /* Metadata+Class.swift */,\n\t\t\t\tF8B180A74BF7DA9BBC0C73181205FB92 /* Metadata+Kind.swift */,\n\t\t\t\t08F6FE8EEAA8D621FB74B7B387C39435 /* Metadata+Struct.swift */,\n\t\t\t\t3D6D4970F760DF36BCCBDE630066C7B2 /* Metadata+Tuple.swift */,\n\t\t\t\t0FBD8197371FDDD1F56733D5344DA39C /* MetadataType.swift */,\n\t\t\t\tAC711F896F1F753CD40D0336E1891051 /* NominalType.swift */,\n\t\t\t\tDD2E21D6BE5962664A0A86D50A5F27FF /* NominalTypeDescriptor.swift */,\n\t\t\t\tCA30706E8884E8F1B0E6CD2EA1B84275 /* PointerType.swift */,\n\t\t\t\tBE3AC896DCF9F346EDE03FFD0488C493 /* Properties.swift */,\n\t\t\t\t972E1E97A8BE5406BCB6970C92C39D67 /* ReflectionError.swift */,\n\t\t\t\t0A7F4F011E3296C5BDBCDA0E0662448F /* RelativePointer.swift */,\n\t\t\t\t96F31DEAF8546F97D13B6631A0613D6C /* Set.swift */,\n\t\t\t\t217580B44B73532ED783A1267CCDB3FA /* Storage.swift */,\n\t\t\t\t4F08D19A4E34CF4C3804349437273B90 /* UnsafePointer+Extensions.swift */,\n\t\t\t\t297F08DEBA780355103E1943E91C9863 /* ValueWitnessTable.swift */,\n\t\t\t\tC10B9F96B8EA91B32F2573AD1849405A /* Support Files */,\n\t\t\t);\n\t\t\tpath = Reflection;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC9DC65308111F737200B1E64FCBDA75E /* Support Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t8F48EBA91CB748656BB261C2366EF4A5 /* Info.plist */,\n\t\t\t\t9D8169968C7213ADA57D2C051D306C17 /* Nimble.modulemap */,\n\t\t\t\t09C1992E68D8FC0C0241FC40D3899B5D /* Nimble.xcconfig */,\n\t\t\t\t4FA2C3F5E0A780BE8ACBF263F1144522 /* Nimble-dummy.m */,\n\t\t\t\tD3F8840B178F3FF2FC53CE285B77F87E /* Nimble-prefix.pch */,\n\t\t\t\t6BA9BDC9D1D74EFFEE8DC76C6DE0B7C7 /* Nimble-umbrella.h */,\n\t\t\t);\n\t\t\tname = \"Support Files\";\n\t\t\tpath = \"../Target Support Files/Nimble\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tE6C3EC009DAD7C99819DA47CAE1A8691 /* Pods-PersistentStorageSerializable_Tests */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t6DDCF5299547FB5521D650CE6A57F2AF /* Info.plist */,\n\t\t\t\t213549B893FEA076CD035251ADFE9845 /* Pods-PersistentStorageSerializable_Tests.modulemap */,\n\t\t\t\t8D9D52F249D62845DF022590C42147CD /* Pods-PersistentStorageSerializable_Tests-acknowledgements.markdown */,\n\t\t\t\tC9633F84E2EEA318823E16E16FA3E7CE /* Pods-PersistentStorageSerializable_Tests-acknowledgements.plist */,\n\t\t\t\tA18E35F09E61F21D2E34681DE3CAB1BB /* Pods-PersistentStorageSerializable_Tests-dummy.m */,\n\t\t\t\t3F6AF0730A8A933938DC9F34A8A068E2 /* Pods-PersistentStorageSerializable_Tests-frameworks.sh */,\n\t\t\t\tC00223D84C0D987C5C44B6E450DCB8F3 /* Pods-PersistentStorageSerializable_Tests-resources.sh */,\n\t\t\t\t5CB4072DCEF8D77880842C53D041AB97 /* Pods-PersistentStorageSerializable_Tests-umbrella.h */,\n\t\t\t\tB4F57D336E8CD0C8E07BF34E6FBCF86E /* Pods-PersistentStorageSerializable_Tests.debug.xcconfig */,\n\t\t\t\tDDAB3E7FAA610141534F47F426392A3D /* Pods-PersistentStorageSerializable_Tests.release.xcconfig */,\n\t\t\t);\n\t\t\tname = \"Pods-PersistentStorageSerializable_Tests\";\n\t\t\tpath = \"Target Support Files/Pods-PersistentStorageSerializable_Tests\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXHeadersBuildPhase section */\n\t\t11B44C47B51351542DE8194E76DE3001 /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t58BBAA735E0564DC10B759A045722D28 /* Pods-PersistentStorageSerializable_MacExample-umbrella.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t1F799EC06F84DF4380CC7E2CDAA3FD23 /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tC60420491851A44ADA0989C09A0A00A8 /* PersistentStorageSerializable-iOS-umbrella.h in Headers */,\n\t\t\t\t5EAF1AE63153220FC957F99817820067 /* SwiftTryCatch.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t2ACF6192E10A038A21EFA2156C9F7EA3 /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tF693D0A9E0D05F815A85DC258E75AF8D /* CurrentTestCaseTracker.h in Headers */,\n\t\t\t\t65F5217D44A557FC16218DE5DE348C35 /* CwlCatchBadInstruction.h in Headers */,\n\t\t\t\t87DD62F200DAB5E1D701AB9F94D1D422 /* CwlCatchException.h in Headers */,\n\t\t\t\t0ECEEBC712D404AA6CF1E76A9284BFF9 /* DSL.h in Headers */,\n\t\t\t\tB093484B1637B3D3AF65DF2232FDBADC /* mach_excServer.h in Headers */,\n\t\t\t\t76036D32625A56D480D84AA46961EF91 /* Nimble-umbrella.h in Headers */,\n\t\t\t\t469E9C3ED9FD6009F7C9AAF9E537E212 /* Nimble.h in Headers */,\n\t\t\t\t917949F596E1188261FC59214782C3D9 /* NMBExceptionCapture.h in Headers */,\n\t\t\t\t27B262F95D3CF9E3C74541A41929691C /* NMBStringify.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t524B83A6C825BAF4C274F39ED56AF5D2 /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tAD5162BE3EE92A4A3197423D7040F0C5 /* NSString+QCKSelectorName.h in Headers */,\n\t\t\t\t27C8D0B5BDCE5D2598D72B26804C5C02 /* QCKDSL.h in Headers */,\n\t\t\t\t5F0656C57F3790BFAECDEE9DD19FF9F8 /* Quick-umbrella.h in Headers */,\n\t\t\t\tE522A8C892DC6E5CAEDC20148D704EF8 /* Quick.h in Headers */,\n\t\t\t\t4C672CABC57F27FD257A00D44A41AA2C /* QuickConfiguration.h in Headers */,\n\t\t\t\t5DD5045E9FD98BA38FD09BC13331DB22 /* QuickSpec.h in Headers */,\n\t\t\t\t020B66398FFAE7EF8DC82BCFBC847B74 /* World+DSL.h in Headers */,\n\t\t\t\tA21134677479F6C55B6E5481D7AAA043 /* World.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t5DFEFB77A67C0940F7B1A1EAF79990D6 /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t465F487084A675DF1D8FF41AB942A461 /* Pods-PersistentStorageSerializable_iOSExample-umbrella.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t68E3FF3CE12E064A8B29BCFC9CB491C9 /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t053B74B0FCB3178D1ED0607D0F972A71 /* Reflection-iOS-umbrella.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t72EFED2E87FDF59D892804C047C3A726 /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t079AB49FD0F4774D822A66A51327DA53 /* PersistentStorageSerializable-OSX-umbrella.h in Headers */,\n\t\t\t\tF20E741BBC41327AED358EB0E719D1CF /* SwiftTryCatch.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tE174AD545CC1F7849FE91FC22FB76448 /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t4EB98E304582EC3C0213C88146DE42F9 /* Reflection-OSX-umbrella.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tF3731B6966525ECA9A58DD15F878ED79 /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tAFBB8B76ECE814775A6EC638AB37A43F /* Pods-PersistentStorageSerializable_Tests-umbrella.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXHeadersBuildPhase section */\n\n/* Begin PBXNativeTarget section */\n\t\t0549E4E6F5102AC529E6B71AC4B98B73 /* Pods-PersistentStorageSerializable_MacExample */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = D92D3AFFD976E7382A2EC7E51CCBA37C /* Build configuration list for PBXNativeTarget \"Pods-PersistentStorageSerializable_MacExample\" */;\n\t\t\tbuildPhases = (\n\t\t\t\tB0032F9879AAFB0171B9D84AB5320096 /* Sources */,\n\t\t\t\t90F7CC3A876AD76ED38ED1EBC225EA40 /* Frameworks */,\n\t\t\t\t11B44C47B51351542DE8194E76DE3001 /* Headers */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\tBD475F43DE62EFCA9655DB3CEE4B0892 /* PBXTargetDependency */,\n\t\t\t\tBAA858ED93A0AC61EAC4D3E4DF4753A9 /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = \"Pods-PersistentStorageSerializable_MacExample\";\n\t\t\tproductName = \"Pods-PersistentStorageSerializable_MacExample\";\n\t\t\tproductReference = A0786455757A284E0F80A4F1D4140D38 /* Pods_PersistentStorageSerializable_MacExample.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n\t\t1321E318D10CFDC9F5B93A7952492CCD /* Nimble */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = B1DBAFB75A3AF98C8C6B0863BDC7A2E3 /* Build configuration list for PBXNativeTarget \"Nimble\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t3C4AABA28564F6F29FE8E3F38226690A /* Sources */,\n\t\t\t\tDBE2CE2F5ED086FC1DD44D4B176AEA5B /* Frameworks */,\n\t\t\t\t2ACF6192E10A038A21EFA2156C9F7EA3 /* Headers */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = Nimble;\n\t\t\tproductName = Nimble;\n\t\t\tproductReference = 7EA1857941993C28916ABAA7338C2124 /* Nimble.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n\t\t4F6E643E2F6C9A118A094117CCF0AD33 /* Pods-PersistentStorageSerializable_Tests */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = E224EA756B2648B2E5AB2028E714FD79 /* Build configuration list for PBXNativeTarget \"Pods-PersistentStorageSerializable_Tests\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t83DDA1DDF8A5C0DD2B9457C6A6797E0F /* Sources */,\n\t\t\t\t1E587FE14CF0ED99AAD2265A8B9CBEA4 /* Frameworks */,\n\t\t\t\tF3731B6966525ECA9A58DD15F878ED79 /* Headers */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\tA423C4C7B0ED8254F9B7640584BB8DDE /* PBXTargetDependency */,\n\t\t\t\t41A8A32402B47D152FCBECD8CDC1284B /* PBXTargetDependency */,\n\t\t\t\t19808F654D7BD88967CF0E2657A11A8B /* PBXTargetDependency */,\n\t\t\t\tFA8AB738B2E50CEB9120D41F5442D7B4 /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = \"Pods-PersistentStorageSerializable_Tests\";\n\t\t\tproductName = \"Pods-PersistentStorageSerializable_Tests\";\n\t\t\tproductReference = CA172C3BBC2F641B659ED5C623805BDC /* Pods_PersistentStorageSerializable_Tests.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n\t\t78DD5EB06C96485107D83E0183C84D70 /* Quick */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 323621E0B680E87AA6892CEE3C97081D /* Build configuration list for PBXNativeTarget \"Quick\" */;\n\t\t\tbuildPhases = (\n\t\t\t\tE769480009C52559A3A3C28FF42D5C57 /* Sources */,\n\t\t\t\t22F12015985B9E18FDDC014D683C3AE5 /* Frameworks */,\n\t\t\t\t524B83A6C825BAF4C274F39ED56AF5D2 /* Headers */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = Quick;\n\t\t\tproductName = Quick;\n\t\t\tproductReference = 2447827F13EA2ED7E904EA15F647F2EA /* Quick.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n\t\t810EE9CC72099DB8CE653C742754EC04 /* PersistentStorageSerializable-iOS */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 83E8B094BB06F88FAA1D579ECE15F50A /* Build configuration list for PBXNativeTarget \"PersistentStorageSerializable-iOS\" */;\n\t\t\tbuildPhases = (\n\t\t\t\tD57185FD8D82A912CD38F74EDDEBB42C /* Sources */,\n\t\t\t\t9E1716F5D34F5505736FEB173664D299 /* Frameworks */,\n\t\t\t\t1F799EC06F84DF4380CC7E2CDAA3FD23 /* Headers */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\tF98C13D6D032C95C1913D4AFE48511C3 /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = \"PersistentStorageSerializable-iOS\";\n\t\t\tproductName = \"PersistentStorageSerializable-iOS\";\n\t\t\tproductReference = 549FEBEE27325E9E177BE6D99C52B08C /* PersistentStorageSerializable.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n\t\t8302DFE25125E545B660DD41FB4DAD67 /* Reflection-OSX */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = E9E41A62CDC5D28F3772CFCB3460DFD4 /* Build configuration list for PBXNativeTarget \"Reflection-OSX\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t13F0DCB671A23F38A260DDBD69DFE48D /* Sources */,\n\t\t\t\tF782E107EC5038AD4ACDFA75608A6E01 /* Frameworks */,\n\t\t\t\tE174AD545CC1F7849FE91FC22FB76448 /* Headers */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = \"Reflection-OSX\";\n\t\t\tproductName = \"Reflection-OSX\";\n\t\t\tproductReference = F002B2610679A6F73A8EBDAE1FB8B769 /* Reflection.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n\t\tB29FB212BE53D249CF080AF2FC6B42D5 /* PersistentStorageSerializable-OSX */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 0FF05E191588DF44EB64DDDBD0AECCD0 /* Build configuration list for PBXNativeTarget \"PersistentStorageSerializable-OSX\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t6D7B2BF7B2084078EF820BD25BA245A6 /* Sources */,\n\t\t\t\t4EB16425BDA91C91D2FADCA18300D987 /* Frameworks */,\n\t\t\t\t72EFED2E87FDF59D892804C047C3A726 /* Headers */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\t55F35D5044C2CC3CA3D74CF48AD3C182 /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = \"PersistentStorageSerializable-OSX\";\n\t\t\tproductName = \"PersistentStorageSerializable-OSX\";\n\t\t\tproductReference = 574E9F7002EDCC105A916FA3AEC5E703 /* PersistentStorageSerializable.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n\t\tF0CEC1F3C61AFCB9ADA5919C64B003CE /* Reflection-iOS */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 6CDCABBEB0265ED19E8A8CF567DACD69 /* Build configuration list for PBXNativeTarget \"Reflection-iOS\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t606CB0654DDA73D64979D232B0532D64 /* Sources */,\n\t\t\t\tBFB5F99A63F936C3C47B70F4A922146A /* Frameworks */,\n\t\t\t\t68E3FF3CE12E064A8B29BCFC9CB491C9 /* Headers */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = \"Reflection-iOS\";\n\t\t\tproductName = \"Reflection-iOS\";\n\t\t\tproductReference = EAC1A086219F60C7564C880B9CE22833 /* Reflection.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n\t\tF2951F9CAE6AB0A0B459024AA4D646B1 /* Pods-PersistentStorageSerializable_iOSExample */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 2FAF241D791923DB8E7AE90EDE7027C3 /* Build configuration list for PBXNativeTarget \"Pods-PersistentStorageSerializable_iOSExample\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t32C3F4C43D291B781BEAFB87562EC2E5 /* Sources */,\n\t\t\t\tDEECF0B3A5FC43A3CA9BAF0B9547809C /* Frameworks */,\n\t\t\t\t5DFEFB77A67C0940F7B1A1EAF79990D6 /* Headers */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\tFF9952B7AE33F3727AC1E9BAC6F1B3FE /* PBXTargetDependency */,\n\t\t\t\tC4FF8625191A1F15A28302281CEEE0EC /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = \"Pods-PersistentStorageSerializable_iOSExample\";\n\t\t\tproductName = \"Pods-PersistentStorageSerializable_iOSExample\";\n\t\t\tproductReference = 1D92A2C0B35822F6671F491C09EC6EDB /* Pods_PersistentStorageSerializable_iOSExample.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n/* End PBXNativeTarget section */\n\n/* Begin PBXProject section */\n\t\tD41D8CD98F00B204E9800998ECF8427E /* Project object */ = {\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tLastSwiftUpdateCheck = 0730;\n\t\t\t\tLastUpgradeCheck = 0700;\n\t\t\t};\n\t\t\tbuildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject \"Pods\" */;\n\t\t\tcompatibilityVersion = \"Xcode 3.2\";\n\t\t\tdevelopmentRegion = English;\n\t\t\thasScannedForEncodings = 0;\n\t\t\tknownRegions = (\n\t\t\t\ten,\n\t\t\t);\n\t\t\tmainGroup = 7DB346D0F39D3F0E887471402A8071AB;\n\t\t\tproductRefGroup = 112B47088E1A093231482A68550F00E8 /* Products */;\n\t\t\tprojectDirPath = \"\";\n\t\t\tprojectRoot = \"\";\n\t\t\ttargets = (\n\t\t\t\t1321E318D10CFDC9F5B93A7952492CCD /* Nimble */,\n\t\t\t\t810EE9CC72099DB8CE653C742754EC04 /* PersistentStorageSerializable-iOS */,\n\t\t\t\tB29FB212BE53D249CF080AF2FC6B42D5 /* PersistentStorageSerializable-OSX */,\n\t\t\t\tF2951F9CAE6AB0A0B459024AA4D646B1 /* Pods-PersistentStorageSerializable_iOSExample */,\n\t\t\t\t0549E4E6F5102AC529E6B71AC4B98B73 /* Pods-PersistentStorageSerializable_MacExample */,\n\t\t\t\t4F6E643E2F6C9A118A094117CCF0AD33 /* Pods-PersistentStorageSerializable_Tests */,\n\t\t\t\t78DD5EB06C96485107D83E0183C84D70 /* Quick */,\n\t\t\t\tF0CEC1F3C61AFCB9ADA5919C64B003CE /* Reflection-iOS */,\n\t\t\t\t8302DFE25125E545B660DD41FB4DAD67 /* Reflection-OSX */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin PBXSourcesBuildPhase section */\n\t\t13F0DCB671A23F38A260DDBD69DFE48D /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t6302DC24446FB6D1D3F28C7A91074E6C /* Advance.swift in Sources */,\n\t\t\t\tEFCF71BE7182C23F3517B99A90EF647E /* Any+Extensions.swift in Sources */,\n\t\t\t\tADAFA23A712E649A250F51E1E4A3B9A6 /* Array+Extensions.swift in Sources */,\n\t\t\t\t8DFD3ED6E1F4FC0D540E0FE53C8D67D8 /* Construct.swift in Sources */,\n\t\t\t\tF68273DF598C7366016B4942A61059B8 /* Get.swift in Sources */,\n\t\t\t\tEEB1AB6DD725CC3E48EC1A253B8365A0 /* Identity.swift in Sources */,\n\t\t\t\t84096C1960B46419BEAA85A22B353DB2 /* MemoryProperties.swift in Sources */,\n\t\t\t\tCD6CC09B21B2BCBAA4F16A8613806246 /* Metadata+Class.swift in Sources */,\n\t\t\t\t1126C787C127CB914614414DC0AB6B47 /* Metadata+Kind.swift in Sources */,\n\t\t\t\tB7C651D3CB5879217669C82B3897B0E4 /* Metadata+Struct.swift in Sources */,\n\t\t\t\t1B17B3C06FE5ADDFB860494D7695A3A2 /* Metadata+Tuple.swift in Sources */,\n\t\t\t\t2BEA3608F762A2FE5015B1E18DFCD271 /* Metadata.swift in Sources */,\n\t\t\t\t698B22A2197B6B1C3FBD6152F580A56E /* MetadataType.swift in Sources */,\n\t\t\t\t2568862D51DC7E7E605FEA67B3C2B2DF /* NominalType.swift in Sources */,\n\t\t\t\t9F08882A4973621F4AF68EB72EDF6239 /* NominalTypeDescriptor.swift in Sources */,\n\t\t\t\tDD70CBB5FBFE8E2BE8F6D2E2C7754A44 /* PointerType.swift in Sources */,\n\t\t\t\tADB23C0587582C77280651FABBBB20E7 /* Properties.swift in Sources */,\n\t\t\t\tCEB1E434D27275AD2A65C817A838EF97 /* Reflection-OSX-dummy.m in Sources */,\n\t\t\t\tBA09DEE84D61AFCD97C518D61A3D3A96 /* ReflectionError.swift in Sources */,\n\t\t\t\t60986639F7C83D8C8120F0C56EACB273 /* RelativePointer.swift in Sources */,\n\t\t\t\t71591AC90458BECCD88F503B98B7E307 /* Set.swift in Sources */,\n\t\t\t\t8154A9D75CE273A5CA11AD734F8DD0AF /* Storage.swift in Sources */,\n\t\t\t\tF5B288321A3A12AB215FCEFAC0208522 /* UnsafePointer+Extensions.swift in Sources */,\n\t\t\t\t0F98B9251F2C3EE6F7E51AEC683860F7 /* ValueWitnessTable.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t32C3F4C43D291B781BEAFB87562EC2E5 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tE1A93DCEC817DE5770524BF75E840E08 /* Pods-PersistentStorageSerializable_iOSExample-dummy.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t3C4AABA28564F6F29FE8E3F38226690A /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t047A68C646E00EB6D7D4D7343B801D09 /* AdapterProtocols.swift in Sources */,\n\t\t\t\tDCEE854E62441E78FED15CC994497F61 /* AllPass.swift in Sources */,\n\t\t\t\t74FD712F3B503891B6BD9E5CD287E481 /* AssertionDispatcher.swift in Sources */,\n\t\t\t\tF9E05A63D447B51E008B89731192FE7F /* AssertionRecorder.swift in Sources */,\n\t\t\t\tAC29CC89E22273BF0D0DC2C841B7524C /* Async.swift in Sources */,\n\t\t\t\t551440A0F92574039C1D2EB39227D6B8 /* AsyncMatcherWrapper.swift in Sources */,\n\t\t\t\tF60D221B548716DF35193FC2CF244676 /* BeAKindOf.swift in Sources */,\n\t\t\t\tA448F837592E21D9387322E8DA0DD93F /* BeAnInstanceOf.swift in Sources */,\n\t\t\t\t9544A4EEC2A8448743ECA9981F88B60F /* BeCloseTo.swift in Sources */,\n\t\t\t\t9AF235C16362BA00BFBF12147907E953 /* BeEmpty.swift in Sources */,\n\t\t\t\tAB255C27EF10E742C6567775022F49D5 /* BeginWith.swift in Sources */,\n\t\t\t\t07722FBCF6B380961B9D2832D5883F45 /* BeGreaterThan.swift in Sources */,\n\t\t\t\t1C50F54510D5C2B2AD84D7B74A6EDEBB /* BeGreaterThanOrEqualTo.swift in Sources */,\n\t\t\t\tA33F1754198E8E8CCC7087F6176FFDC8 /* BeIdenticalTo.swift in Sources */,\n\t\t\t\t6E397D9FB11A47E48D70287D734B12B2 /* BeLessThan.swift in Sources */,\n\t\t\t\tFAB4ECE0C5039D99BB7173880670871D /* BeLessThanOrEqual.swift in Sources */,\n\t\t\t\t0AEC20AACF9B10846830274E3B2AA6FD /* BeLogical.swift in Sources */,\n\t\t\t\t599669823A2EED2928C77F301F6B0515 /* BeNil.swift in Sources */,\n\t\t\t\t78F3DE174B4F8D368EF8EEFD7EE62087 /* BeVoid.swift in Sources */,\n\t\t\t\t8507F4BF7437EB40A3626EDCC68BFF6D /* Contain.swift in Sources */,\n\t\t\t\t737E19F3254F5929263982C29237C0BA /* CwlBadInstructionException.swift in Sources */,\n\t\t\t\t3915DBB4731CB17B255A7FE86E240B6E /* CwlCatchBadInstruction.m in Sources */,\n\t\t\t\t6CDBA48C3A8621E4EE1DAFFE240F0D82 /* CwlCatchBadInstruction.swift in Sources */,\n\t\t\t\t947162383483B6391F8CDF38249BFBD2 /* CwlCatchException.m in Sources */,\n\t\t\t\tF4A1B7A059AAA6727EB70E58E09332A4 /* CwlCatchException.swift in Sources */,\n\t\t\t\tBB10A2D0B1EE5B1BA811354116F83E3F /* CwlDarwinDefinitions.swift in Sources */,\n\t\t\t\t86FFB76B2EDCF4AE79CC4C0BD8A0FE9A /* DSL+Wait.swift in Sources */,\n\t\t\t\t1C7CA1FAFBF8B865596C739FEA39CDEE /* DSL.m in Sources */,\n\t\t\t\t17261E344C2027602431A636759AC7F2 /* DSL.swift in Sources */,\n\t\t\t\t8654571F855691C23B7B8E61B2141944 /* EndWith.swift in Sources */,\n\t\t\t\tBF3AF1D2B46E09E2B3DCC824E6C1F5AF /* Equal.swift in Sources */,\n\t\t\t\t7F6750C7B1847733370B18C4CBFE32DF /* Errors.swift in Sources */,\n\t\t\t\tCB7558CCDD935C9E82BBF454022ED1D3 /* Expectation.swift in Sources */,\n\t\t\t\t8015239010C1D642F14C105F8FF8E035 /* Expression.swift in Sources */,\n\t\t\t\t7D6269A3CFE53C28DAA6B92E8FC017A7 /* FailureMessage.swift in Sources */,\n\t\t\t\tFCFFEB587281358CFF05A65ED9E94C12 /* Functional.swift in Sources */,\n\t\t\t\tCE3FA6AE0944D4AE737F0E57CFF4A615 /* HaveCount.swift in Sources */,\n\t\t\t\t50B80F12A9BAE302F07F6CF94752F462 /* mach_excServer.c in Sources */,\n\t\t\t\tA91166D0A5E8F1D5D5377622C381C045 /* Match.swift in Sources */,\n\t\t\t\tB9BD565DAB07F8E2288A960A1D3EFAC1 /* MatcherFunc.swift in Sources */,\n\t\t\t\t23E2E1E02FE79EE1E1688CBBAA777297 /* MatcherProtocols.swift in Sources */,\n\t\t\t\tCE4CEF6328E255B380E2B2692B351CF8 /* MatchError.swift in Sources */,\n\t\t\t\t9E95D6E15DBE9B0FC92AAF60D42D1464 /* Nimble-dummy.m in Sources */,\n\t\t\t\tF9D61EB5EEB799105913685722FF4C9C /* NimbleEnvironment.swift in Sources */,\n\t\t\t\tE5CCEF0B83F8272D10671C01AAE4FFA0 /* NimbleXCTestHandler.swift in Sources */,\n\t\t\t\tDC32331BE565888E694E1321BB1D80F5 /* NMBExceptionCapture.m in Sources */,\n\t\t\t\t8C30EAD5FFD28B387099B41C74657A67 /* NMBExpectation.swift in Sources */,\n\t\t\t\tAC0B24EF198E3BEDFCC9F25D7B8EEDAB /* NMBObjCMatcher.swift in Sources */,\n\t\t\t\t127CD37052B8E0BC645D83D4664F59D4 /* NMBStringify.m in Sources */,\n\t\t\t\tEBA52C16F42E42A1824D87C284F4A60C /* PostNotification.swift in Sources */,\n\t\t\t\t4F3F103945CC52D0A3B8A891BB0E21C4 /* RaisesException.swift in Sources */,\n\t\t\t\t62744EF299751FB49B5FCD81D8C8FFF7 /* SatisfyAnyOf.swift in Sources */,\n\t\t\t\t234BFC45ACAC4A8FB945EA17B6A74B0B /* SourceLocation.swift in Sources */,\n\t\t\t\t9BEBD1791C233763A8DC13080BFB99C9 /* Stringers.swift in Sources */,\n\t\t\t\t110A640A9BE45841BA938B4C29EF5446 /* ThrowAssertion.swift in Sources */,\n\t\t\t\t22C1DE74D494C10BBE727F239A68447D /* ThrowError.swift in Sources */,\n\t\t\t\tD88575ED37BC462E8130CDBEFE9EA308 /* XCTestObservationCenter+Register.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t606CB0654DDA73D64979D232B0532D64 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tDB5B42776D188C8BA01E7F214CE2B2E5 /* Advance.swift in Sources */,\n\t\t\t\t6CA40832F248BADDAEAD9799D25E8327 /* Any+Extensions.swift in Sources */,\n\t\t\t\t0B95B4873A60B312637F64D29989704F /* Array+Extensions.swift in Sources */,\n\t\t\t\tAD6BACF97D192AE3BC9AA98DBB6B0C8F /* Construct.swift in Sources */,\n\t\t\t\tE7B341CCA626B55029DA67A8F4D8E78B /* Get.swift in Sources */,\n\t\t\t\t052E642802CDFAE58E5015973CC29989 /* Identity.swift in Sources */,\n\t\t\t\t0553835581ED0E2219057AAAF8EDACB7 /* MemoryProperties.swift in Sources */,\n\t\t\t\tFB0EEC25C35082E1C2E0BE2EFFF36EF8 /* Metadata+Class.swift in Sources */,\n\t\t\t\tA044BA198D7D7B695111CC1D2D72D8CB /* Metadata+Kind.swift in Sources */,\n\t\t\t\tC75B4E3F0052DF9F138A20EE54C52E87 /* Metadata+Struct.swift in Sources */,\n\t\t\t\t96DAA4B406FA5410F4D3474B8EDB890C /* Metadata+Tuple.swift in Sources */,\n\t\t\t\tBF232BD5ED6C85D9397D2F54335AC84F /* Metadata.swift in Sources */,\n\t\t\t\t502697EEDEB856CB927D86CEFFEFD81F /* MetadataType.swift in Sources */,\n\t\t\t\t1132968D8FD56FC339BE397D93F30182 /* NominalType.swift in Sources */,\n\t\t\t\tB2231C0FB5071D40FDDCE3461FDB8F98 /* NominalTypeDescriptor.swift in Sources */,\n\t\t\t\tD3B626F2AC4E553461FA5875C298D41B /* PointerType.swift in Sources */,\n\t\t\t\t6151084EDA799E77F35D31B123AA4FC4 /* Properties.swift in Sources */,\n\t\t\t\t1FACBA5B035E21841BFC908DF2F8DE60 /* Reflection-iOS-dummy.m in Sources */,\n\t\t\t\t1FEFF9515601DF2AD8B7AA51F78D84CD /* ReflectionError.swift in Sources */,\n\t\t\t\t01297E76B8F59B57CA207191681F7B5B /* RelativePointer.swift in Sources */,\n\t\t\t\tC9510EA7D95C129CD044F451413547A6 /* Set.swift in Sources */,\n\t\t\t\t5B863E4F94C0031EAA2395D95EEB6971 /* Storage.swift in Sources */,\n\t\t\t\tABD62B3892A67B671316A6D145AF6761 /* UnsafePointer+Extensions.swift in Sources */,\n\t\t\t\t32D21EE104D5522D22A63814A3014CE2 /* ValueWitnessTable.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t6D7B2BF7B2084078EF820BD25BA245A6 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t0595F8F053D261E51EE0A53C8B27A343 /* PersistentStorage.swift in Sources */,\n\t\t\t\tC0A7EED80F769F12D2BD3846B7DF137C /* PersistentStorageSerializable-OSX-dummy.m in Sources */,\n\t\t\t\t8431C26BBC7EAB8C47681E2B96AB93B5 /* PersistentStorageSerializable.swift in Sources */,\n\t\t\t\tAB7641591E9798B5007279BE /* PropertiesIteration.swift in Sources */,\n\t\t\t\tD1F0D71DC0ED03185D640B1D3EEA3150 /* SwiftTryCatch.m in Sources */,\n\t\t\t\tAB2E65E71E97DB35009A8531 /* PlistStorage.swift in Sources */,\n\t\t\t\t970E9F902FFC919D23F51D8861E05EBC /* UserDefaultsStorage.swift in Sources */,\n\t\t\t\tABEACAF01E9B6E4D004C1C2F /* SupportedSerializableType.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t83DDA1DDF8A5C0DD2B9457C6A6797E0F /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tD4DD435BD76E710101BBACFBDA5539EE /* Pods-PersistentStorageSerializable_Tests-dummy.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tB0032F9879AAFB0171B9D84AB5320096 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t5B15ED51D2DDC01FCECB0A6085564A83 /* Pods-PersistentStorageSerializable_MacExample-dummy.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tD57185FD8D82A912CD38F74EDDEBB42C /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t58FAC51B72C06FEC4A6C73A97477B0A9 /* PersistentStorage.swift in Sources */,\n\t\t\t\t10FB7310EAD5D4DA82EC2E3A01673CE1 /* PersistentStorageSerializable-iOS-dummy.m in Sources */,\n\t\t\t\t0447EAC87AD27FB27515B70F15F4837C /* PersistentStorageSerializable.swift in Sources */,\n\t\t\t\tAB7641581E9798B5007279BE /* PropertiesIteration.swift in Sources */,\n\t\t\t\t88D2CD8353F07F320B24053F75B0AA8A /* SwiftTryCatch.m in Sources */,\n\t\t\t\tAB2E65E61E97DB35009A8531 /* PlistStorage.swift in Sources */,\n\t\t\t\tE0534D41B876E82FD0472460B8D51179 /* UserDefaultsStorage.swift in Sources */,\n\t\t\t\tABEACAEF1E9B6E4D004C1C2F /* SupportedSerializableType.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tE769480009C52559A3A3C28FF42D5C57 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tB6E3B1A8C83A31066CF8ED1A341AA5AA /* Callsite.swift in Sources */,\n\t\t\t\tC1DD2D7CE982C0064A8448E4E661098E /* Closures.swift in Sources */,\n\t\t\t\t9C547F2004309855E778AE6D60A10291 /* Configuration.swift in Sources */,\n\t\t\t\t43DCD3F2C3E435EAD0B167ACD20CE1CE /* DSL.swift in Sources */,\n\t\t\t\tE8B55982DC570A58CFCE688C476FD5F6 /* ErrorUtility.swift in Sources */,\n\t\t\t\tAB2BA417AEEFD18FE0F73F80C97987CC /* Example.swift in Sources */,\n\t\t\t\t07731CF449EB16282C6A18D2739B0814 /* ExampleGroup.swift in Sources */,\n\t\t\t\t7D2A4146047606E0D021403D9D2CA45A /* ExampleHooks.swift in Sources */,\n\t\t\t\t3600CF9CB81FDA40631664F18C987565 /* ExampleMetadata.swift in Sources */,\n\t\t\t\tAC5137B44BDB6C4C38C6450791C1BAF4 /* Filter.swift in Sources */,\n\t\t\t\t492FCC6E224A949B9883FA7F4568B0C3 /* HooksPhase.swift in Sources */,\n\t\t\t\tD9D0C0BB64E7C80001F92BE20AEDD20C /* NSBundle+CurrentTestBundle.swift in Sources */,\n\t\t\t\tC331C441134E33E71ED4C596B95C10EA /* NSString+QCKSelectorName.m in Sources */,\n\t\t\t\tFDD34D9019B0A1A2BD782EDF6F91DFBC /* QCKDSL.m in Sources */,\n\t\t\t\tB12039684B5C118037A233D091B8E832 /* Quick-dummy.m in Sources */,\n\t\t\t\t9E605272EAFAAD942D11080DBE9CA985 /* QuickConfiguration.m in Sources */,\n\t\t\t\tB894AA08164D83B7428202D518B328CC /* QuickSelectedTestSuiteBuilder.swift in Sources */,\n\t\t\t\tC059821F074270276AE2F165C8A2FA05 /* QuickSpec.m in Sources */,\n\t\t\t\tBAEFDCBE1577A385DBE693446B7A43E4 /* QuickTestSuite.swift in Sources */,\n\t\t\t\t810870C32C831856AA9056F4FBEC1512 /* SuiteHooks.swift in Sources */,\n\t\t\t\t96E14093C91E8E1DB68029173EB8D45C /* URL+FileName.swift in Sources */,\n\t\t\t\t18B7E2BF4A724A3632E02E0AA3918844 /* World+DSL.swift in Sources */,\n\t\t\t\t514986E42D0AB20608C3841E710357D2 /* World.swift in Sources */,\n\t\t\t\t4C9F41FE904E314F55D857A80457CADC /* XCTestSuite+QuickTestSuiteBuilder.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXSourcesBuildPhase section */\n\n/* Begin PBXTargetDependency section */\n\t\t19808F654D7BD88967CF0E2657A11A8B /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\tname = Quick;\n\t\t\ttarget = 78DD5EB06C96485107D83E0183C84D70 /* Quick */;\n\t\t\ttargetProxy = 893F510CFF86D0DAA159249D0A0A391D /* PBXContainerItemProxy */;\n\t\t};\n\t\t41A8A32402B47D152FCBECD8CDC1284B /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\tname = \"PersistentStorageSerializable-iOS\";\n\t\t\ttarget = 810EE9CC72099DB8CE653C742754EC04 /* PersistentStorageSerializable-iOS */;\n\t\t\ttargetProxy = 4D2A85AFB5315F895ED8E20766C4B614 /* PBXContainerItemProxy */;\n\t\t};\n\t\t55F35D5044C2CC3CA3D74CF48AD3C182 /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\tname = \"Reflection-OSX\";\n\t\t\ttarget = 8302DFE25125E545B660DD41FB4DAD67 /* Reflection-OSX */;\n\t\t\ttargetProxy = B26D0DAB801E487506A768E6C181571B /* PBXContainerItemProxy */;\n\t\t};\n\t\tA423C4C7B0ED8254F9B7640584BB8DDE /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\tname = Nimble;\n\t\t\ttarget = 1321E318D10CFDC9F5B93A7952492CCD /* Nimble */;\n\t\t\ttargetProxy = 362C7D8F64D2069669D0361A894B07DD /* PBXContainerItemProxy */;\n\t\t};\n\t\tBAA858ED93A0AC61EAC4D3E4DF4753A9 /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\tname = \"Reflection-OSX\";\n\t\t\ttarget = 8302DFE25125E545B660DD41FB4DAD67 /* Reflection-OSX */;\n\t\t\ttargetProxy = D7611BE4244CB48B792553F5B14E126B /* PBXContainerItemProxy */;\n\t\t};\n\t\tBD475F43DE62EFCA9655DB3CEE4B0892 /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\tname = \"PersistentStorageSerializable-OSX\";\n\t\t\ttarget = B29FB212BE53D249CF080AF2FC6B42D5 /* PersistentStorageSerializable-OSX */;\n\t\t\ttargetProxy = 3C951DED5AEBD73277E58FD83A3DEAC1 /* PBXContainerItemProxy */;\n\t\t};\n\t\tC4FF8625191A1F15A28302281CEEE0EC /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\tname = \"Reflection-iOS\";\n\t\t\ttarget = F0CEC1F3C61AFCB9ADA5919C64B003CE /* Reflection-iOS */;\n\t\t\ttargetProxy = 830ED203775A09F2188E8B7988E838FD /* PBXContainerItemProxy */;\n\t\t};\n\t\tF98C13D6D032C95C1913D4AFE48511C3 /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\tname = \"Reflection-iOS\";\n\t\t\ttarget = F0CEC1F3C61AFCB9ADA5919C64B003CE /* Reflection-iOS */;\n\t\t\ttargetProxy = 27510798F8AD1C92D9FB66C516C94881 /* PBXContainerItemProxy */;\n\t\t};\n\t\tFA8AB738B2E50CEB9120D41F5442D7B4 /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\tname = \"Reflection-iOS\";\n\t\t\ttarget = F0CEC1F3C61AFCB9ADA5919C64B003CE /* Reflection-iOS */;\n\t\t\ttargetProxy = 0301C33F3EE8422150ECA9CD70476491 /* PBXContainerItemProxy */;\n\t\t};\n\t\tFF9952B7AE33F3727AC1E9BAC6F1B3FE /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\tname = \"PersistentStorageSerializable-iOS\";\n\t\t\ttarget = 810EE9CC72099DB8CE653C742754EC04 /* PersistentStorageSerializable-iOS */;\n\t\t\ttargetProxy = D49CF07FCC46DBEEE26DD631094D3918 /* PBXContainerItemProxy */;\n\t\t};\n/* End PBXTargetDependency section */\n\n/* Begin XCBuildConfiguration section */\n\t\t04020B9E0797A7C9CA7A101EA9312572 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 09C1992E68D8FC0C0241FC40D3899B5D /* Nimble.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_PREFIX_HEADER = \"Target Support Files/Nimble/Nimble-prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Nimble/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 8.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Nimble/Nimble.modulemap\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tPRODUCT_NAME = Nimble;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_VERSION = 3.0;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t29B40F1BF44286F6D16327598901710A /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 272AA0D36A2B77FCF978B083C7D8673C /* Pods-PersistentStorageSerializable_iOSExample.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Pods-PersistentStorageSerializable_iOSExample/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMACH_O_TYPE = staticlib;\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Pods-PersistentStorageSerializable_iOSExample/Pods-PersistentStorageSerializable_iOSExample.modulemap\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tOTHER_LDFLAGS = \"\";\n\t\t\t\tOTHER_LIBTOOLFLAGS = \"\";\n\t\t\t\tPODS_ROOT = \"$(SRCROOT)\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\";\n\t\t\t\tPRODUCT_NAME = Pods_PersistentStorageSerializable_iOSExample;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t4097F18CFBDFBE7EBAE95F0F173786CD /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = AB379B8B8259CE097D226FB13A1FC648 /* PersistentStorageSerializable-iOS.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_PREFIX_HEADER = \"Target Support Files/PersistentStorageSerializable-iOS/PersistentStorageSerializable-iOS-prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/PersistentStorageSerializable-iOS/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/PersistentStorageSerializable-iOS/PersistentStorageSerializable-iOS.modulemap\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tPRODUCT_NAME = PersistentStorageSerializable;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_VERSION = 3.0;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t5B9C2E6EB57249D6A19D3E25446FF8CE /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = B843A390CA2C46325E617109CE7C00B4 /* Pods-PersistentStorageSerializable_MacExample.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tCODE_SIGN_IDENTITY = \"-\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCOMBINE_HIDPI_IMAGES = YES;\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tFRAMEWORK_VERSION = A;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Pods-PersistentStorageSerializable_MacExample/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/../Frameworks @loader_path/Frameworks\";\n\t\t\t\tMACH_O_TYPE = staticlib;\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.11;\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Pods-PersistentStorageSerializable_MacExample/Pods-PersistentStorageSerializable_MacExample.modulemap\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tOTHER_LDFLAGS = \"\";\n\t\t\t\tOTHER_LIBTOOLFLAGS = \"\";\n\t\t\t\tPODS_ROOT = \"$(SRCROOT)\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\";\n\t\t\t\tPRODUCT_NAME = Pods_PersistentStorageSerializable_MacExample;\n\t\t\t\tSDKROOT = macosx;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t679D4439A688D71B8713513F5F23BFEA /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 449695496334292237F7ABF92C612C79 /* Reflection-OSX.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tCODE_SIGN_IDENTITY = \"-\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCOMBINE_HIDPI_IMAGES = YES;\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tFRAMEWORK_VERSION = A;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_PREFIX_HEADER = \"Target Support Files/Reflection-OSX/Reflection-OSX-prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Reflection-OSX/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/../Frameworks @loader_path/Frameworks\";\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.9;\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Reflection-OSX/Reflection-OSX.modulemap\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tPRODUCT_NAME = Reflection;\n\t\t\t\tSDKROOT = macosx;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_VERSION = 3.0;\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t6E8030017BE83EE002A2BF0A731EC174 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 1AD12082F1076D96DAC1FD9A39D116A7 /* PersistentStorageSerializable-OSX.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tCODE_SIGN_IDENTITY = \"-\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCOMBINE_HIDPI_IMAGES = YES;\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tFRAMEWORK_VERSION = A;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_PREFIX_HEADER = \"Target Support Files/PersistentStorageSerializable-OSX/PersistentStorageSerializable-OSX-prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/PersistentStorageSerializable-OSX/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/../Frameworks @loader_path/Frameworks\";\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.11;\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/PersistentStorageSerializable-OSX/PersistentStorageSerializable-OSX.modulemap\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = YES;\n\t\t\t\tPRODUCT_NAME = PersistentStorageSerializable;\n\t\t\t\tSDKROOT = macosx;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Onone\";\n\t\t\t\tSWIFT_VERSION = 3.0;\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t840DE5127F850E2FC63D976D4F8FAEAF /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 66EA1514CB8DCAB8B490F192914CCE88 /* Reflection-iOS.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_PREFIX_HEADER = \"Target Support Files/Reflection-iOS/Reflection-iOS-prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Reflection-iOS/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 8.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Reflection-iOS/Reflection-iOS.modulemap\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tPRODUCT_NAME = Reflection;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_VERSION = 3.0;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t89A950A3D7361552736E3DBD5B44A644 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\tCODE_SIGNING_REQUIRED = NO;\n\t\t\t\tCOPY_PHASE_STRIP = YES;\n\t\t\t\tENABLE_NS_ASSERTIONS = NO;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"POD_CONFIGURATION_RELEASE=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.11;\n\t\t\t\tPROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/;\n\t\t\t\tSTRIP_INSTALLED_PRODUCT = NO;\n\t\t\t\tSYMROOT = \"${SRCROOT}/../build\";\n\t\t\t\tVALIDATE_PRODUCT = YES;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t9C8CB576F6643F5F347D1FE51EBABB18 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = DDAB3E7FAA610141534F47F426392A3D /* Pods-PersistentStorageSerializable_Tests.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Pods-PersistentStorageSerializable_Tests/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMACH_O_TYPE = staticlib;\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Pods-PersistentStorageSerializable_Tests/Pods-PersistentStorageSerializable_Tests.modulemap\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tOTHER_LDFLAGS = \"\";\n\t\t\t\tOTHER_LIBTOOLFLAGS = \"\";\n\t\t\t\tPODS_ROOT = \"$(SRCROOT)\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\";\n\t\t\t\tPRODUCT_NAME = Pods_PersistentStorageSerializable_Tests;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t9F1EF704CEE8D5453E50B02894CA45C7 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 66EA1514CB8DCAB8B490F192914CCE88 /* Reflection-iOS.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_PREFIX_HEADER = \"Target Support Files/Reflection-iOS/Reflection-iOS-prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Reflection-iOS/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 8.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Reflection-iOS/Reflection-iOS.modulemap\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = YES;\n\t\t\t\tPRODUCT_NAME = Reflection;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Onone\";\n\t\t\t\tSWIFT_VERSION = 3.0;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tA154D3F3116FDFA6DFDF3AFCAC7D10DC /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = A4B56A6EED0B50275C67F754263391DA /* Pods-PersistentStorageSerializable_iOSExample.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Pods-PersistentStorageSerializable_iOSExample/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMACH_O_TYPE = staticlib;\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Pods-PersistentStorageSerializable_iOSExample/Pods-PersistentStorageSerializable_iOSExample.modulemap\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = YES;\n\t\t\t\tOTHER_LDFLAGS = \"\";\n\t\t\t\tOTHER_LIBTOOLFLAGS = \"\";\n\t\t\t\tPODS_ROOT = \"$(SRCROOT)\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\";\n\t\t\t\tPRODUCT_NAME = Pods_PersistentStorageSerializable_iOSExample;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Onone\";\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tA34E7C9DDEF127A6C381600D79627F6E /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 37FEFD4566840955F87EC36E6CFA43F1 /* Pods-PersistentStorageSerializable_MacExample.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tCODE_SIGN_IDENTITY = \"-\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCOMBINE_HIDPI_IMAGES = YES;\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tFRAMEWORK_VERSION = A;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Pods-PersistentStorageSerializable_MacExample/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/../Frameworks @loader_path/Frameworks\";\n\t\t\t\tMACH_O_TYPE = staticlib;\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.11;\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Pods-PersistentStorageSerializable_MacExample/Pods-PersistentStorageSerializable_MacExample.modulemap\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = YES;\n\t\t\t\tOTHER_LDFLAGS = \"\";\n\t\t\t\tOTHER_LIBTOOLFLAGS = \"\";\n\t\t\t\tPODS_ROOT = \"$(SRCROOT)\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\";\n\t\t\t\tPRODUCT_NAME = Pods_PersistentStorageSerializable_MacExample;\n\t\t\t\tSDKROOT = macosx;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Onone\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tAEDA68C220B5001B4330958EF4FBC0B4 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 449695496334292237F7ABF92C612C79 /* Reflection-OSX.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tCODE_SIGN_IDENTITY = \"-\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCOMBINE_HIDPI_IMAGES = YES;\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tFRAMEWORK_VERSION = A;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_PREFIX_HEADER = \"Target Support Files/Reflection-OSX/Reflection-OSX-prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Reflection-OSX/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/../Frameworks @loader_path/Frameworks\";\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.9;\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Reflection-OSX/Reflection-OSX.modulemap\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = YES;\n\t\t\t\tPRODUCT_NAME = Reflection;\n\t\t\t\tSDKROOT = macosx;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Onone\";\n\t\t\t\tSWIFT_VERSION = 3.0;\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tB2B17F20AE275AC92702CB806D8B274B /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 1AD12082F1076D96DAC1FD9A39D116A7 /* PersistentStorageSerializable-OSX.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tCODE_SIGN_IDENTITY = \"-\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCOMBINE_HIDPI_IMAGES = YES;\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tFRAMEWORK_VERSION = A;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_PREFIX_HEADER = \"Target Support Files/PersistentStorageSerializable-OSX/PersistentStorageSerializable-OSX-prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/PersistentStorageSerializable-OSX/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/../Frameworks @loader_path/Frameworks\";\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.11;\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/PersistentStorageSerializable-OSX/PersistentStorageSerializable-OSX.modulemap\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tPRODUCT_NAME = PersistentStorageSerializable;\n\t\t\t\tSDKROOT = macosx;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_VERSION = 3.0;\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\tBB9DA0E56B756C42D404519733DE368B /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 89CA505A4090716FCFBB675A171D4137 /* Quick.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_PREFIX_HEADER = \"Target Support Files/Quick/Quick-prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Quick/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 8.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Quick/Quick.modulemap\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tPRODUCT_NAME = Quick;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_VERSION = 3.0;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\tCD90A71C73D3EB0D8FE7F3BCF59812E2 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = B4F57D336E8CD0C8E07BF34E6FBCF86E /* Pods-PersistentStorageSerializable_Tests.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Pods-PersistentStorageSerializable_Tests/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMACH_O_TYPE = staticlib;\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Pods-PersistentStorageSerializable_Tests/Pods-PersistentStorageSerializable_Tests.modulemap\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = YES;\n\t\t\t\tOTHER_LDFLAGS = \"\";\n\t\t\t\tOTHER_LIBTOOLFLAGS = \"\";\n\t\t\t\tPODS_ROOT = \"$(SRCROOT)\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\";\n\t\t\t\tPRODUCT_NAME = Pods_PersistentStorageSerializable_Tests;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Onone\";\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tD7B9076A9C78E18A8605B3758EEE0B71 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 09C1992E68D8FC0C0241FC40D3899B5D /* Nimble.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_PREFIX_HEADER = \"Target Support Files/Nimble/Nimble-prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Nimble/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 8.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Nimble/Nimble.modulemap\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = YES;\n\t\t\t\tPRODUCT_NAME = Nimble;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Onone\";\n\t\t\t\tSWIFT_VERSION = 3.0;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tDE1F24C5EFD45C271798A6E55CB63E92 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\tCODE_SIGNING_REQUIRED = NO;\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tENABLE_TESTABILITY = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_DYNAMIC_NO_PIC = NO;\n\t\t\t\tGCC_OPTIMIZATION_LEVEL = 0;\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"POD_CONFIGURATION_DEBUG=1\",\n\t\t\t\t\t\"DEBUG=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tGCC_SYMBOLS_PRIVATE_EXTERN = NO;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.11;\n\t\t\t\tONLY_ACTIVE_ARCH = YES;\n\t\t\t\tPROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/;\n\t\t\t\tSTRIP_INSTALLED_PRODUCT = NO;\n\t\t\t\tSYMROOT = \"${SRCROOT}/../build\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tE6010D63EC96090E53B0C2AC98D40EE4 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 89CA505A4090716FCFBB675A171D4137 /* Quick.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_PREFIX_HEADER = \"Target Support Files/Quick/Quick-prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Quick/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 8.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Quick/Quick.modulemap\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = YES;\n\t\t\t\tPRODUCT_NAME = Quick;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Onone\";\n\t\t\t\tSWIFT_VERSION = 3.0;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tE6E38F573FCFA445F980B3CD803ECE08 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = AB379B8B8259CE097D226FB13A1FC648 /* PersistentStorageSerializable-iOS.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_PREFIX_HEADER = \"Target Support Files/PersistentStorageSerializable-iOS/PersistentStorageSerializable-iOS-prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/PersistentStorageSerializable-iOS/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/PersistentStorageSerializable-iOS/PersistentStorageSerializable-iOS.modulemap\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = YES;\n\t\t\t\tPRODUCT_NAME = PersistentStorageSerializable;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Onone\";\n\t\t\t\tSWIFT_VERSION = 3.0;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n/* End XCBuildConfiguration section */\n\n/* Begin XCConfigurationList section */\n\t\t0FF05E191588DF44EB64DDDBD0AECCD0 /* Build configuration list for PBXNativeTarget \"PersistentStorageSerializable-OSX\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t6E8030017BE83EE002A2BF0A731EC174 /* Debug */,\n\t\t\t\tB2B17F20AE275AC92702CB806D8B274B /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject \"Pods\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tDE1F24C5EFD45C271798A6E55CB63E92 /* Debug */,\n\t\t\t\t89A950A3D7361552736E3DBD5B44A644 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t2FAF241D791923DB8E7AE90EDE7027C3 /* Build configuration list for PBXNativeTarget \"Pods-PersistentStorageSerializable_iOSExample\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tA154D3F3116FDFA6DFDF3AFCAC7D10DC /* Debug */,\n\t\t\t\t29B40F1BF44286F6D16327598901710A /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t323621E0B680E87AA6892CEE3C97081D /* Build configuration list for PBXNativeTarget \"Quick\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tE6010D63EC96090E53B0C2AC98D40EE4 /* Debug */,\n\t\t\t\tBB9DA0E56B756C42D404519733DE368B /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t6CDCABBEB0265ED19E8A8CF567DACD69 /* Build configuration list for PBXNativeTarget \"Reflection-iOS\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t9F1EF704CEE8D5453E50B02894CA45C7 /* Debug */,\n\t\t\t\t840DE5127F850E2FC63D976D4F8FAEAF /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t83E8B094BB06F88FAA1D579ECE15F50A /* Build configuration list for PBXNativeTarget \"PersistentStorageSerializable-iOS\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tE6E38F573FCFA445F980B3CD803ECE08 /* Debug */,\n\t\t\t\t4097F18CFBDFBE7EBAE95F0F173786CD /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tB1DBAFB75A3AF98C8C6B0863BDC7A2E3 /* Build configuration list for PBXNativeTarget \"Nimble\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tD7B9076A9C78E18A8605B3758EEE0B71 /* Debug */,\n\t\t\t\t04020B9E0797A7C9CA7A101EA9312572 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tD92D3AFFD976E7382A2EC7E51CCBA37C /* Build configuration list for PBXNativeTarget \"Pods-PersistentStorageSerializable_MacExample\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tA34E7C9DDEF127A6C381600D79627F6E /* Debug */,\n\t\t\t\t5B9C2E6EB57249D6A19D3E25446FF8CE /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tE224EA756B2648B2E5AB2028E714FD79 /* Build configuration list for PBXNativeTarget \"Pods-PersistentStorageSerializable_Tests\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tCD90A71C73D3EB0D8FE7F3BCF59812E2 /* Debug */,\n\t\t\t\t9C8CB576F6643F5F347D1FE51EBABB18 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tE9E41A62CDC5D28F3772CFCB3460DFD4 /* Build configuration list for PBXNativeTarget \"Reflection-OSX\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tAEDA68C220B5001B4330958EF4FBC0B4 /* Debug */,\n\t\t\t\t679D4439A688D71B8713513F5F23BFEA /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n/* End XCConfigurationList section */\n\t};\n\trootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */;\n}\n"
  },
  {
    "path": "Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"self:\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/PersistentStorageSerializable-OSX.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"0700\"\n   version = \"1.3\">\n   <BuildAction\n      parallelizeBuildables = \"YES\"\n      buildImplicitDependencies = \"YES\">\n      <BuildActionEntries>\n         <BuildActionEntry\n            buildForTesting = \"YES\"\n            buildForRunning = \"YES\"\n            buildForProfiling = \"YES\"\n            buildForArchiving = \"YES\"\n            buildForAnalyzing = \"YES\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"B29FB212BE53D249CF080AF2FC6B42D5\"\n               BuildableName = \"PersistentStorageSerializable.framework\"\n               BlueprintName = \"PersistentStorageSerializable-OSX\"\n               ReferencedContainer = \"container:Pods.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\">\n      <Testables>\n      </Testables>\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </TestAction>\n   <LaunchAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      debugServiceExtension = \"internal\"\n      allowLocationSimulation = \"YES\">\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"B29FB212BE53D249CF080AF2FC6B42D5\"\n            BuildableName = \"PersistentStorageSerializable.framework\"\n            BlueprintName = \"PersistentStorageSerializable-OSX\"\n            ReferencedContainer = \"container:Pods.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </LaunchAction>\n   <ProfileAction\n      buildConfiguration = \"Release\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      debugDocumentVersioning = \"YES\">\n   </ProfileAction>\n   <AnalyzeAction\n      buildConfiguration = \"Debug\">\n   </AnalyzeAction>\n   <ArchiveAction\n      buildConfiguration = \"Release\"\n      revealArchiveInOrganizer = \"YES\">\n   </ArchiveAction>\n</Scheme>\n"
  },
  {
    "path": "Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/PersistentStorageSerializable-iOS.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"0700\"\n   version = \"1.3\">\n   <BuildAction\n      parallelizeBuildables = \"YES\"\n      buildImplicitDependencies = \"YES\">\n      <BuildActionEntries>\n         <BuildActionEntry\n            buildForTesting = \"YES\"\n            buildForRunning = \"YES\"\n            buildForProfiling = \"YES\"\n            buildForArchiving = \"YES\"\n            buildForAnalyzing = \"YES\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"810EE9CC72099DB8CE653C742754EC04\"\n               BuildableName = \"PersistentStorageSerializable.framework\"\n               BlueprintName = \"PersistentStorageSerializable-iOS\"\n               ReferencedContainer = \"container:Pods.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\">\n      <Testables>\n      </Testables>\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </TestAction>\n   <LaunchAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      debugServiceExtension = \"internal\"\n      allowLocationSimulation = \"YES\">\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"810EE9CC72099DB8CE653C742754EC04\"\n            BuildableName = \"PersistentStorageSerializable.framework\"\n            BlueprintName = \"PersistentStorageSerializable-iOS\"\n            ReferencedContainer = \"container:Pods.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </LaunchAction>\n   <ProfileAction\n      buildConfiguration = \"Release\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      debugDocumentVersioning = \"YES\">\n   </ProfileAction>\n   <AnalyzeAction\n      buildConfiguration = \"Debug\">\n   </AnalyzeAction>\n   <ArchiveAction\n      buildConfiguration = \"Release\"\n      revealArchiveInOrganizer = \"YES\">\n   </ArchiveAction>\n</Scheme>\n"
  },
  {
    "path": "Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Reflection-OSX.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"0700\"\n   version = \"1.3\">\n   <BuildAction\n      parallelizeBuildables = \"YES\"\n      buildImplicitDependencies = \"YES\">\n      <BuildActionEntries>\n         <BuildActionEntry\n            buildForTesting = \"YES\"\n            buildForRunning = \"YES\"\n            buildForProfiling = \"YES\"\n            buildForArchiving = \"YES\"\n            buildForAnalyzing = \"YES\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"8302DFE25125E545B660DD41FB4DAD67\"\n               BuildableName = \"Reflection.framework\"\n               BlueprintName = \"Reflection-OSX\"\n               ReferencedContainer = \"container:Pods.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\">\n      <Testables>\n      </Testables>\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </TestAction>\n   <LaunchAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      debugServiceExtension = \"internal\"\n      allowLocationSimulation = \"YES\">\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"8302DFE25125E545B660DD41FB4DAD67\"\n            BuildableName = \"Reflection.framework\"\n            BlueprintName = \"Reflection-OSX\"\n            ReferencedContainer = \"container:Pods.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </LaunchAction>\n   <ProfileAction\n      buildConfiguration = \"Release\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      debugDocumentVersioning = \"YES\">\n   </ProfileAction>\n   <AnalyzeAction\n      buildConfiguration = \"Debug\">\n   </AnalyzeAction>\n   <ArchiveAction\n      buildConfiguration = \"Release\"\n      revealArchiveInOrganizer = \"YES\">\n   </ArchiveAction>\n</Scheme>\n"
  },
  {
    "path": "Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Reflection-iOS.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"0700\"\n   version = \"1.3\">\n   <BuildAction\n      parallelizeBuildables = \"YES\"\n      buildImplicitDependencies = \"YES\">\n      <BuildActionEntries>\n         <BuildActionEntry\n            buildForTesting = \"YES\"\n            buildForRunning = \"YES\"\n            buildForProfiling = \"YES\"\n            buildForArchiving = \"YES\"\n            buildForAnalyzing = \"YES\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"F0CEC1F3C61AFCB9ADA5919C64B003CE\"\n               BuildableName = \"Reflection.framework\"\n               BlueprintName = \"Reflection-iOS\"\n               ReferencedContainer = \"container:Pods.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\">\n      <Testables>\n      </Testables>\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </TestAction>\n   <LaunchAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      debugServiceExtension = \"internal\"\n      allowLocationSimulation = \"YES\">\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"F0CEC1F3C61AFCB9ADA5919C64B003CE\"\n            BuildableName = \"Reflection.framework\"\n            BlueprintName = \"Reflection-iOS\"\n            ReferencedContainer = \"container:Pods.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </LaunchAction>\n   <ProfileAction\n      buildConfiguration = \"Release\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      debugDocumentVersioning = \"YES\">\n   </ProfileAction>\n   <AnalyzeAction\n      buildConfiguration = \"Debug\">\n   </AnalyzeAction>\n   <ArchiveAction\n      buildConfiguration = \"Release\"\n      revealArchiveInOrganizer = \"YES\">\n   </ArchiveAction>\n</Scheme>\n"
  },
  {
    "path": "Example/Pods/Quick/LICENSE",
    "content": "Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"{}\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright 2014, Quick Team\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n"
  },
  {
    "path": "Example/Pods/Quick/README.md",
    "content": "![](http://f.cl.ly/items/0r1E192C1R0b2g2Q3h2w/QuickLogo_Color.png)\n\n[![Build Status](https://travis-ci.org/Quick/Quick.svg?branch=master)](https://travis-ci.org/Quick/Quick)\n\nQuick is a behavior-driven development framework for Swift and Objective-C.\nInspired by [RSpec](https://github.com/rspec/rspec), [Specta](https://github.com/specta/specta), and [Ginkgo](https://github.com/onsi/ginkgo).\n\n![](https://raw.githubusercontent.com/Quick/Assets/master/Screenshots/QuickSpec%20screenshot.png)\n\n```swift\n// Swift\n\nimport Quick\nimport Nimble\n\nclass TableOfContentsSpec: QuickSpec {\n  override func spec() {\n    describe(\"the 'Documentation' directory\") {\n      it(\"has everything you need to get started\") {\n        let sections = Directory(\"Documentation\").sections\n        expect(sections).to(contain(\"Organized Tests with Quick Examples and Example Groups\"))\n        expect(sections).to(contain(\"Installing Quick\"))\n      }\n\n      context(\"if it doesn't have what you're looking for\") {\n        it(\"needs to be updated\") {\n          let you = You(awesome: true)\n          expect{you.submittedAnIssue}.toEventually(beTruthy())\n        }\n      }\n    }\n  }\n}\n```\n#### Nimble\nQuick comes together with [Nimble](https://github.com/Quick/Nimble) — a matcher framework for your tests. You can learn why `XCTAssert()` statements make your expectations unclear and how to fix that using Nimble assertions [here](./Documentation/en-us/NimbleAssertions.md).\n\n## Swift Version\n\nCertain versions of Quick and Nimble only support certain versions of Swift. Depending on which version of Swift your project uses, you should use specific versions of Quick and Nimble. Use the table below to determine which versions of Quick and Nimble are compatible with your project.\n\n|Swift version        |Quick version   |Nimble version |\n|:--------------------|:---------------|:--------------|\n|Swift 3              |v0.10.0 or later|v5.0.0 or later|\n|Swift 2.2 / Swift 2.3|v0.9.3          |v4.1.0         |\n\n## Documentation\n\nAll documentation can be found in the [Documentation folder](./Documentation), including [detailed installation instructions](./Documentation/en-us/InstallingQuick.md) for CocoaPods, Carthage, Git submodules, and more. For example, you can install Quick and [Nimble](https://github.com/Quick/Nimble) using CocoaPods by adding the following to your Podfile:\n\n```rb\n# Podfile\n\nuse_frameworks!\n\ndef testing_pods\n    pod 'Quick'\n    pod 'Nimble'\nend\n\ntarget 'MyTests' do\n    testing_pods\nend\n\ntarget 'MyUITests' do\n    testing_pods\nend\n```\n\n## Projects using Quick\n\nMany apps use both Quick and Nimble however, as they are not included in the app binary, neither appear in “Top Used Libraries” blog posts. Therefore, it would be greatly appreciated to remind contributors that their efforts are valued by compiling a list of organizations and projects that use them. \n\nDoes your organization or project use Quick and Nimble? If yes, [please add your project to the list](https://github.com/Quick/Quick/wiki/Projects-using-Quick).\n\n## Who uses Quick\n\nSimilar to projects using Quick, it would be nice to hear why people use Quick and Nimble. Are there features you love? Are there features that are just okay? Are there some features we have that no one uses?\n\nHave something positive to say about Quick (or Nimble)? If yes, [provide a testimonial here](https://github.com/Quick/Quick/wiki/Who-uses-Quick).\n\n\n## License\n\nApache 2.0 license. See the [`LICENSE`](LICENSE) file for details.\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/Quick/Callsite.swift",
    "content": "import Foundation\n\n/**\n    An object encapsulating the file and line number at which\n    a particular example is defined.\n*/\nfinal public class Callsite: NSObject {\n    /**\n        The absolute path of the file in which an example is defined.\n    */\n    public let file: String\n\n    /**\n        The line number on which an example is defined.\n    */\n    public let line: UInt\n\n    internal init(file: String, line: UInt) {\n        self.file = file\n        self.line = line\n    }\n}\n\n/**\n    Returns a boolean indicating whether two Callsite objects are equal.\n    If two callsites are in the same file and on the same line, they must be equal.\n*/\npublic func == (lhs: Callsite, rhs: Callsite) -> Bool {\n    return lhs.file == rhs.file && lhs.line == rhs.line\n}\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/Quick/Configuration/Configuration.swift",
    "content": "import Foundation\n\n/**\n    A closure that temporarily exposes a Configuration object within\n    the scope of the closure.\n*/\npublic typealias QuickConfigurer = (_ configuration: Configuration) -> ()\n\n/**\n    A closure that, given metadata about an example, returns a boolean value\n    indicating whether that example should be run.\n*/\npublic typealias ExampleFilter = (_ example: Example) -> Bool\n\n/**\n    A configuration encapsulates various options you can use\n    to configure Quick's behavior.\n*/\nfinal public class Configuration: NSObject {\n    internal let exampleHooks = ExampleHooks()\n    internal let suiteHooks = SuiteHooks()\n    internal var exclusionFilters: [ExampleFilter] = [ { example in\n        if let pending = example.filterFlags[Filter.pending] {\n            return pending\n        } else {\n            return false\n        }\n    }]\n    internal var inclusionFilters: [ExampleFilter] = [ { example in\n        if let focused = example.filterFlags[Filter.focused] {\n            return focused\n        } else {\n            return false\n        }\n    }]\n\n    /**\n        Run all examples if none match the configured filters. True by default.\n    */\n    public var runAllWhenEverythingFiltered = true\n\n    /**\n        Registers an inclusion filter.\n\n        All examples are filtered using all inclusion filters.\n        The remaining examples are run. If no examples remain, all examples are run.\n\n        - parameter filter: A filter that, given an example, returns a value indicating\n                       whether that example should be included in the examples\n                       that are run.\n    */\n    public func include(_ filter: @escaping ExampleFilter) {\n        inclusionFilters.append(filter)\n    }\n\n    /**\n        Registers an exclusion filter.\n\n        All examples that remain after being filtered by the inclusion filters are\n        then filtered via all exclusion filters.\n\n        - parameter filter: A filter that, given an example, returns a value indicating\n                       whether that example should be excluded from the examples\n                       that are run.\n    */\n    public func exclude(_ filter: @escaping ExampleFilter) {\n        exclusionFilters.append(filter)\n    }\n\n    /**\n        Identical to Quick.Configuration.beforeEach, except the closure is\n        provided with metadata on the example that the closure is being run\n        prior to.\n    */\n#if _runtime(_ObjC)\n    @objc(beforeEachWithMetadata:)\n    public func beforeEach(_ closure: @escaping BeforeExampleWithMetadataClosure) {\n        exampleHooks.appendBefore(closure)\n    }\n#else\n    public func beforeEach(_ closure: @escaping BeforeExampleWithMetadataClosure) {\n        exampleHooks.appendBefore(closure)\n    }\n#endif\n\n    /**\n        Like Quick.DSL.beforeEach, this configures Quick to execute the\n        given closure before each example that is run. The closure\n        passed to this method is executed before each example Quick runs,\n        globally across the test suite. You may call this method multiple\n        times across mulitple +[QuickConfigure configure:] methods in order\n        to define several closures to run before each example.\n\n        Note that, since Quick makes no guarantee as to the order in which\n        +[QuickConfiguration configure:] methods are evaluated, there is no\n        guarantee as to the order in which beforeEach closures are evaluated\n        either. Mulitple beforeEach defined on a single configuration, however,\n        will be executed in the order they're defined.\n\n        - parameter closure: The closure to be executed before each example\n                        in the test suite.\n    */\n    public func beforeEach(_ closure: @escaping BeforeExampleClosure) {\n        exampleHooks.appendBefore(closure)\n    }\n\n    /**\n        Identical to Quick.Configuration.afterEach, except the closure\n        is provided with metadata on the example that the closure is being\n        run after.\n    */\n#if _runtime(_ObjC)\n    @objc(afterEachWithMetadata:)\n    public func afterEach(_ closure: @escaping AfterExampleWithMetadataClosure) {\n        exampleHooks.appendAfter(closure)\n    }\n#else\n    public func afterEach(_ closure: @escaping AfterExampleWithMetadataClosure) {\n        exampleHooks.appendAfter(closure)\n    }\n#endif\n\n    /**\n        Like Quick.DSL.afterEach, this configures Quick to execute the\n        given closure after each example that is run. The closure\n        passed to this method is executed after each example Quick runs,\n        globally across the test suite. You may call this method multiple\n        times across mulitple +[QuickConfigure configure:] methods in order\n        to define several closures to run after each example.\n\n        Note that, since Quick makes no guarantee as to the order in which\n        +[QuickConfiguration configure:] methods are evaluated, there is no\n        guarantee as to the order in which afterEach closures are evaluated\n        either. Mulitple afterEach defined on a single configuration, however,\n        will be executed in the order they're defined.\n\n        - parameter closure: The closure to be executed before each example\n                        in the test suite.\n    */\n    public func afterEach(_ closure: @escaping AfterExampleClosure) {\n        exampleHooks.appendAfter(closure)\n    }\n\n    /**\n        Like Quick.DSL.beforeSuite, this configures Quick to execute\n        the given closure prior to any and all examples that are run.\n        The two methods are functionally equivalent.\n    */\n    public func beforeSuite(_ closure: @escaping BeforeSuiteClosure) {\n        suiteHooks.appendBefore(closure)\n    }\n\n    /**\n        Like Quick.DSL.afterSuite, this configures Quick to execute\n        the given closure after all examples have been run.\n        The two methods are functionally equivalent.\n    */\n    public func afterSuite(_ closure: @escaping AfterSuiteClosure) {\n        suiteHooks.appendAfter(closure)\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/Quick/DSL/DSL.swift",
    "content": "/**\n    Defines a closure to be run prior to any examples in the test suite.\n    You may define an unlimited number of these closures, but there is no\n    guarantee as to the order in which they're run.\n\n    If the test suite crashes before the first example is run, this closure\n    will not be executed.\n\n    - parameter closure: The closure to be run prior to any examples in the test suite.\n*/\npublic func beforeSuite(_ closure: @escaping BeforeSuiteClosure) {\n    World.sharedWorld.beforeSuite(closure)\n}\n\n/**\n    Defines a closure to be run after all of the examples in the test suite.\n    You may define an unlimited number of these closures, but there is no\n    guarantee as to the order in which they're run.\n\n    If the test suite crashes before all examples are run, this closure\n    will not be executed.\n\n    - parameter closure: The closure to be run after all of the examples in the test suite.\n*/\npublic func afterSuite(_ closure: @escaping AfterSuiteClosure) {\n    World.sharedWorld.afterSuite(closure)\n}\n\n/**\n    Defines a group of shared examples. These examples can be re-used in several locations\n    by using the `itBehavesLike` function.\n\n    - parameter name: The name of the shared example group. This must be unique across all shared example\n                 groups defined in a test suite.\n    - parameter closure: A closure containing the examples. This behaves just like an example group defined\n                    using `describe` or `context`--the closure may contain any number of `beforeEach`\n                    and `afterEach` closures, as well as any number of examples (defined using `it`).\n*/\npublic func sharedExamples(_ name: String, closure: @escaping () -> ()) {\n    World.sharedWorld.sharedExamples(name, closure: { (NSDictionary) in closure() })\n}\n\n/**\n    Defines a group of shared examples. These examples can be re-used in several locations\n    by using the `itBehavesLike` function.\n\n    - parameter name: The name of the shared example group. This must be unique across all shared example\n                 groups defined in a test suite.\n    - parameter closure: A closure containing the examples. This behaves just like an example group defined\n                    using `describe` or `context`--the closure may contain any number of `beforeEach`\n                    and `afterEach` closures, as well as any number of examples (defined using `it`).\n\n                    The closure takes a SharedExampleContext as an argument. This context is a function\n                    that can be executed to retrieve parameters passed in via an `itBehavesLike` function.\n*/\npublic func sharedExamples(_ name: String, closure: @escaping SharedExampleClosure) {\n    World.sharedWorld.sharedExamples(name, closure: closure)\n}\n\n/**\n    Defines an example group. Example groups are logical groupings of examples.\n    Example groups can share setup and teardown code.\n\n    - parameter description: An arbitrary string describing the example group.\n    - parameter closure: A closure that can contain other examples.\n    - parameter flags: A mapping of string keys to booleans that can be used to filter examples or example groups.\n*/\npublic func describe(_ description: String, flags: FilterFlags = [:], closure: () -> ()) {\n    World.sharedWorld.describe(description, flags: flags, closure: closure)\n}\n\n/**\n    Defines an example group. Equivalent to `describe`.\n*/\npublic func context(_ description: String, flags: FilterFlags = [:], closure: () -> ()) {\n    World.sharedWorld.context(description, flags: flags, closure: closure)\n}\n\n/**\n    Defines a closure to be run prior to each example in the current example\n    group. This closure is not run for pending or otherwise disabled examples.\n    An example group may contain an unlimited number of beforeEach. They'll be\n    run in the order they're defined, but you shouldn't rely on that behavior.\n\n    - parameter closure: The closure to be run prior to each example.\n*/\npublic func beforeEach(_ closure: @escaping BeforeExampleClosure) {\n    World.sharedWorld.beforeEach(closure)\n}\n\n/**\n    Identical to Quick.DSL.beforeEach, except the closure is provided with\n    metadata on the example that the closure is being run prior to.\n*/\npublic func beforeEach(_ closure: @escaping BeforeExampleWithMetadataClosure) {\n    World.sharedWorld.beforeEach(closure: closure)\n}\n\n/**\n    Defines a closure to be run after each example in the current example\n    group. This closure is not run for pending or otherwise disabled examples.\n    An example group may contain an unlimited number of afterEach. They'll be\n    run in the order they're defined, but you shouldn't rely on that behavior.\n\n    - parameter closure: The closure to be run after each example.\n*/\npublic func afterEach(_ closure: @escaping AfterExampleClosure) {\n    World.sharedWorld.afterEach(closure)\n}\n\n/**\n    Identical to Quick.DSL.afterEach, except the closure is provided with\n    metadata on the example that the closure is being run after.\n*/\npublic func afterEach(_ closure: @escaping AfterExampleWithMetadataClosure) {\n    World.sharedWorld.afterEach(closure: closure)\n}\n\n/**\n    Defines an example. Examples use assertions to demonstrate how code should\n    behave. These are like \"tests\" in XCTest.\n\n    - parameter description: An arbitrary string describing what the example is meant to specify.\n    - parameter closure: A closure that can contain assertions.\n    - parameter flags: A mapping of string keys to booleans that can be used to filter examples or example groups.\n                  Empty by default.\n    - parameter file: The absolute path to the file containing the example. A sensible default is provided.\n    - parameter line: The line containing the example. A sensible default is provided.\n*/\npublic func it(_ description: String, flags: FilterFlags = [:], file: String = #file, line: UInt = #line, closure: @escaping () -> ()) {\n    World.sharedWorld.it(description, flags: flags, file: file, line: line, closure: closure)\n}\n\n/**\n    Inserts the examples defined using a `sharedExamples` function into the current example group.\n    The shared examples are executed at this location, as if they were written out manually.\n\n    - parameter name: The name of the shared examples group to be executed. This must be identical to the\n                 name of a shared examples group defined using `sharedExamples`. If there are no shared\n                 examples that match the name given, an exception is thrown and the test suite will crash.\n    - parameter flags: A mapping of string keys to booleans that can be used to filter examples or example groups.\n                  Empty by default.\n    - parameter file: The absolute path to the file containing the current example group. A sensible default is provided.\n    - parameter line: The line containing the current example group. A sensible default is provided.\n*/\npublic func itBehavesLike(_ name: String, flags: FilterFlags = [:], file: String = #file, line: UInt = #line) {\n    itBehavesLike(name, flags: flags, file: file, line: line, sharedExampleContext: { return [:] })\n}\n\n/**\n    Inserts the examples defined using a `sharedExamples` function into the current example group.\n    The shared examples are executed at this location, as if they were written out manually.\n    This function also passes those shared examples a context that can be evaluated to give the shared\n    examples extra information on the subject of the example.\n\n    - parameter name: The name of the shared examples group to be executed. This must be identical to the\n                 name of a shared examples group defined using `sharedExamples`. If there are no shared\n                 examples that match the name given, an exception is thrown and the test suite will crash.\n    - parameter sharedExampleContext: A closure that, when evaluated, returns key-value pairs that provide the\n                                 shared examples with extra information on the subject of the example.\n    - parameter flags: A mapping of string keys to booleans that can be used to filter examples or example groups.\n                  Empty by default.\n    - parameter file: The absolute path to the file containing the current example group. A sensible default is provided.\n    - parameter line: The line containing the current example group. A sensible default is provided.\n*/\npublic func itBehavesLike(_ name: String, flags: FilterFlags = [:], file: String = #file, line: UInt = #line, sharedExampleContext: @escaping SharedExampleContext) {\n    World.sharedWorld.itBehavesLike(name, sharedExampleContext: sharedExampleContext, flags: flags, file: file, line: line)\n}\n\n/**\n    Defines an example or example group that should not be executed. Use `pending` to temporarily disable\n    examples or groups that should not be run yet.\n\n    - parameter description: An arbitrary string describing the example or example group.\n    - parameter closure: A closure that will not be evaluated.\n*/\npublic func pending(_ description: String, closure: () -> ()) {\n    World.sharedWorld.pending(description, closure: closure)\n}\n\n/**\n    Use this to quickly mark a `describe` closure as pending.\n    This disables all examples within the closure.\n*/\npublic func xdescribe(_ description: String, flags: FilterFlags, closure: () -> ()) {\n    World.sharedWorld.xdescribe(description, flags: flags, closure: closure)\n}\n\n/**\n    Use this to quickly mark a `context` closure as pending.\n    This disables all examples within the closure.\n*/\npublic func xcontext(_ description: String, flags: FilterFlags, closure: () -> ()) {\n    xdescribe(description, flags: flags, closure: closure)\n}\n\n/**\n    Use this to quickly mark an `it` closure as pending.\n    This disables the example and ensures the code within the closure is never run.\n*/\npublic func xit(_ description: String, flags: FilterFlags = [:], file: String = #file, line: UInt = #line, closure: @escaping () -> ()) {\n    World.sharedWorld.xit(description, flags: flags, file: file, line: line, closure: closure)\n}\n\n/**\n    Use this to quickly focus a `describe` closure, focusing the examples in the closure.\n    If any examples in the test suite are focused, only those examples are executed.\n    This trumps any explicitly focused or unfocused examples within the closure--they are all treated as focused.\n*/\npublic func fdescribe(_ description: String, flags: FilterFlags = [:], closure: () -> ()) {\n    World.sharedWorld.fdescribe(description, flags: flags, closure: closure)\n}\n\n/**\n    Use this to quickly focus a `context` closure. Equivalent to `fdescribe`.\n*/\npublic func fcontext(_ description: String, flags: FilterFlags = [:], closure: () -> ()) {\n    fdescribe(description, flags: flags, closure: closure)\n}\n\n/**\n    Use this to quickly focus an `it` closure, focusing the example.\n    If any examples in the test suite are focused, only those examples are executed.\n*/\npublic func fit(_ description: String, flags: FilterFlags = [:], file: String = #file, line: UInt = #line, closure: @escaping () -> ()) {\n    World.sharedWorld.fit(description, flags: flags, file: file, line: line, closure: closure)\n}\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/Quick/DSL/World+DSL.swift",
    "content": "import Foundation\n\n/**\n    Adds methods to World to support top-level DSL functions (Swift) and\n    macros (Objective-C). These functions map directly to the DSL that test\n    writers use in their specs.\n*/\nextension World {\n    internal func beforeSuite(_ closure: @escaping BeforeSuiteClosure) {\n        suiteHooks.appendBefore(closure)\n    }\n\n    internal func afterSuite(_ closure: @escaping AfterSuiteClosure) {\n        suiteHooks.appendAfter(closure)\n    }\n\n    internal func sharedExamples(_ name: String, closure: @escaping SharedExampleClosure) {\n        registerSharedExample(name, closure: closure)\n    }\n\n    internal func describe(_ description: String, flags: FilterFlags, closure: () -> ()) {\n        guard currentExampleMetadata == nil else {\n            raiseError(\"'describe' cannot be used inside '\\(currentPhase)', 'describe' may only be used inside 'context' or 'describe'. \")\n        }\n        guard currentExampleGroup != nil else {\n            raiseError(\"Error: example group was not created by its parent QuickSpec spec. Check that describe() or context() was used in QuickSpec.spec() and not a more general context (i.e. an XCTestCase test)\")\n        }\n        let group = ExampleGroup(description: description, flags: flags)\n        currentExampleGroup.appendExampleGroup(group)\n        performWithCurrentExampleGroup(group, closure: closure)\n    }\n\n    internal func context(_ description: String, flags: FilterFlags, closure: () -> ()) {\n        guard currentExampleMetadata == nil else {\n            raiseError(\"'context' cannot be used inside '\\(currentPhase)', 'context' may only be used inside 'context' or 'describe'. \")\n        }\n        self.describe(description, flags: flags, closure: closure)\n    }\n\n    internal func fdescribe(_ description: String, flags: FilterFlags, closure: () -> ()) {\n        var focusedFlags = flags\n        focusedFlags[Filter.focused] = true\n        self.describe(description, flags: focusedFlags, closure: closure)\n    }\n\n    internal func xdescribe(_ description: String, flags: FilterFlags, closure: () -> ()) {\n        var pendingFlags = flags\n        pendingFlags[Filter.pending] = true\n        self.describe(description, flags: pendingFlags, closure: closure)\n    }\n\n    internal func beforeEach(_ closure: @escaping BeforeExampleClosure) {\n        guard currentExampleMetadata == nil else {\n            raiseError(\"'beforeEach' cannot be used inside '\\(currentPhase)', 'beforeEach' may only be used inside 'context' or 'describe'. \")\n        }\n        currentExampleGroup.hooks.appendBefore(closure)\n    }\n\n#if _runtime(_ObjC)\n    @objc(beforeEachWithMetadata:)\n    internal func beforeEach(closure: @escaping BeforeExampleWithMetadataClosure) {\n        currentExampleGroup.hooks.appendBefore(closure)\n    }\n#else\n    internal func beforeEach(closure: @escaping BeforeExampleWithMetadataClosure) {\n        currentExampleGroup.hooks.appendBefore(closure)\n    }\n#endif\n\n    internal func afterEach(_ closure: @escaping AfterExampleClosure) {\n        guard currentExampleMetadata == nil else {\n            raiseError(\"'afterEach' cannot be used inside '\\(currentPhase)', 'afterEach' may only be used inside 'context' or 'describe'. \")\n        }\n        currentExampleGroup.hooks.appendAfter(closure)\n    }\n\n#if _runtime(_ObjC)\n    @objc(afterEachWithMetadata:)\n    internal func afterEach(closure: @escaping AfterExampleWithMetadataClosure) {\n        currentExampleGroup.hooks.appendAfter(closure)\n    }\n#else\n    internal func afterEach(closure: @escaping AfterExampleWithMetadataClosure) {\n        currentExampleGroup.hooks.appendAfter(closure)\n    }\n#endif\n\n    internal func it(_ description: String, flags: FilterFlags, file: String, line: UInt, closure: @escaping () -> ()) {\n        if beforesCurrentlyExecuting {\n            raiseError(\"'it' cannot be used inside 'beforeEach', 'it' may only be used inside 'context' or 'describe'. \")\n        }\n        if aftersCurrentlyExecuting {\n            raiseError(\"'it' cannot be used inside 'afterEach', 'it' may only be used inside 'context' or 'describe'. \")\n        }\n        guard currentExampleMetadata == nil else {\n            raiseError(\"'it' cannot be used inside 'it', 'it' may only be used inside 'context' or 'describe'. \")\n        }\n        let callsite = Callsite(file: file, line: line)\n        let example = Example(description: description, callsite: callsite, flags: flags, closure: closure)\n        currentExampleGroup.appendExample(example)\n    }\n\n    internal func fit(_ description: String, flags: FilterFlags, file: String, line: UInt, closure: @escaping () -> ()) {\n        var focusedFlags = flags\n        focusedFlags[Filter.focused] = true\n        self.it(description, flags: focusedFlags, file: file, line: line, closure: closure)\n    }\n\n    internal func xit(_ description: String, flags: FilterFlags, file: String, line: UInt, closure: @escaping () -> ()) {\n        var pendingFlags = flags\n        pendingFlags[Filter.pending] = true\n        self.it(description, flags: pendingFlags, file: file, line: line, closure: closure)\n    }\n\n    internal func itBehavesLike(_ name: String, sharedExampleContext: @escaping SharedExampleContext, flags: FilterFlags, file: String, line: UInt) {\n        guard currentExampleMetadata == nil else {\n            raiseError(\"'itBehavesLike' cannot be used inside '\\(currentPhase)', 'itBehavesLike' may only be used inside 'context' or 'describe'. \")\n        }\n        let callsite = Callsite(file: file, line: line)\n        let closure = World.sharedWorld.sharedExample(name)\n\n        let group = ExampleGroup(description: name, flags: flags)\n        currentExampleGroup.appendExampleGroup(group)\n        performWithCurrentExampleGroup(group) {\n            closure(sharedExampleContext)\n        }\n\n        group.walkDownExamples { (example: Example) in\n            example.isSharedExample = true\n            example.callsite = callsite\n        }\n    }\n\n#if _runtime(_ObjC)\n    @objc(itWithDescription:flags:file:line:closure:)\n    private func objc_it(_ description: String, flags: FilterFlags, file: String, line: UInt, closure: @escaping () -> ()) {\n        it(description, flags: flags, file: file, line: line, closure: closure)\n    }\n\n    @objc(fitWithDescription:flags:file:line:closure:)\n    private func objc_fit(_ description: String, flags: FilterFlags, file: String, line: UInt, closure: @escaping () -> ()) {\n        fit(description, flags: flags, file: file, line: line, closure: closure)\n    }\n\n    @objc(xitWithDescription:flags:file:line:closure:)\n    private func objc_xit(_ description: String, flags: FilterFlags, file: String, line: UInt, closure: @escaping () -> ()) {\n        xit(description, flags: flags, file: file, line: line, closure: closure)\n    }\n\n    @objc(itBehavesLikeSharedExampleNamed:sharedExampleContext:flags:file:line:)\n    private func objc_itBehavesLike(_ name: String, sharedExampleContext: @escaping SharedExampleContext, flags: FilterFlags, file: String, line: UInt) {\n        itBehavesLike(name, sharedExampleContext: sharedExampleContext, flags: flags, file: file, line: line)\n    }\n#endif\n\n    internal func pending(_ description: String, closure: () -> ()) {\n        print(\"Pending: \\(description)\")\n    }\n\n    private var currentPhase: String {\n        if beforesCurrentlyExecuting {\n            return \"beforeEach\"\n        } else if aftersCurrentlyExecuting {\n            return \"afterEach\"\n        }\n\n        return \"it\"\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/Quick/ErrorUtility.swift",
    "content": "import Foundation\n\ninternal func raiseError(_ message: String) -> Never {\n#if _runtime(_ObjC)\n    NSException(name: .internalInconsistencyException, reason: message, userInfo: nil).raise()\n#endif\n\n    // This won't be reached when ObjC is available and the exception above is raisd\n    fatalError(message)\n}\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/Quick/Example.swift",
    "content": "import Foundation\n\nprivate var numberOfExamplesRun = 0\n\n/**\n    Examples, defined with the `it` function, use assertions to\n    demonstrate how code should behave. These are like \"tests\" in XCTest.\n*/\nfinal public class Example: NSObject {\n    /**\n        A boolean indicating whether the example is a shared example;\n        i.e.: whether it is an example defined with `itBehavesLike`.\n    */\n    public var isSharedExample = false\n\n    /**\n        The site at which the example is defined.\n        This must be set correctly in order for Xcode to highlight\n        the correct line in red when reporting a failure.\n    */\n    public var callsite: Callsite\n\n    weak internal var group: ExampleGroup?\n\n    private let internalDescription: String\n    private let closure: () -> ()\n    private let flags: FilterFlags\n\n    internal init(description: String, callsite: Callsite, flags: FilterFlags, closure: @escaping () -> ()) {\n        self.internalDescription = description\n        self.closure = closure\n        self.callsite = callsite\n        self.flags = flags\n    }\n\n    public override var description: String {\n        return internalDescription\n    }\n\n    /**\n        The example name. A name is a concatenation of the name of\n        the example group the example belongs to, followed by the\n        description of the example itself.\n\n        The example name is used to generate a test method selector\n        to be displayed in Xcode's test navigator.\n    */\n    public var name: String {\n        guard let groupName = group?.name else { return description }\n        return \"\\(groupName), \\(description)\"\n    }\n\n    /**\n        Executes the example closure, as well as all before and after\n        closures defined in the its surrounding example groups.\n    */\n    public func run() {\n        let world = World.sharedWorld\n\n        if numberOfExamplesRun == 0 {\n            world.suiteHooks.executeBefores()\n        }\n\n        let exampleMetadata = ExampleMetadata(example: self, exampleIndex: numberOfExamplesRun)\n        world.currentExampleMetadata = exampleMetadata\n\n        world.exampleHooks.executeBefores(exampleMetadata)\n        group!.phase = .beforesExecuting\n        for before in group!.befores {\n            before(exampleMetadata)\n        }\n        group!.phase = .beforesFinished\n\n        closure()\n\n        group!.phase = .aftersExecuting\n        for after in group!.afters {\n            after(exampleMetadata)\n        }\n        group!.phase = .aftersFinished\n        world.exampleHooks.executeAfters(exampleMetadata)\n\n        numberOfExamplesRun += 1\n\n        if !world.isRunningAdditionalSuites && numberOfExamplesRun >= world.includedExampleCount {\n            world.suiteHooks.executeAfters()\n        }\n    }\n\n    /**\n        Evaluates the filter flags set on this example and on the example groups\n        this example belongs to. Flags set on the example are trumped by flags on\n        the example group it belongs to. Flags on inner example groups are trumped\n        by flags on outer example groups.\n    */\n    internal var filterFlags: FilterFlags {\n        var aggregateFlags = flags\n        for (key, value) in group!.filterFlags {\n            aggregateFlags[key] = value\n        }\n        return aggregateFlags\n    }\n}\n\n/**\n    Returns a boolean indicating whether two Example objects are equal.\n    If two examples are defined at the exact same callsite, they must be equal.\n*/\npublic func == (lhs: Example, rhs: Example) -> Bool {\n    return lhs.callsite == rhs.callsite\n}\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/Quick/ExampleGroup.swift",
    "content": "import Foundation\n\n/**\n    Example groups are logical groupings of examples, defined with\n    the `describe` and `context` functions. Example groups can share\n    setup and teardown code.\n*/\nfinal public class ExampleGroup: NSObject {\n    weak internal var parent: ExampleGroup?\n    internal let hooks = ExampleHooks()\n\n    internal var phase: HooksPhase = .nothingExecuted\n\n    private let internalDescription: String\n    private let flags: FilterFlags\n    private let isInternalRootExampleGroup: Bool\n    private var childGroups = [ExampleGroup]()\n    private var childExamples = [Example]()\n\n    internal init(description: String, flags: FilterFlags, isInternalRootExampleGroup: Bool = false) {\n        self.internalDescription = description\n        self.flags = flags\n        self.isInternalRootExampleGroup = isInternalRootExampleGroup\n    }\n\n    public override var description: String {\n        return internalDescription\n    }\n\n    /**\n        Returns a list of examples that belong to this example group,\n        or to any of its descendant example groups.\n    */\n    public var examples: [Example] {\n        var examples = childExamples\n        for group in childGroups {\n            examples.append(contentsOf: group.examples)\n        }\n        return examples\n    }\n\n    internal var name: String? {\n        if let parent = parent {\n            guard let name = parent.name else { return description }\n            return \"\\(name), \\(description)\"\n        } else {\n            return isInternalRootExampleGroup ? nil : description\n        }\n    }\n\n    internal var filterFlags: FilterFlags {\n        var aggregateFlags = flags\n        walkUp() { (group: ExampleGroup) -> () in\n            for (key, value) in group.flags {\n                aggregateFlags[key] = value\n            }\n        }\n        return aggregateFlags\n    }\n\n    internal var befores: [BeforeExampleWithMetadataClosure] {\n        var closures = Array(hooks.befores.reversed())\n        walkUp() { (group: ExampleGroup) -> () in\n            closures.append(contentsOf: Array(group.hooks.befores.reversed()))\n        }\n        return Array(closures.reversed())\n    }\n\n    internal var afters: [AfterExampleWithMetadataClosure] {\n        var closures = hooks.afters\n        walkUp() { (group: ExampleGroup) -> () in\n            closures.append(contentsOf: group.hooks.afters)\n        }\n        return closures\n    }\n\n    internal func walkDownExamples(_ callback: (_ example: Example) -> ()) {\n        for example in childExamples {\n            callback(example)\n        }\n        for group in childGroups {\n            group.walkDownExamples(callback)\n        }\n    }\n\n    internal func appendExampleGroup(_ group: ExampleGroup) {\n        group.parent = self\n        childGroups.append(group)\n    }\n\n    internal func appendExample(_ example: Example) {\n        example.group = self\n        childExamples.append(example)\n    }\n\n    private func walkUp(_ callback: (_ group: ExampleGroup) -> ()) {\n        var group = self\n        while let parent = group.parent {\n            callback(parent)\n            group = parent\n        }\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/Quick/ExampleMetadata.swift",
    "content": "import Foundation\n\n/**\n    A class that encapsulates information about an example,\n    including the index at which the example was executed, as\n    well as the example itself.\n*/\nfinal public class ExampleMetadata: NSObject {\n    /**\n        The example for which this metadata was collected.\n    */\n    public let example: Example\n\n    /**\n        The index at which this example was executed in the\n        test suite.\n    */\n    public let exampleIndex: Int\n\n    internal init(example: Example, exampleIndex: Int) {\n        self.example = example\n        self.exampleIndex = exampleIndex\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/Quick/Filter.swift",
    "content": "import Foundation\n\n/**\n    A mapping of string keys to booleans that can be used to\n    filter examples or example groups. For example, a \"focused\"\n    example would have the flags [Focused: true].\n*/\npublic typealias FilterFlags = [String: Bool]\n\n/**\n    A namespace for filter flag keys, defined primarily to make the\n    keys available in Objective-C.\n*/\nfinal public class Filter: NSObject {\n    /**\n        Example and example groups with [Focused: true] are included in test runs,\n        excluding all other examples without this flag. Use this to only run one or\n        two tests that you're currently focusing on.\n    */\n    public class var focused: String {\n        return \"focused\"\n    }\n\n    /**\n        Example and example groups with [Pending: true] are excluded from test runs.\n        Use this to temporarily suspend examples that you know do not pass yet.\n    */\n    public class var pending: String {\n        return \"pending\"\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/Quick/Hooks/Closures.swift",
    "content": "// MARK: Example Hooks\n\n/**\n    A closure executed before an example is run.\n*/\npublic typealias BeforeExampleClosure = () -> ()\n\n/**\n    A closure executed before an example is run. The closure is given example metadata,\n    which contains information about the example that is about to be run.\n*/\npublic typealias BeforeExampleWithMetadataClosure = (_ exampleMetadata: ExampleMetadata) -> ()\n\n/**\n    A closure executed after an example is run.\n*/\npublic typealias AfterExampleClosure = BeforeExampleClosure\n\n/**\n    A closure executed after an example is run. The closure is given example metadata,\n    which contains information about the example that has just finished running.\n*/\npublic typealias AfterExampleWithMetadataClosure = BeforeExampleWithMetadataClosure\n\n// MARK: Suite Hooks\n\n/**\n    A closure executed before any examples are run.\n*/\npublic typealias BeforeSuiteClosure = () -> ()\n\n/**\n    A closure executed after all examples have finished running.\n*/\npublic typealias AfterSuiteClosure = BeforeSuiteClosure\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/Quick/Hooks/ExampleHooks.swift",
    "content": "/**\n    A container for closures to be executed before and after each example.\n*/\nfinal internal class ExampleHooks {\n    internal var befores: [BeforeExampleWithMetadataClosure] = []\n    internal var afters: [AfterExampleWithMetadataClosure] = []\n    internal var phase: HooksPhase = .nothingExecuted\n\n    internal func appendBefore(_ closure: @escaping BeforeExampleWithMetadataClosure) {\n        befores.append(closure)\n    }\n\n    internal func appendBefore(_ closure: @escaping BeforeExampleClosure) {\n        befores.append { (exampleMetadata: ExampleMetadata) in closure() }\n    }\n\n    internal func appendAfter(_ closure: @escaping AfterExampleWithMetadataClosure) {\n        afters.append(closure)\n    }\n\n    internal func appendAfter(_ closure: @escaping AfterExampleClosure) {\n        afters.append { (exampleMetadata: ExampleMetadata) in closure() }\n    }\n\n    internal func executeBefores(_ exampleMetadata: ExampleMetadata) {\n        phase = .beforesExecuting\n        for before in befores {\n            before(exampleMetadata)\n        }\n\n        phase = .beforesFinished\n    }\n\n    internal func executeAfters(_ exampleMetadata: ExampleMetadata) {\n        phase = .aftersExecuting\n        for after in afters {\n            after(exampleMetadata)\n        }\n\n        phase = .aftersFinished\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/Quick/Hooks/HooksPhase.swift",
    "content": "/**\n A description of the execution cycle of the current example with\n respect to the hooks of that example.\n */\ninternal enum HooksPhase {\n    case nothingExecuted\n    case beforesExecuting\n    case beforesFinished\n    case aftersExecuting\n    case aftersFinished\n}\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/Quick/Hooks/SuiteHooks.swift",
    "content": "/**\n    A container for closures to be executed before and after all examples.\n*/\nfinal internal class SuiteHooks {\n    internal var befores: [BeforeSuiteClosure] = []\n    internal var afters: [AfterSuiteClosure] = []\n    internal var phase: HooksPhase = .nothingExecuted\n\n    internal func appendBefore(_ closure: @escaping BeforeSuiteClosure) {\n        befores.append(closure)\n    }\n\n    internal func appendAfter(_ closure: @escaping AfterSuiteClosure) {\n        afters.append(closure)\n    }\n\n    internal func executeBefores() {\n        phase = .beforesExecuting\n        for before in befores {\n            before()\n        }\n        phase = .beforesFinished\n    }\n\n    internal func executeAfters() {\n        phase = .aftersExecuting\n        for after in afters {\n            after()\n        }\n        phase = .aftersFinished\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/Quick/NSBundle+CurrentTestBundle.swift",
    "content": "#if os(OSX) || os(iOS) || os(watchOS) || os(tvOS)\n\nimport Foundation\n\nextension Bundle {\n\n    /**\n     Locates the first bundle with a '.xctest' file extension.\n     */\n    internal static var currentTestBundle: Bundle? {\n        return allBundles.first { $0.bundlePath.hasSuffix(\".xctest\") }\n    }\n\n}\n\n#endif\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/Quick/QuickSelectedTestSuiteBuilder.swift",
    "content": "#if os(OSX) || os(iOS) || os(watchOS) || os(tvOS)\nimport Foundation\n\n/**\n Responsible for building a \"Selected tests\" suite. This corresponds to a single\n spec, and all its examples.\n */\ninternal class QuickSelectedTestSuiteBuilder: QuickTestSuiteBuilder {\n\n    /**\n     The test spec class to run.\n     */\n    let testCaseClass: AnyClass!\n\n    /**\n     For Objective-C classes, returns the class name. For Swift classes without,\n     an explicit Objective-C name, returns a module-namespaced class name\n     (e.g., \"FooTests.FooSpec\").\n     */\n    var testSuiteClassName: String {\n        return NSStringFromClass(testCaseClass)\n    }\n\n    /**\n     Given a test case name:\n\n        FooSpec/testFoo\n\n     Optionally constructs a test suite builder for the named test case class\n     in the running test bundle.\n\n     If no test bundle can be found, or the test case class can't be found,\n     initialization fails and returns `nil`.\n     */\n    init?(forTestCaseWithName name: String) {\n        guard let testCaseClass = testCaseClassForTestCaseWithName(name) else {\n            self.testCaseClass = nil\n            return nil\n        }\n\n        self.testCaseClass = testCaseClass\n    }\n\n    /**\n     Returns a `QuickTestSuite` that runs the associated test case class.\n     */\n    func buildTestSuite() -> QuickTestSuite {\n        return QuickTestSuite(forTestCaseClass: testCaseClass)\n    }\n\n}\n\n/**\n Searches `Bundle.allBundles()` for an xctest bundle, then looks up the named\n test case class in that bundle.\n\n Returns `nil` if a bundle or test case class cannot be found.\n */\nprivate func testCaseClassForTestCaseWithName(_ name: String) -> AnyClass? {\n    func extractClassName(_ name: String) -> String? {\n        return name.components(separatedBy: \"/\").first\n    }\n\n    guard let className = extractClassName(name) else { return nil }\n    guard let bundle = Bundle.currentTestBundle else { return nil }\n\n    if let testCaseClass = bundle.classNamed(className) { return testCaseClass }\n\n    let bundleFileName = bundle.bundleURL.fileName\n    let moduleName = bundleFileName.replacingOccurrences(of: \" \", with: \"_\")\n\n    return NSClassFromString(\"\\(moduleName).\\(className)\")\n}\n\n#endif\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/Quick/QuickTestSuite.swift",
    "content": "#if os(OSX) || os(iOS) || os(watchOS) || os(tvOS)\n\nimport XCTest\n\n/**\n This protocol defines the role of an object that builds test suites.\n */\ninternal protocol QuickTestSuiteBuilder {\n\n    /**\n     Construct a `QuickTestSuite` instance with the appropriate test cases added as tests.\n\n     Subsequent calls to this method should return equivalent test suites.\n     */\n    func buildTestSuite() -> QuickTestSuite\n\n}\n\n/**\n A base class for a class cluster of Quick test suites, that should correctly\n build dynamic test suites for XCTest to execute.\n */\npublic class QuickTestSuite: XCTestSuite {\n\n    private static var builtTestSuites: Set<String> = Set()\n\n    /**\n     Construct a test suite for a specific, selected subset of test cases (rather\n     than the default, which as all test cases).\n\n     If this method is called multiple times for the same test case class, e.g..\n\n        FooSpec/testFoo\n        FooSpec/testBar\n\n     It is expected that the first call should return a valid test suite, and\n     all subsequent calls should return `nil`.\n     */\n    public static func selectedTestSuite(forTestCaseWithName name: String) -> QuickTestSuite? {\n        guard let builder = QuickSelectedTestSuiteBuilder(forTestCaseWithName: name) else { return nil }\n\n        if builtTestSuites.contains(builder.testSuiteClassName) {\n            return nil\n        } else {\n            builtTestSuites.insert(builder.testSuiteClassName)\n            return builder.buildTestSuite()\n        }\n    }\n\n}\n\n#endif\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/Quick/URL+FileName.swift",
    "content": "import Foundation\n\nextension URL {\n\n    /**\n     Returns the path file name without file extension.\n     */\n    var fileName: String {\n        return self.deletingPathExtension().lastPathComponent\n    }\n\n}\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/Quick/World.swift",
    "content": "import Foundation\n\n/**\n    A closure that, when evaluated, returns a dictionary of key-value\n    pairs that can be accessed from within a group of shared examples.\n*/\npublic typealias SharedExampleContext = () -> (NSDictionary)\n\n/**\n    A closure that is used to define a group of shared examples. This\n    closure may contain any number of example and example groups.\n*/\npublic typealias SharedExampleClosure = (@escaping SharedExampleContext) -> ()\n\n/**\n    A collection of state Quick builds up in order to work its magic.\n    World is primarily responsible for maintaining a mapping of QuickSpec\n    classes to root example groups for those classes.\n\n    It also maintains a mapping of shared example names to shared\n    example closures.\n\n    You may configure how Quick behaves by calling the -[World configure:]\n    method from within an overridden +[QuickConfiguration configure:] method.\n*/\nfinal internal class World: NSObject {\n    /**\n        The example group that is currently being run.\n        The DSL requires that this group is correctly set in order to build a\n        correct hierarchy of example groups and their examples.\n    */\n    internal var currentExampleGroup: ExampleGroup!\n\n    /**\n        The example metadata of the test that is currently being run.\n        This is useful for using the Quick test metadata (like its name) at\n        runtime.\n    */\n\n    internal var currentExampleMetadata: ExampleMetadata?\n\n    /**\n        A flag that indicates whether additional test suites are being run\n        within this test suite. This is only true within the context of Quick\n        functional tests.\n    */\n#if _runtime(_ObjC)\n    // Convention of generating Objective-C selector has been changed on Swift 3\n    @objc(isRunningAdditionalSuites)\n    internal var isRunningAdditionalSuites = false\n#else\n    internal var isRunningAdditionalSuites = false\n#endif\n\n    private var specs: Dictionary<String, ExampleGroup> = [:]\n    private var sharedExamples: [String: SharedExampleClosure] = [:]\n    private let configuration = Configuration()\n    private var isConfigurationFinalized = false\n\n    internal var exampleHooks: ExampleHooks {return configuration.exampleHooks }\n    internal var suiteHooks: SuiteHooks { return configuration.suiteHooks }\n\n    // MARK: Singleton Constructor\n\n    private override init() {}\n    static let sharedWorld = World()\n\n    // MARK: Public Interface\n\n    /**\n        Exposes the World's Configuration object within the scope of the closure\n        so that it may be configured. This method must not be called outside of\n        an overridden +[QuickConfiguration configure:] method.\n\n        - parameter closure:  A closure that takes a Configuration object that can\n                         be mutated to change Quick's behavior.\n    */\n    internal func configure(_ closure: QuickConfigurer) {\n        assert(!isConfigurationFinalized,\n               \"Quick cannot be configured outside of a +[QuickConfiguration configure:] method. You should not call -[World configure:] directly. Instead, subclass QuickConfiguration and override the +[QuickConfiguration configure:] method.\")\n        closure(configuration)\n    }\n\n    /**\n        Finalizes the World's configuration.\n        Any subsequent calls to World.configure() will raise.\n    */\n    internal func finalizeConfiguration() {\n        isConfigurationFinalized = true\n    }\n\n    /**\n        Returns an internally constructed root example group for the given\n        QuickSpec class.\n\n        A root example group with the description \"root example group\" is lazily\n        initialized for each QuickSpec class. This root example group wraps the\n        top level of a -[QuickSpec spec] method--it's thanks to this group that\n        users can define beforeEach and it closures at the top level, like so:\n\n            override func spec() {\n                // These belong to the root example group\n                beforeEach {}\n                it(\"is at the top level\") {}\n            }\n\n        - parameter cls: The QuickSpec class for which to retrieve the root example group.\n        - returns: The root example group for the class.\n    */\n    internal func rootExampleGroupForSpecClass(_ cls: AnyClass) -> ExampleGroup {\n        let name = String(describing: cls)\n\n        if let group = specs[name] {\n            return group\n        } else {\n            let group = ExampleGroup(\n                description: \"root example group\",\n                flags: [:],\n                isInternalRootExampleGroup: true\n            )\n            specs[name] = group\n            return group\n        }\n    }\n\n    /**\n        Returns all examples that should be run for a given spec class.\n        There are two filtering passes that occur when determining which examples should be run.\n        That is, these examples are the ones that are included by inclusion filters, and are\n        not excluded by exclusion filters.\n\n        - parameter specClass: The QuickSpec subclass for which examples are to be returned.\n        - returns: A list of examples to be run as test invocations.\n    */\n    internal func examples(_ specClass: AnyClass) -> [Example] {\n        // 1. Grab all included examples.\n        let included = includedExamples\n        // 2. Grab the intersection of (a) examples for this spec, and (b) included examples.\n        let spec = rootExampleGroupForSpecClass(specClass).examples.filter { included.contains($0) }\n        // 3. Remove all excluded examples.\n        return spec.filter { example in\n            !self.configuration.exclusionFilters.reduce(false) { $0 || $1(example) }\n        }\n    }\n\n#if _runtime(_ObjC)\n    @objc(examplesForSpecClass:)\n    private func objc_examples(_ specClass: AnyClass) -> [Example] {\n        return examples(specClass)\n    }\n#endif\n\n    // MARK: Internal\n\n    internal func registerSharedExample(_ name: String, closure: @escaping SharedExampleClosure) {\n        raiseIfSharedExampleAlreadyRegistered(name)\n        sharedExamples[name] = closure\n    }\n\n    internal func sharedExample(_ name: String) -> SharedExampleClosure {\n        raiseIfSharedExampleNotRegistered(name)\n        return sharedExamples[name]!\n    }\n\n    internal var includedExampleCount: Int {\n        return includedExamples.count\n    }\n\n    internal var beforesCurrentlyExecuting: Bool {\n        let suiteBeforesExecuting = suiteHooks.phase == .beforesExecuting\n        let exampleBeforesExecuting = exampleHooks.phase == .beforesExecuting\n        var groupBeforesExecuting = false\n        if let runningExampleGroup = currentExampleMetadata?.example.group {\n            groupBeforesExecuting = runningExampleGroup.phase == .beforesExecuting\n        }\n\n        return suiteBeforesExecuting || exampleBeforesExecuting || groupBeforesExecuting\n    }\n\n    internal var aftersCurrentlyExecuting: Bool {\n        let suiteAftersExecuting = suiteHooks.phase == .aftersExecuting\n        let exampleAftersExecuting = exampleHooks.phase == .aftersExecuting\n        var groupAftersExecuting = false\n        if let runningExampleGroup = currentExampleMetadata?.example.group {\n            groupAftersExecuting = runningExampleGroup.phase == .aftersExecuting\n        }\n\n        return suiteAftersExecuting || exampleAftersExecuting || groupAftersExecuting\n    }\n\n    internal func performWithCurrentExampleGroup(_ group: ExampleGroup, closure: () -> Void) {\n        let previousExampleGroup = currentExampleGroup\n        currentExampleGroup = group\n\n        closure()\n\n        currentExampleGroup = previousExampleGroup\n    }\n\n    private var allExamples: [Example] {\n        var all: [Example] = []\n        for (_, group) in specs {\n            group.walkDownExamples { all.append($0) }\n        }\n        return all\n    }\n\n    private var includedExamples: [Example] {\n        let all = allExamples\n        let included = all.filter { example in\n            return self.configuration.inclusionFilters.reduce(false) { $0 || $1(example) }\n        }\n\n        if included.isEmpty && configuration.runAllWhenEverythingFiltered {\n            return all\n        } else {\n            return included\n        }\n    }\n\n    private func raiseIfSharedExampleAlreadyRegistered(_ name: String) {\n        if sharedExamples[name] != nil {\n            raiseError(\"A shared example named '\\(name)' has already been registered.\")\n        }\n    }\n\n    private func raiseIfSharedExampleNotRegistered(_ name: String) {\n        if sharedExamples[name] == nil {\n            raiseError(\"No shared example named '\\(name)' has been registered. Registered shared examples: '\\(Array(sharedExamples.keys))'\")\n        }\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/QuickObjectiveC/Configuration/QuickConfiguration.h",
    "content": "#import <Foundation/Foundation.h>\n\n@class Configuration;\n\n/**\n Subclass QuickConfiguration and override the +[QuickConfiguration configure:]\n method in order to configure how Quick behaves when running specs, or to define\n shared examples that are used across spec files.\n */\n@interface QuickConfiguration : NSObject\n\n/**\n This method is executed on each subclass of this class before Quick runs\n any examples. You may override this method on as many subclasses as you like, but\n there is no guarantee as to the order in which these methods are executed.\n\n You can override this method in order to:\n\n 1. Configure how Quick behaves, by modifying properties on the Configuration object.\n    Setting the same properties in several methods has undefined behavior.\n\n 2. Define shared examples using `sharedExamples`.\n\n @param configuration A mutable object that is used to configure how Quick behaves on\n                      a framework level. For details on all the options, see the\n                      documentation in Configuration.swift.\n */\n+ (void)configure:(Configuration *)configuration;\n\n@end\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/QuickObjectiveC/Configuration/QuickConfiguration.m",
    "content": "#import \"QuickConfiguration.h\"\n#import \"World.h\"\n#import <objc/runtime.h>\n\ntypedef void (^QCKClassEnumerationBlock)(Class klass);\n\n/**\n Finds all direct subclasses of the given class and passes them to the block provided.\n The classes are iterated over in the order that objc_getClassList returns them.\n\n @param klass The base class to find subclasses of.\n @param block A block that takes a Class. This block will be executed once for each subclass of klass.\n */\nvoid qck_enumerateSubclasses(Class klass, QCKClassEnumerationBlock block) {\n    Class *classes = NULL;\n    int classesCount = objc_getClassList(NULL, 0);\n\n    if (classesCount > 0) {\n        classes = (Class *)calloc(sizeof(Class), classesCount);\n        classesCount = objc_getClassList(classes, classesCount);\n\n        Class subclass, superclass;\n        for(int i = 0; i < classesCount; i++) {\n            subclass = classes[i];\n            superclass = class_getSuperclass(subclass);\n            if (superclass == klass && block) {\n                block(subclass);\n            }\n        }\n\n        free(classes);\n    }\n}\n\n@implementation QuickConfiguration\n\n#pragma mark - Object Lifecycle\n\n/**\n QuickConfiguration is not meant to be instantiated; it merely provides a hook\n for users to configure how Quick behaves. Raise an exception if an instance of\n QuickConfiguration is created.\n */\n- (instancetype)init {\n    NSString *className = NSStringFromClass([self class]);\n    NSString *selectorName = NSStringFromSelector(@selector(configure:));\n    [NSException raise:NSInternalInconsistencyException\n                format:@\"%@ is not meant to be instantiated; \"\n     @\"subclass %@ and override %@ to configure Quick.\",\n     className, className, selectorName];\n    return nil;\n}\n\n#pragma mark - NSObject Overrides\n\n/**\n Hook into when QuickConfiguration is initialized in the runtime in order to\n call +[QuickConfiguration configure:] on each of its subclasses.\n */\n+ (void)initialize {\n    // Only enumerate over the subclasses of QuickConfiguration, not any of its subclasses.\n    if ([self class] == [QuickConfiguration class]) {\n\n        // Only enumerate over subclasses once, even if +[QuickConfiguration initialize]\n        // were to be called several times. This is necessary because +[QuickSpec initialize]\n        // manually calls +[QuickConfiguration initialize].\n        static dispatch_once_t onceToken;\n        dispatch_once(&onceToken, ^{\n            qck_enumerateSubclasses([QuickConfiguration class], ^(__unsafe_unretained Class klass) {\n                [[World sharedWorld] configure:^(Configuration *configuration) {\n                    [klass configure:configuration];\n                }];\n            });\n            [[World sharedWorld] finalizeConfiguration];\n        });\n    }\n}\n\n#pragma mark - Public Interface\n\n+ (void)configure:(Configuration *)configuration { }\n\n@end\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.h",
    "content": "#import <Foundation/Foundation.h>\n\n@class ExampleMetadata;\n\n/**\n Provides a hook for Quick to be configured before any examples are run.\n Within this scope, override the +[QuickConfiguration configure:] method\n to set properties on a configuration object to customize Quick behavior.\n For details, see the documentation for Configuraiton.swift.\n\n @param name The name of the configuration class. Like any Objective-C\n             class name, this must be unique to the current runtime\n             environment.\n */\n#define QuickConfigurationBegin(name) \\\n    @interface name : QuickConfiguration; @end \\\n    @implementation name \\\n\n\n/**\n Marks the end of a Quick configuration.\n Make sure you put this after `QuickConfigurationBegin`.\n */\n#define QuickConfigurationEnd \\\n    @end \\\n\n\n/**\n Defines a new QuickSpec. Define examples and example groups within the space\n between this and `QuickSpecEnd`.\n\n @param name The name of the spec class. Like any Objective-C class name, this\n             must be unique to the current runtime environment.\n */\n#define QuickSpecBegin(name) \\\n    @interface name : QuickSpec; @end \\\n    @implementation name \\\n    - (void)spec { \\\n\n\n/**\n Marks the end of a QuickSpec. Make sure you put this after `QuickSpecBegin`.\n */\n#define QuickSpecEnd \\\n    } \\\n    @end \\\n\ntypedef NSDictionary *(^QCKDSLSharedExampleContext)(void);\ntypedef void (^QCKDSLSharedExampleBlock)(QCKDSLSharedExampleContext);\ntypedef void (^QCKDSLEmptyBlock)(void);\ntypedef void (^QCKDSLExampleMetadataBlock)(ExampleMetadata *exampleMetadata);\n\n#define QUICK_EXPORT FOUNDATION_EXPORT\n\nQUICK_EXPORT void qck_beforeSuite(QCKDSLEmptyBlock closure);\nQUICK_EXPORT void qck_afterSuite(QCKDSLEmptyBlock closure);\nQUICK_EXPORT void qck_sharedExamples(NSString *name, QCKDSLSharedExampleBlock closure);\nQUICK_EXPORT void qck_describe(NSString *description, QCKDSLEmptyBlock closure);\nQUICK_EXPORT void qck_context(NSString *description, QCKDSLEmptyBlock closure);\nQUICK_EXPORT void qck_beforeEach(QCKDSLEmptyBlock closure);\nQUICK_EXPORT void qck_beforeEachWithMetadata(QCKDSLExampleMetadataBlock closure);\nQUICK_EXPORT void qck_afterEach(QCKDSLEmptyBlock closure);\nQUICK_EXPORT void qck_afterEachWithMetadata(QCKDSLExampleMetadataBlock closure);\nQUICK_EXPORT void qck_pending(NSString *description, QCKDSLEmptyBlock closure);\nQUICK_EXPORT void qck_xdescribe(NSString *description, QCKDSLEmptyBlock closure);\nQUICK_EXPORT void qck_xcontext(NSString *description, QCKDSLEmptyBlock closure);\nQUICK_EXPORT void qck_fdescribe(NSString *description, QCKDSLEmptyBlock closure);\nQUICK_EXPORT void qck_fcontext(NSString *description, QCKDSLEmptyBlock closure);\n\n#ifndef QUICK_DISABLE_SHORT_SYNTAX\n/**\n    Defines a closure to be run prior to any examples in the test suite.\n    You may define an unlimited number of these closures, but there is no\n    guarantee as to the order in which they're run.\n \n    If the test suite crashes before the first example is run, this closure\n    will not be executed.\n \n    @param closure The closure to be run prior to any examples in the test suite.\n */\nstatic inline void beforeSuite(QCKDSLEmptyBlock closure) {\n    qck_beforeSuite(closure);\n}\n\n\n/**\n    Defines a closure to be run after all of the examples in the test suite.\n    You may define an unlimited number of these closures, but there is no\n    guarantee as to the order in which they're run.\n     \n    If the test suite crashes before all examples are run, this closure\n    will not be executed.\n \n    @param closure The closure to be run after all of the examples in the test suite.\n */\nstatic inline void afterSuite(QCKDSLEmptyBlock closure) {\n    qck_afterSuite(closure);\n}\n\n/**\n    Defines a group of shared examples. These examples can be re-used in several locations\n    by using the `itBehavesLike` function.\n \n    @param name The name of the shared example group. This must be unique across all shared example\n                groups defined in a test suite.\n    @param closure A closure containing the examples. This behaves just like an example group defined\n                   using `describe` or `context`--the closure may contain any number of `beforeEach`\n                   and `afterEach` closures, as well as any number of examples (defined using `it`).\n */\nstatic inline void sharedExamples(NSString *name, QCKDSLSharedExampleBlock closure) {\n    qck_sharedExamples(name, closure);\n}\n\n/**\n    Defines an example group. Example groups are logical groupings of examples.\n    Example groups can share setup and teardown code.\n \n    @param description An arbitrary string describing the example group.\n    @param closure A closure that can contain other examples.\n */\nstatic inline void describe(NSString *description, QCKDSLEmptyBlock closure) {\n    qck_describe(description, closure);\n}\n\n/**\n    Defines an example group. Equivalent to `describe`.\n */\nstatic inline void context(NSString *description, QCKDSLEmptyBlock closure) {\n    qck_context(description, closure);\n}\n\n/**\n    Defines a closure to be run prior to each example in the current example\n    group. This closure is not run for pending or otherwise disabled examples.\n    An example group may contain an unlimited number of beforeEach. They'll be\n    run in the order they're defined, but you shouldn't rely on that behavior.\n \n    @param closure The closure to be run prior to each example.\n */\nstatic inline void beforeEach(QCKDSLEmptyBlock closure) {\n    qck_beforeEach(closure);\n}\n\n/**\n    Identical to QCKDSL.beforeEach, except the closure is provided with\n    metadata on the example that the closure is being run prior to.\n */\nstatic inline void beforeEachWithMetadata(QCKDSLExampleMetadataBlock closure) {\n    qck_beforeEachWithMetadata(closure);\n}\n\n/**\n    Defines a closure to be run after each example in the current example\n    group. This closure is not run for pending or otherwise disabled examples.\n    An example group may contain an unlimited number of afterEach. They'll be\n    run in the order they're defined, but you shouldn't rely on that behavior.\n \n    @param closure The closure to be run after each example.\n */\nstatic inline void afterEach(QCKDSLEmptyBlock closure) {\n    qck_afterEach(closure);\n}\n\n/**\n    Identical to QCKDSL.afterEach, except the closure is provided with\n    metadata on the example that the closure is being run after.\n */\nstatic inline void afterEachWithMetadata(QCKDSLExampleMetadataBlock closure) {\n    qck_afterEachWithMetadata(closure);\n}\n\n/**\n    Defines an example or example group that should not be executed. Use `pending` to temporarily disable\n    examples or groups that should not be run yet.\n \n    @param description An arbitrary string describing the example or example group.\n    @param closure A closure that will not be evaluated.\n */\nstatic inline void pending(NSString *description, QCKDSLEmptyBlock closure) {\n    qck_pending(description, closure);\n}\n\n/**\n    Use this to quickly mark a `describe` block as pending.\n    This disables all examples within the block.\n */\nstatic inline void xdescribe(NSString *description, QCKDSLEmptyBlock closure) {\n    qck_xdescribe(description, closure);\n}\n\n/**\n    Use this to quickly mark a `context` block as pending.\n    This disables all examples within the block.\n */\nstatic inline void xcontext(NSString *description, QCKDSLEmptyBlock closure) {\n    qck_xcontext(description, closure);\n}\n\n/**\n    Use this to quickly focus a `describe` block, focusing the examples in the block.\n    If any examples in the test suite are focused, only those examples are executed.\n    This trumps any explicitly focused or unfocused examples within the block--they are all treated as focused.\n */\nstatic inline void fdescribe(NSString *description, QCKDSLEmptyBlock closure) {\n    qck_fdescribe(description, closure);\n}\n\n/**\n    Use this to quickly focus a `context` block. Equivalent to `fdescribe`.\n */\nstatic inline void fcontext(NSString *description, QCKDSLEmptyBlock closure) {\n    qck_fcontext(description, closure);\n}\n\n#define it qck_it\n#define xit qck_xit\n#define fit qck_fit\n#define itBehavesLike qck_itBehavesLike\n#define xitBehavesLike qck_xitBehavesLike\n#define fitBehavesLike qck_fitBehavesLike\n#endif\n\n#define qck_it qck_it_builder(@{}, @(__FILE__), __LINE__)\n#define qck_xit qck_it_builder(@{Filter.pending: @YES}, @(__FILE__), __LINE__)\n#define qck_fit qck_it_builder(@{Filter.focused: @YES}, @(__FILE__), __LINE__)\n#define qck_itBehavesLike qck_itBehavesLike_builder(@{}, @(__FILE__), __LINE__)\n#define qck_xitBehavesLike qck_itBehavesLike_builder(@{Filter.pending: @YES}, @(__FILE__), __LINE__)\n#define qck_fitBehavesLike qck_itBehavesLike_builder(@{Filter.focused: @YES}, @(__FILE__), __LINE__)\n\ntypedef void (^QCKItBlock)(NSString *description, QCKDSLEmptyBlock closure);\ntypedef void (^QCKItBehavesLikeBlock)(NSString *description, QCKDSLSharedExampleContext context);\n\nQUICK_EXPORT QCKItBlock qck_it_builder(NSDictionary *flags, NSString *file, NSUInteger line);\nQUICK_EXPORT QCKItBehavesLikeBlock qck_itBehavesLike_builder(NSDictionary *flags, NSString *file, NSUInteger line);\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.m",
    "content": "#import \"QCKDSL.h\"\n#import \"World.h\"\n#import \"World+DSL.h\"\n\nvoid qck_beforeSuite(QCKDSLEmptyBlock closure) {\n    [[World sharedWorld] beforeSuite:closure];\n}\n\nvoid qck_afterSuite(QCKDSLEmptyBlock closure) {\n    [[World sharedWorld] afterSuite:closure];\n}\n\nvoid qck_sharedExamples(NSString *name, QCKDSLSharedExampleBlock closure) {\n    [[World sharedWorld] sharedExamples:name closure:closure];\n}\n\nvoid qck_describe(NSString *description, QCKDSLEmptyBlock closure) {\n    [[World sharedWorld] describe:description flags:@{} closure:closure];\n}\n\nvoid qck_context(NSString *description, QCKDSLEmptyBlock closure) {\n    qck_describe(description, closure);\n}\n\nvoid qck_beforeEach(QCKDSLEmptyBlock closure) {\n    [[World sharedWorld] beforeEach:closure];\n}\n\nvoid qck_beforeEachWithMetadata(QCKDSLExampleMetadataBlock closure) {\n    [[World sharedWorld] beforeEachWithMetadata:closure];\n}\n\nvoid qck_afterEach(QCKDSLEmptyBlock closure) {\n    [[World sharedWorld] afterEach:closure];\n}\n\nvoid qck_afterEachWithMetadata(QCKDSLExampleMetadataBlock closure) {\n    [[World sharedWorld] afterEachWithMetadata:closure];\n}\n\nQCKItBlock qck_it_builder(NSDictionary *flags, NSString *file, NSUInteger line) {\n    return ^(NSString *description, QCKDSLEmptyBlock closure) {\n        [[World sharedWorld] itWithDescription:description\n                                         flags:flags\n                                          file:file\n                                          line:line\n                                       closure:closure];\n    };\n}\n\nQCKItBehavesLikeBlock qck_itBehavesLike_builder(NSDictionary *flags, NSString *file, NSUInteger line) {\n    return ^(NSString *name, QCKDSLSharedExampleContext context) {\n        [[World sharedWorld] itBehavesLikeSharedExampleNamed:name\n                                        sharedExampleContext:context\n                                                       flags:flags\n                                                        file:file\n                                                        line:line];\n    };\n}\n\nvoid qck_pending(NSString *description, QCKDSLEmptyBlock closure) {\n    [[World sharedWorld] pending:description closure:closure];\n}\n\nvoid qck_xdescribe(NSString *description, QCKDSLEmptyBlock closure) {\n    [[World sharedWorld] xdescribe:description flags:@{} closure:closure];\n}\n\nvoid qck_xcontext(NSString *description, QCKDSLEmptyBlock closure) {\n    qck_xdescribe(description, closure);\n}\n\nvoid qck_fdescribe(NSString *description, QCKDSLEmptyBlock closure) {\n    [[World sharedWorld] fdescribe:description flags:@{} closure:closure];\n}\n\nvoid qck_fcontext(NSString *description, QCKDSLEmptyBlock closure) {\n    qck_fdescribe(description, closure);\n}\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/QuickObjectiveC/DSL/World+DSL.h",
    "content": "#import <Quick/Quick-Swift.h>\n\n@interface World (SWIFT_EXTENSION(Quick))\n- (void)beforeSuite:(void (^ __nonnull)(void))closure;\n- (void)afterSuite:(void (^ __nonnull)(void))closure;\n- (void)sharedExamples:(NSString * __nonnull)name closure:(void (^ __nonnull)(NSDictionary * __nonnull (^ __nonnull)(void)))closure;\n- (void)describe:(NSString * __nonnull)description flags:(NSDictionary * __nonnull)flags closure:(void (^ __nonnull)(void))closure;\n- (void)context:(NSString * __nonnull)description flags:(NSDictionary * __nonnull)flags closure:(void (^ __nonnull)(void))closure;\n- (void)fdescribe:(NSString * __nonnull)description flags:(NSDictionary * __nonnull)flags closure:(void (^ __nonnull)(void))closure;\n- (void)xdescribe:(NSString * __nonnull)description flags:(NSDictionary * __nonnull)flags closure:(void (^ __nonnull)(void))closure;\n- (void)beforeEach:(void (^ __nonnull)(void))closure;\n- (void)beforeEachWithMetadata:(void (^ __nonnull)(ExampleMetadata * __nonnull))closure;\n- (void)afterEach:(void (^ __nonnull)(void))closure;\n- (void)afterEachWithMetadata:(void (^ __nonnull)(ExampleMetadata * __nonnull))closure;\n- (void)itWithDescription:(NSString * __nonnull)description flags:(NSDictionary * __nonnull)flags file:(NSString * __nonnull)file line:(NSUInteger)line closure:(void (^ __nonnull)(void))closure;\n- (void)fitWithDescription:(NSString * __nonnull)description flags:(NSDictionary * __nonnull)flags file:(NSString * __nonnull)file line:(NSUInteger)line closure:(void (^ __nonnull)(void))closure;\n- (void)xitWithDescription:(NSString * __nonnull)description flags:(NSDictionary * __nonnull)flags file:(NSString * __nonnull)file line:(NSUInteger)line closure:(void (^ __nonnull)(void))closure;\n- (void)itBehavesLikeSharedExampleNamed:(NSString * __nonnull)name sharedExampleContext:(NSDictionary * __nonnull (^ __nonnull)(void))sharedExampleContext flags:(NSDictionary * __nonnull)flags file:(NSString * __nonnull)file line:(NSUInteger)line;\n- (void)pending:(NSString * __nonnull)description closure:(void (^ __nonnull)(void))closure;\n@end\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/QuickObjectiveC/NSString+QCKSelectorName.h",
    "content": "#import <Foundation/Foundation.h>\n\n/**\n QuickSpec converts example names into test methods.\n Those test methods need valid selector names, which means no whitespace,\n control characters, etc. This category gives NSString objects an easy way\n to replace those illegal characters with underscores.\n */\n@interface NSString (QCKSelectorName)\n\n/**\n Returns a string with underscores in place of all characters that cannot\n be included in a selector (SEL) name.\n */\n@property (nonatomic, readonly) NSString *qck_selectorName;\n\n@end\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/QuickObjectiveC/NSString+QCKSelectorName.m",
    "content": "#import \"NSString+QCKSelectorName.h\"\n\n@implementation NSString (QCKSelectorName)\n\n- (NSString *)qck_selectorName {\n    static NSMutableCharacterSet *invalidCharacters = nil;\n    static dispatch_once_t onceToken;\n    dispatch_once(&onceToken, ^{\n        invalidCharacters = [NSMutableCharacterSet new];\n\n        NSCharacterSet *whitespaceCharacterSet = [NSCharacterSet whitespaceCharacterSet];\n        NSCharacterSet *newlineCharacterSet = [NSCharacterSet newlineCharacterSet];\n        NSCharacterSet *illegalCharacterSet = [NSCharacterSet illegalCharacterSet];\n        NSCharacterSet *controlCharacterSet = [NSCharacterSet controlCharacterSet];\n        NSCharacterSet *punctuationCharacterSet = [NSCharacterSet punctuationCharacterSet];\n        NSCharacterSet *nonBaseCharacterSet = [NSCharacterSet nonBaseCharacterSet];\n        NSCharacterSet *symbolCharacterSet = [NSCharacterSet symbolCharacterSet];\n\n        [invalidCharacters formUnionWithCharacterSet:whitespaceCharacterSet];\n        [invalidCharacters formUnionWithCharacterSet:newlineCharacterSet];\n        [invalidCharacters formUnionWithCharacterSet:illegalCharacterSet];\n        [invalidCharacters formUnionWithCharacterSet:controlCharacterSet];\n        [invalidCharacters formUnionWithCharacterSet:punctuationCharacterSet];\n        [invalidCharacters formUnionWithCharacterSet:nonBaseCharacterSet];\n        [invalidCharacters formUnionWithCharacterSet:symbolCharacterSet];\n    });\n\n    NSArray *validComponents = [self componentsSeparatedByCharactersInSet:invalidCharacters];\n\n    NSString *result = [validComponents componentsJoinedByString:@\"_\"];\n    \n    return ([result length] == 0\n            ? @\"_\"\n            : result);\n}\n\n@end\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/QuickObjectiveC/Quick.h",
    "content": "#import <Foundation/Foundation.h>\n\n//! Project version number for Quick.\nFOUNDATION_EXPORT double QuickVersionNumber;\n\n//! Project version string for Quick.\nFOUNDATION_EXPORT const unsigned char QuickVersionString[];\n\n#import \"QuickSpec.h\"\n#import \"QCKDSL.h\"\n#import \"QuickConfiguration.h\"\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/QuickObjectiveC/QuickSpec.h",
    "content": "#import <XCTest/XCTest.h>\n\n/**\n QuickSpec is a base class all specs written in Quick inherit from.\n They need to inherit from QuickSpec, a subclass of XCTestCase, in\n order to be discovered by the XCTest framework.\n\n XCTest automatically compiles a list of XCTestCase subclasses included\n in the test target. It iterates over each class in that list, and creates\n a new instance of that class for each test method. It then creates an\n \"invocation\" to execute that test method. The invocation is an instance of\n NSInvocation, which represents a single message send in Objective-C.\n The invocation is set on the XCTestCase instance, and the test is run.\n\n Most of the code in QuickSpec is dedicated to hooking into XCTest events.\n First, when the spec is first loaded and before it is sent any messages,\n the +[NSObject initialize] method is called. QuickSpec overrides this method\n to call +[QuickSpec spec]. This builds the example group stacks and\n registers them with Quick.World, a global register of examples.\n\n Then, XCTest queries QuickSpec for a list of test methods. Normally, XCTest\n automatically finds all methods whose selectors begin with the string \"test\".\n However, QuickSpec overrides this default behavior by implementing the\n +[XCTestCase testInvocations] method. This method iterates over each example\n registered in Quick.World, defines a new method for that example, and\n returns an invocation to call that method to XCTest. Those invocations are\n the tests that are run by XCTest. Their selector names are displayed in\n the Xcode test navigation bar.\n */\n@interface QuickSpec : XCTestCase\n\n/**\n Override this method in your spec to define a set of example groups\n and examples.\n\n @code\n override func spec() {\n     describe(\"winter\") {\n         it(\"is coming\") {\n             // ...\n         }\n     }\n }\n @endcode\n\n See DSL.swift for more information on what syntax is available.\n */\n- (void)spec;\n\n@end\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/QuickObjectiveC/QuickSpec.m",
    "content": "#import \"QuickSpec.h\"\n#import \"QuickConfiguration.h\"\n#import \"NSString+QCKSelectorName.h\"\n#import \"World.h\"\n#import <objc/runtime.h>\n\nstatic QuickSpec *currentSpec = nil;\n\nconst void * const QCKExampleKey = &QCKExampleKey;\n\n@interface QuickSpec ()\n@property (nonatomic, strong) Example *example;\n@end\n\n@implementation QuickSpec\n\n#pragma mark - XCTestCase Overrides\n\n/**\n The runtime sends initialize to each class in a program just before the class, or any class\n that inherits from it, is sent its first message from within the program. QuickSpec hooks into\n this event to compile the example groups for this spec subclass.\n\n If an exception occurs when compiling the examples, report it to the user. Chances are they\n included an expectation outside of a \"it\", \"describe\", or \"context\" block.\n */\n+ (void)initialize {\n    [QuickConfiguration initialize];\n\n    World *world = [World sharedWorld];\n    [world performWithCurrentExampleGroup:[world rootExampleGroupForSpecClass:self] closure:^{\n        QuickSpec *spec = [self new];\n\n        @try {\n            [spec spec];\n        }\n        @catch (NSException *exception) {\n            [NSException raise:NSInternalInconsistencyException\n                        format:@\"An exception occurred when building Quick's example groups.\\n\"\n             @\"Some possible reasons this might happen include:\\n\\n\"\n             @\"- An 'expect(...).to' expectation was evaluated outside of \"\n             @\"an 'it', 'context', or 'describe' block\\n\"\n             @\"- 'sharedExamples' was called twice with the same name\\n\"\n             @\"- 'itBehavesLike' was called with a name that is not registered as a shared example\\n\\n\"\n             @\"Here's the original exception: '%@', reason: '%@', userInfo: '%@'\",\n             exception.name, exception.reason, exception.userInfo];\n        }\n        [self testInvocations];\n    }];\n}\n\n/**\n Invocations for each test method in the test case. QuickSpec overrides this method to define a\n new method for each example defined in +[QuickSpec spec].\n\n @return An array of invocations that execute the newly defined example methods.\n */\n+ (NSArray *)testInvocations {\n    NSArray *examples = [[World sharedWorld] examplesForSpecClass:[self class]];\n    NSMutableArray *invocations = [NSMutableArray arrayWithCapacity:[examples count]];\n    \n    NSMutableSet<NSString*> *selectorNames = [NSMutableSet set];\n    \n    for (Example *example in examples) {\n        SEL selector = [self addInstanceMethodForExample:example classSelectorNames:selectorNames];\n        NSInvocation *invocation = [self invocationForInstanceMethodWithSelector:selector\n                                                                         example:example];\n        [invocations addObject:invocation];\n    }\n\n    return invocations;\n}\n\n/**\n XCTest sets the invocation for the current test case instance using this setter.\n QuickSpec hooks into this event to give the test case a reference to the current example.\n It will need this reference to correctly report its name to XCTest.\n */\n- (void)setInvocation:(NSInvocation *)invocation {\n    self.example = objc_getAssociatedObject(invocation, QCKExampleKey);\n    [super setInvocation:invocation];\n}\n\n#pragma mark - Public Interface\n\n- (void)spec { }\n\n#pragma mark - Internal Methods\n\n/**\n QuickSpec uses this method to dynamically define a new instance method for the\n given example. The instance method runs the example, catching any exceptions.\n The exceptions are then reported as test failures.\n\n In order to report the correct file and line number, examples must raise exceptions\n containing following keys in their userInfo:\n\n - \"SenTestFilenameKey\": A String representing the file name\n - \"SenTestLineNumberKey\": An Int representing the line number\n\n These keys used to be used by SenTestingKit, and are still used by some testing tools\n in the wild. See: https://github.com/Quick/Quick/pull/41\n\n @return The selector of the newly defined instance method.\n */\n+ (SEL)addInstanceMethodForExample:(Example *)example classSelectorNames:(NSMutableSet<NSString*> *)selectorNames {\n    IMP implementation = imp_implementationWithBlock(^(QuickSpec *self){\n        currentSpec = self;\n        [example run];\n    });\n    NSCharacterSet *characterSet = [NSCharacterSet alphanumericCharacterSet];\n    NSMutableString *sanitizedFileName = [NSMutableString string];\n    for (NSUInteger i = 0; i < example.callsite.file.length; i++) {\n        unichar ch = [example.callsite.file characterAtIndex:i];\n        if ([characterSet characterIsMember:ch]) {\n            [sanitizedFileName appendFormat:@\"%c\", ch];\n        }\n    }\n\n    const char *types = [[NSString stringWithFormat:@\"%s%s%s\", @encode(id), @encode(id), @encode(SEL)] UTF8String];\n    \n    NSString *originalName = example.name.qck_selectorName;\n    NSString *selectorName = originalName;\n    NSUInteger i = 2;\n    \n    while ([selectorNames containsObject:selectorName]) {\n        selectorName = [NSString stringWithFormat:@\"%@_%tu\", originalName, i++];\n    }\n    \n    [selectorNames addObject:selectorName];\n    \n    SEL selector = NSSelectorFromString(selectorName);\n    class_addMethod(self, selector, implementation, types);\n\n    return selector;\n}\n\n+ (NSInvocation *)invocationForInstanceMethodWithSelector:(SEL)selector\n                                                  example:(Example *)example {\n    NSMethodSignature *signature = [self instanceMethodSignatureForSelector:selector];\n    NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:signature];\n    invocation.selector = selector;\n    objc_setAssociatedObject(invocation,\n                             QCKExampleKey,\n                             example,\n                             OBJC_ASSOCIATION_RETAIN_NONATOMIC);\n    return invocation;\n}\n\n/**\n This method is used to record failures, whether they represent example\n expectations that were not met, or exceptions raised during test setup\n and teardown. By default, the failure will be reported as an\n XCTest failure, and the example will be highlighted in Xcode.\n */\n- (void)recordFailureWithDescription:(NSString *)description\n                              inFile:(NSString *)filePath\n                              atLine:(NSUInteger)lineNumber\n                            expected:(BOOL)expected {\n    if (self.example.isSharedExample) {\n        filePath = self.example.callsite.file;\n        lineNumber = self.example.callsite.line;\n    }\n    [currentSpec.testRun recordFailureWithDescription:description\n                                               inFile:filePath\n                                               atLine:lineNumber\n                                             expected:expected];\n}\n\n@end\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/QuickObjectiveC/World.h",
    "content": "#import <Quick/Quick-Swift.h>\n\n@class ExampleGroup;\n@class ExampleMetadata;\n\nSWIFT_CLASS(\"_TtC5Quick5World\")\n@interface World\n\n@property (nonatomic) ExampleGroup * __nullable currentExampleGroup;\n@property (nonatomic) ExampleMetadata * __nullable currentExampleMetadata;\n@property (nonatomic) BOOL isRunningAdditionalSuites;\n+ (World * __nonnull)sharedWorld;\n- (void)configure:(void (^ __nonnull)(Configuration * __nonnull))closure;\n- (void)finalizeConfiguration;\n- (ExampleGroup * __nonnull)rootExampleGroupForSpecClass:(Class __nonnull)cls;\n- (NSArray * __nonnull)examplesForSpecClass:(Class __nonnull)specClass;\n- (void)performWithCurrentExampleGroup:(ExampleGroup * __nonnull)group closure:(void (^ __nonnull)(void))closure;\n@end\n"
  },
  {
    "path": "Example/Pods/Quick/Sources/QuickObjectiveC/XCTestSuite+QuickTestSuiteBuilder.m",
    "content": "#import <XCTest/XCTest.h>\n#import <objc/runtime.h>\n#import <Quick/Quick-Swift.h>\n\n@interface XCTestSuite (QuickTestSuiteBuilder)\n@end\n\n@implementation XCTestSuite (QuickTestSuiteBuilder)\n\n/**\n In order to ensure we can correctly build dynamic test suites, we need to\n replace some of the default test suite constructors.\n */\n+ (void)load {\n    Method testCaseWithName = class_getClassMethod(self, @selector(testSuiteForTestCaseWithName:));\n    Method hooked_testCaseWithName = class_getClassMethod(self, @selector(qck_hooked_testSuiteForTestCaseWithName:));\n    method_exchangeImplementations(testCaseWithName, hooked_testCaseWithName);\n}\n\n/**\n The `+testSuiteForTestCaseWithName:` method is called when a specific test case\n class is run from the Xcode test navigator. If the built test suite is `nil`,\n Xcode will not run any tests for that test case.\n\n Given if the following test case class is run from the Xcode test navigator:\n\n    FooSpec\n        testFoo\n        testBar\n\n XCTest will invoke this once per test case, with test case names following this format:\n\n    FooSpec/testFoo\n    FooSpec/testBar\n */\n+ (nullable instancetype)qck_hooked_testSuiteForTestCaseWithName:(nonnull NSString *)name {\n    return [QuickTestSuite selectedTestSuiteForTestCaseWithName:name];\n}\n\n@end\n"
  },
  {
    "path": "Example/Pods/Reflection/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Brad Hilton\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "Example/Pods/Reflection/README.md",
    "content": "# Reflection\n\n[![Swift][swift-badge]][swift-url]\n[![License][mit-badge]][mit-url]\n[![Slack][slack-badge]][slack-url]\n[![Travis][travis-badge]][travis-url]\n[![Codecov][codecov-badge]][codecov-url]\n[![Codebeat][codebeat-badge]][codebeat-url]\n\n**Reflection** provides an API for advanced reflection at runtime including dynamic construction of types.\n\n## Usage\n\n```swift\nimport Reflection\n\nstruct Person {\n  var firstName: String\n  var lastName: String\n  var age: Int\n}\n\n// Reflects the instance properties of type `Person`\nlet properties = try properties(Person)\n\nvar person = Person(firstName: \"John\", lastName: \"Smith\", age: 35)\n\n// Retrieves the value of `person.firstName`\nlet firstName: String = try get(\"firstName\", from: person)\n\n// Sets the value of `person.age`\ntry set(36, key: \"age\", for: &person)\n\n// Creates a `Person` from a dictionary\nlet friend: Person = try construct(dictionary: [\"firstName\" : \"Sarah\",\n                                                \"lastName\" : \"Gates\",\n                                                \"age\" : 28])\n\n\n```\n\n## Installation\n\n```swift\nimport PackageDescription\n\nlet package = Package(\n    dependencies: [\n        .Package(url: \"https://github.com/Zewo/Reflection.git\", majorVersion: 0, minor: 14),\n    ]\n)\n```\n\n## Advanced Usage\n\n```swift\n// `Reflection` can be extended for higher-level packages to do mapping and serializing.\n// Here is a simple `Mappable` protocol that allows deserializing of arbitrary nested structures.\n\nimport Reflection\n\ntypealias MappableDictionary = [String : Any]\n\nenum Error : ErrorProtocol {\n    case missingRequiredValue(key: String)\n}\n\nprotocol Mappable {\n    init(dictionary: MappableDictionary) throws\n}\n\nextension Mappable {\n\n    init(dictionary: MappableDictionary) throws {\n        self = try construct { property in\n            if let value = dictionary[property.key] {\n                if let type = property.type as? Mappable.Type, let value = value as? MappableDictionary {\n                    return try type.init(dictionary: value)\n                } else {\n                    return value\n                }\n            } else {\n                throw Error.missingRequiredValue(key: property.key)\n            }\n        }\n    }\n\n}\n\nstruct Person : Mappable {\n    var firstName: String\n    var lastName: String\n    var age: Int\n    var phoneNumber: PhoneNumber\n}\n\nstruct PhoneNumber : Mappable {\n    var number: String\n    var type: String\n}\n\nlet dictionary = [\n    \"firstName\" : \"Jane\",\n    \"lastName\" : \"Miller\",\n    \"age\" : 54,\n    \"phoneNumber\" : [\n        \"number\" : \"924-555-0294\",\n        \"type\" : \"work\"\n    ] as MappableDictionary\n] as MappableDictionary\n\nlet person = try Person(dictionary: dictionary)\n\n```\n\n## Support\n\nIf you need any help you can join our [Slack](http://slack.zewo.io) and go to the **#help** channel. Or you can create a Github [issue](https://github.com/Zewo/Zewo/issues/new) in our main repository. When stating your issue be sure to add enough details, specify what module is causing the problem and reproduction steps.\n\n## Community\n\n[![Slack][slack-image]][slack-url]\n\nThe entire Zewo code base is licensed under MIT. By contributing to Zewo you are contributing to an open and engaged community of brilliant Swift programmers. Join us on [Slack](http://slack.zewo.io) to get to know us!\n\n## License\n\nThis project is released under the MIT license. See [LICENSE](LICENSE) for details.\n\n[swift-badge]: https://img.shields.io/badge/Swift-3.0-orange.svg?style=flat\n[swift-url]: https://swift.org\n[mit-badge]: https://img.shields.io/badge/License-MIT-blue.svg?style=flat\n[mit-url]: https://tldrlegal.com/license/mit-license\n[slack-image]: http://s13.postimg.org/ybwy92ktf/Slack.png\n[slack-badge]: https://zewo-slackin.herokuapp.com/badge.svg\n[slack-url]: http://slack.zewo.io\n[travis-badge]: https://travis-ci.org/Zewo/Reflection.svg?branch=master\n[travis-url]: https://travis-ci.org/Zewo/Reflection\n[codecov-badge]: https://codecov.io/gh/Zewo/Reflection/branch/master/graph/badge.svg\n[codecov-url]: https://codecov.io/gh/Zewo/Reflection\n[codebeat-badge]: https://codebeat.co/badges/85f3c10b-6574-4956-8c58-bb6ad3ea1268\n[codebeat-url]: https://codebeat.co/projects/github-com-zewo-reflection\n"
  },
  {
    "path": "Example/Pods/Reflection/Sources/Reflection/Advance.swift",
    "content": "// TODO: Remove uses of advance()\nextension Strideable {\n    mutating func advance() {\n        self = advanced(by: 1)\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Reflection/Sources/Reflection/Any+Extensions.swift",
    "content": "//\n//  Any+Extensions.swift\n//  Reflection\n//\n//  Created by Bradley Hilton on 10/17/16.\n//\n//\n\nprotocol AnyExtensions {}\n\nextension AnyExtensions {\n    \n    static func construct(constructor: (Property.Description) throws -> Any) throws -> Any {\n        return try Reflection.construct(self, constructor: constructor)\n    }\n    \n    static func construct(dictionary: [String: Any]) throws -> Any {\n        return try Reflection.construct(self, dictionary: dictionary)\n    }\n    \n    static func isValueTypeOrSubtype(_ value: Any) -> Bool {\n        return value is Self\n    }\n    \n    static func value(from storage: UnsafeRawPointer) -> Any {\n        return storage.assumingMemoryBound(to: self).pointee\n    }\n    \n    static func write(_ value: Any, to storage: UnsafeMutableRawPointer) throws {\n        guard let this = value as? Self else {\n            throw ReflectionError.valueIsNotType(value: value, type: self)\n        }\n        storage.assumingMemoryBound(to: self).initialize(to: this)\n    }\n    \n}\n\nfunc extensions(of type: Any.Type) -> AnyExtensions.Type {\n    struct Extensions : AnyExtensions {}\n    var extensions: AnyExtensions.Type = Extensions.self\n    withUnsafePointer(to: &extensions) { pointer in\n        UnsafeMutableRawPointer(mutating: pointer).assumingMemoryBound(to: Any.Type.self).pointee = type\n    }\n    return extensions\n}\n\nfunc extensions(of value: Any) -> AnyExtensions {\n    struct Extensions : AnyExtensions {}\n    var extensions: AnyExtensions = Extensions()\n    withUnsafePointer(to: &extensions) { pointer in\n        UnsafeMutableRawPointer(mutating: pointer).assumingMemoryBound(to: Any.self).pointee = value\n    }\n    return extensions\n}\n"
  },
  {
    "path": "Example/Pods/Reflection/Sources/Reflection/Array+Extensions.swift",
    "content": "protocol UTF8Initializable {\n    init?(validatingUTF8: UnsafePointer<CChar>)\n}\n\nextension String : UTF8Initializable {}\n\nextension Array where Element : UTF8Initializable {\n\n    init(utf8Strings: UnsafePointer<CChar>) {\n        var strings = [Element]()\n        var pointer = utf8Strings\n        while let string = Element(validatingUTF8: pointer) {\n            strings.append(string)\n            while pointer.pointee != 0 {\n                pointer.advance()\n            }\n            pointer.advance()\n            guard pointer.pointee != 0 else { break }\n        }\n        self = strings\n    }\n\n}\n"
  },
  {
    "path": "Example/Pods/Reflection/Sources/Reflection/Construct.swift",
    "content": "/// Create a struct with a constructor method. Return a value of `property.type` for each property.\npublic func construct<T>(_ type: T.Type = T.self, constructor: (Property.Description) throws -> Any) throws -> T {\n    if Metadata(type: T.self)?.kind == .struct {\n        return try constructValueType(constructor)\n    } else {\n        throw ReflectionError.notStruct(type: T.self)\n    }\n}\n\n/// Create a struct with a constructor method. Return a value of `property.type` for each property.\npublic func construct(_ type: Any.Type, constructor: (Property.Description) throws -> Any) throws -> Any {\n    return try extensions(of: type).construct(constructor: constructor)\n}\n\nprivate func constructValueType<T>(_ constructor: (Property.Description) throws -> Any) throws -> T {\n    guard Metadata(type: T.self)?.kind == .struct else { throw ReflectionError.notStruct(type: T.self) }\n    let pointer = UnsafeMutablePointer<T>.allocate(capacity: 1)\n    defer { pointer.deallocate(capacity: 1) }\n    var values: [Any] = []\n    try constructType(storage: UnsafeMutableRawPointer(pointer), values: &values, properties: properties(T.self), constructor: constructor)\n    return pointer.move()\n}\n\nprivate func constructType(storage: UnsafeMutableRawPointer, values: inout [Any], properties: [Property.Description], constructor: (Property.Description) throws -> Any) throws {\n    var errors = [Error]()\n    for property in properties {\n        do {\n            let value = try constructor(property)\n            values.append(value)\n            try property.write(value, to: storage)\n        } catch {\n            errors.append(error)\n        }\n    }\n    if errors.count > 0 {\n        throw ConstructionErrors(errors: errors)\n    }\n}\n\n/// Create a struct from a dictionary.\npublic func construct<T>(_ type: T.Type = T.self, dictionary: [String: Any]) throws -> T {\n    return try construct(constructor: constructorForDictionary(dictionary))\n}\n\n/// Create a struct from a dictionary.\npublic func construct(_ type: Any.Type, dictionary: [String: Any]) throws -> Any {\n    return try extensions(of: type).construct(dictionary: dictionary)\n}\n\nprivate func constructorForDictionary(_ dictionary: [String: Any]) -> (Property.Description) throws -> Any {\n    return { property in\n        if let value = dictionary[property.key] {\n            return value\n        } else if let expressibleByNilLiteral = property.type as? ExpressibleByNilLiteral.Type {\n            return expressibleByNilLiteral.init(nilLiteral: ())\n        } else {\n            throw ReflectionError.requiredValueMissing(key: property.key)\n        }\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Reflection/Sources/Reflection/Get.swift",
    "content": "/// Get value for key from instance\npublic func get(_ key: String, from instance: Any) throws -> Any {\n    guard let value = try properties(instance).first(where: { $0.key == key })?.value else {\n        throw ReflectionError.instanceHasNoKey(type: type(of: instance), key: key)\n    }\n    return value\n}\n\n/// Get value for key from instance as type `T`\npublic func get<T>(_ key: String, from instance: Any) throws -> T {\n    let any: Any = try get(key, from: instance)\n    guard let value = any as? T else {\n        throw ReflectionError.valueIsNotType(value: any, type: T.self)\n    }\n    return value\n}\n"
  },
  {
    "path": "Example/Pods/Reflection/Sources/Reflection/Identity.swift",
    "content": "/// Tests if `value` is `type` or a subclass of `type`\npublic func value(_ value: Any, is type: Any.Type) -> Bool {\n    return extensions(of: type).isValueTypeOrSubtype(value)\n}\n\n/// Tests equality of any two existential types\npublic func ==(lhs: Any.Type, rhs: Any.Type) -> Bool {\n    return Metadata(type: lhs) == Metadata(type: rhs)\n}\n"
  },
  {
    "path": "Example/Pods/Reflection/Sources/Reflection/MemoryProperties.swift",
    "content": "public func alignof(_ x: Any.Type) -> Int {\n    return Metadata(type: x).valueWitnessTable.align\n}\n\npublic func sizeof(_ x: Any.Type) -> Int {\n    return Metadata(type: x).valueWitnessTable.size\n}\n\npublic func strideof(_ x: Any.Type) -> Int {\n    return Metadata(type: x).valueWitnessTable.stride\n}\n\npublic func alignofValue(_ x: Any) -> Int {\n    return alignof(type(of: x))\n}\n\npublic func sizeofValue(_ x: Any) -> Int {\n    return sizeof(type(of: x))\n}\n\npublic func strideofValue(_ x: Any) -> Int {\n    return strideof(type(of: x))\n}\n"
  },
  {
    "path": "Example/Pods/Reflection/Sources/Reflection/Metadata+Class.swift",
    "content": "extension Metadata {\n    struct Class : NominalType {\n\n        static let kind: Kind? = .class\n        var pointer: UnsafePointer<_Metadata._Class>\n\n        var nominalTypeDescriptorOffsetLocation: Int {\n            return is64BitPlatform ? 8 : 11\n        }\n\n        var superclass: Class? {\n            guard let superclass = pointer.pointee.superclass else { return nil }\n            return Metadata.Class(type: superclass)\n        }\n\n    }\n}\n\nextension _Metadata {\n    struct _Class {\n        var kind: Int\n        var superclass: Any.Type?\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Reflection/Sources/Reflection/Metadata+Kind.swift",
    "content": "// https://github.com/apple/swift/blob/swift-3.0-branch/include/swift/ABI/MetadataKind.def\nextension Metadata {\n    static let kind: Kind? = nil\n\n    enum Kind {\n        case `struct`\n        case `enum`\n        case optional\n        case opaque\n        case tuple\n        case function\n        case existential\n        case metatype\n        case objCClassWrapper\n        case existentialMetatype\n        case foreignClass\n        case heapLocalVariable\n        case heapGenericLocalVariable\n        case errorObject\n        case `class`\n        init(flag: Int) {\n            switch flag {\n            case 1: self = .struct\n            case 2: self = .enum\n            case 3: self = .optional\n            case 8: self = .opaque\n            case 9: self = .tuple\n            case 10: self = .function\n            case 12: self = .existential\n            case 13: self = .metatype\n            case 14: self = .objCClassWrapper\n            case 15: self = .existentialMetatype\n            case 16: self = .foreignClass\n            case 64: self = .heapLocalVariable\n            case 65: self = .heapGenericLocalVariable\n            case 128: self = .errorObject\n            default: self = .class\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Reflection/Sources/Reflection/Metadata+Struct.swift",
    "content": "extension Metadata {\n    struct Struct : NominalType {\n        static let kind: Kind? = .struct\n        var pointer: UnsafePointer<_Metadata._Struct>\n        var nominalTypeDescriptorOffsetLocation: Int {\n            return 1\n        }\n    }\n}\n\nextension _Metadata {\n    struct _Struct {\n        var kind: Int\n        var nominalTypeDescriptorOffset: Int\n        var parent: Metadata?\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Reflection/Sources/Reflection/Metadata+Tuple.swift",
    "content": "extension Metadata {\n    struct Tuple : MetadataType {\n        static let kind: Kind? = .tuple\n        var pointer: UnsafePointer<Int>\n        var labels: [String?] {\n            guard var pointer = UnsafePointer<CChar>(bitPattern: pointer[2]) else { return [] }\n            var labels = [String?]()\n            var string = \"\"\n            while pointer.pointee != 0 {\n                guard pointer.pointee != 32 else {\n                    labels.append(string.isEmpty ? nil : string)\n                    string = \"\"\n                    pointer.advance()\n                    continue\n                }\n                string.append(String(UnicodeScalar(UInt8(bitPattern: pointer.pointee))))\n                pointer.advance()\n            }\n            return labels\n        }\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Reflection/Sources/Reflection/Metadata.swift",
    "content": "struct Metadata : MetadataType {\n    var pointer: UnsafePointer<Int>\n\n    init(type: Any.Type) {\n        self.init(pointer: unsafeBitCast(type, to: UnsafePointer<Int>.self))\n    }\n}\n\nstruct _Metadata {}\n\nvar is64BitPlatform: Bool {\n    return sizeof(Int.self) == sizeof(Int64.self)\n}\n"
  },
  {
    "path": "Example/Pods/Reflection/Sources/Reflection/MetadataType.swift",
    "content": "protocol MetadataType : PointerType {\n    static var kind: Metadata.Kind? { get }\n}\n\nextension MetadataType {\n    var valueWitnessTable: ValueWitnessTable {\n        return ValueWitnessTable(pointer: UnsafePointer<UnsafePointer<Int>>(pointer).advanced(by: -1).pointee)\n    }\n\n    var kind: Metadata.Kind {\n        return Metadata.Kind(flag: UnsafePointer<Int>(pointer).pointee)\n    }\n\n    init?(type: Any.Type) {\n        self.init(pointer: unsafeBitCast(type, to: UnsafePointer<Int>.self))\n        if let kind = type(of: self).kind, kind != self.kind {\n            return nil\n        }\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Reflection/Sources/Reflection/NominalType.swift",
    "content": "protocol NominalType : MetadataType {\n    var nominalTypeDescriptorOffsetLocation: Int { get }\n}\n\nextension NominalType {\n    var nominalTypeDescriptor: NominalTypeDescriptor {\n        let pointer = UnsafePointer<Int>(self.pointer)\n        let base = pointer.advanced(by: nominalTypeDescriptorOffsetLocation)\n        return NominalTypeDescriptor(pointer: relativePointer(base: base, offset: base.pointee))\n    }\n\n    var fieldTypes: [Any.Type]? {\n        guard let function = nominalTypeDescriptor.fieldTypesAccessor else { return nil }\n        return (0..<nominalTypeDescriptor.numberOfFields).map {\n            return unsafeBitCast(function(UnsafePointer<Int>(pointer)).advanced(by: $0).pointee, to: Any.Type.self)\n        }\n    }\n\n    var fieldOffsets: [Int]? {\n        let vectorOffset = nominalTypeDescriptor.fieldOffsetVector\n        guard vectorOffset != 0 else { return nil }\n        return (0..<nominalTypeDescriptor.numberOfFields).map {\n            return UnsafePointer<Int>(pointer)[vectorOffset + $0]\n        }\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Reflection/Sources/Reflection/NominalTypeDescriptor.swift",
    "content": "struct NominalTypeDescriptor : PointerType {\n    var pointer: UnsafePointer<_NominalTypeDescriptor>\n\n    var mangledName: String {\n        return String(cString: relativePointer(base: pointer, offset: pointer.pointee.mangledName) as UnsafePointer<CChar>)\n    }\n\n    var numberOfFields: Int {\n        return Int(pointer.pointee.numberOfFields)\n    }\n\n    var fieldOffsetVector: Int {\n        return Int(pointer.pointee.fieldOffsetVector)\n    }\n\n    var fieldNames: [String] {\n        let p = UnsafePointer<Int32>(self.pointer)\n        return Array(utf8Strings: relativePointer(base: p.advanced(by: 3), offset: self.pointer.pointee.fieldNames))\n    }\n\n    typealias FieldsTypeAccessor = @convention(c) (UnsafePointer<Int>) -> UnsafePointer<UnsafePointer<Int>>\n\n    var fieldTypesAccessor: FieldsTypeAccessor? {\n        let offset = pointer.pointee.fieldTypesAccessor\n        guard offset != 0 else { return nil }\n        let p = UnsafePointer<Int32>(self.pointer)\n        let offsetPointer: UnsafePointer<Int> = relativePointer(base: p.advanced(by: 4), offset: offset)\n        return unsafeBitCast(offsetPointer, to: FieldsTypeAccessor.self)\n    }\n}\n\nstruct _NominalTypeDescriptor {\n    var mangledName: Int32\n    var numberOfFields: Int32\n    var fieldOffsetVector: Int32\n    var fieldNames: Int32\n    var fieldTypesAccessor: Int32\n}\n"
  },
  {
    "path": "Example/Pods/Reflection/Sources/Reflection/PointerType.swift",
    "content": "protocol PointerType : Equatable {\n    associatedtype Pointee\n    var pointer: UnsafePointer<Pointee> { get set }\n}\n\nextension PointerType {\n    init<T>(pointer: UnsafePointer<T>) {\n        func cast<T, U>(_ value: T) -> U {\n            return unsafeBitCast(value, to: U.self)\n        }\n        self = cast(UnsafePointer<Pointee>(pointer))\n    }\n}\n\nfunc ==<T : PointerType>(lhs: T, rhs: T) -> Bool {\n    return lhs.pointer == rhs.pointer\n}\n"
  },
  {
    "path": "Example/Pods/Reflection/Sources/Reflection/Properties.swift",
    "content": "private struct HashedType : Hashable {\n    let hashValue: Int\n    init(_ type: Any.Type) {\n        hashValue = unsafeBitCast(type, to: Int.self)\n    }\n}\n\nprivate func == (lhs: HashedType, rhs: HashedType) -> Bool {\n    return lhs.hashValue == rhs.hashValue\n}\n\nprivate var cachedProperties = [HashedType : Array<Property.Description>]()\n\n/// An instance property\npublic struct Property {\n    public let key: String\n    public let value: Any\n\n    /// An instance property description\n    public struct Description {\n        public let key: String\n        public let type: Any.Type\n        let offset: Int\n        func write(_ value: Any, to storage: UnsafeMutableRawPointer) throws {\n            return try extensions(of: type).write(value, to: storage.advanced(by: offset))\n        }\n    }\n}\n\n/// Retrieve properties for `instance`\npublic func properties(_ instance: Any) throws -> [Property] {\n    let props = try properties(type(of: instance))\n    var copy = extensions(of: instance)\n    let storage = copy.storage()\n    return props.map { nextProperty(description: $0, storage: storage) }\n}\n\nprivate func nextProperty(description: Property.Description, storage: UnsafeRawPointer) -> Property {\n    return Property(\n        key: description.key,\n        value: extensions(of: description.type).value(from: storage.advanced(by: description.offset))\n    )\n}\n\n/// Retrieve property descriptions for `type`\npublic func properties(_ type: Any.Type) throws -> [Property.Description] {\n    let hashedType = HashedType(type)\n    if let properties = cachedProperties[hashedType] {\n        return properties\n    } else if let nominalType = Metadata.Struct(type: type) {\n        return try fetchAndSaveProperties(nominalType: nominalType, hashedType: hashedType)\n    } else if let nominalType = Metadata.Class(type: type) {\n        return try fetchAndSaveProperties(nominalType: nominalType, hashedType: hashedType)\n    } else {\n        throw ReflectionError.notStruct(type: type)\n    }\n}\n\nprivate func fetchAndSaveProperties<T : NominalType>(nominalType: T, hashedType: HashedType) throws -> [Property.Description] {\n    let properties = try propertiesForNominalType(nominalType)\n    cachedProperties[hashedType] = properties\n    return properties\n}\n\nprivate func propertiesForNominalType<T : NominalType>(_ type: T) throws -> [Property.Description] {\n    guard type.nominalTypeDescriptor.numberOfFields != 0 else { return [] }\n    guard let fieldTypes = type.fieldTypes, let fieldOffsets = type.fieldOffsets else {\n        throw ReflectionError.unexpected\n    }\n    let fieldNames = type.nominalTypeDescriptor.fieldNames\n    return (0..<type.nominalTypeDescriptor.numberOfFields).map { i in\n        return Property.Description(key: fieldNames[i], type: fieldTypes[i], offset: fieldOffsets[i])\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Reflection/Sources/Reflection/ReflectionError.swift",
    "content": "public enum ReflectionError : Error, CustomStringConvertible, Equatable {\n    case notStruct(type: Any.Type)\n    case valueIsNotType(value: Any, type: Any.Type)\n    case instanceHasNoKey(type: Any.Type, key: String)\n    case requiredValueMissing(key: String)\n    case unexpected\n\n    public var description: String {\n        return \"Reflection Error: \\(caseDescription)\"\n    }\n\n    var caseDescription: String {\n        switch self {\n        case .notStruct(type: let type): return \"\\(type) is not a struct\"\n        case .valueIsNotType(value: let value, type: let type): return \"Cannot set value of type \\(type(of: value)) as \\(type)\"\n        case .instanceHasNoKey(type: let type, key: let key): return \"Instance of type \\(type) has no key \\(key)\"\n        case .requiredValueMissing(key: let key): return \"No value found for required key \\\"\\(key)\\\" in dictionary\"\n        case .unexpected: return \"An unexpected error has occured\"\n        }\n    }\n}\n\npublic func ==(lhs: ReflectionError, rhs: ReflectionError) -> Bool {\n    switch (lhs, rhs) {\n    case (.notStruct(type: let lhs), .notStruct(type: let rhs)): return lhs == rhs\n    case (.instanceHasNoKey(type: let lhsType, key: let lhsKey),\n          .instanceHasNoKey(type: let rhsType, key: let rhsKey)):\n        return lhsType == rhsType && lhsKey == rhsKey\n    case (.requiredValueMissing(key: let lhs), .requiredValueMissing(key: let rhs)): return lhs == rhs\n    case (.unexpected, .unexpected): return true\n    default: return lhs.description == rhs.description\n    }\n}\n\npublic struct ConstructionErrors : Error, CustomStringConvertible {\n    public let errors: [Error]\n    public var description: String {\n        return errors.reduce(\"Reflection Construction Errors:\") { $0 + \"\\n\\t\\($1)\" }\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Reflection/Sources/Reflection/RelativePointer.swift",
    "content": "func relativePointer<T, U, V>(base: UnsafePointer<T>, offset: U) -> UnsafePointer<V> where U : Integer {\n    return UnsafeRawPointer(base).advanced(by: Int(integer: offset)).assumingMemoryBound(to: V.self)\n}\n\nextension Int {\n    fileprivate init<T : Integer>(integer: T) {\n        switch integer {\n        case let value as Int: self = value\n        case let value as Int32: self = Int(value)\n        case let value as Int16: self = Int(value)\n        case let value as Int8: self = Int(value)\n        default: self = 0\n        }\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Reflection/Sources/Reflection/Set.swift",
    "content": "/// Set value for key of an instance\npublic func set(_ value: Any, key: String, for instance: inout Any) throws {\n    try property(type: type(of: instance), key: key).write(value, to: mutableStorage(instance: &instance))\n}\n\n/// Set value for key of an instance\npublic func set(_ value: Any, key: String, for instance: AnyObject) throws {\n    var copy: Any = instance\n    try set(value, key: key, for: &copy)\n}\n\n/// Set value for key of an instance\npublic func set<T>(_ value: Any, key: String, for instance: inout T) throws {\n    try property(type: T.self, key: key).write(value, to: mutableStorage(instance: &instance))\n}\n\nprivate func property(type: Any.Type, key: String) throws -> Property.Description {\n    guard let property = try properties(type).first(where: { $0.key == key }) else { throw ReflectionError.instanceHasNoKey(type: type, key: key) }\n    return property\n}\n"
  },
  {
    "path": "Example/Pods/Reflection/Sources/Reflection/Storage.swift",
    "content": "extension AnyExtensions {\n    \n    mutating func mutableStorage() -> UnsafeMutableRawPointer {\n        return Reflection.mutableStorage(instance: &self)\n    }\n    \n    mutating func storage() -> UnsafeRawPointer {\n        return Reflection.storage(instance: &self)\n    }\n    \n}\n\nfunc mutableStorage<T>(instance: inout T) -> UnsafeMutableRawPointer {\n    return UnsafeMutableRawPointer(mutating: storage(instance: &instance))\n}\n\nfunc storage<T>(instance: inout T) -> UnsafeRawPointer {\n    return withUnsafePointer(to: &instance) { pointer in\n        if type(of: instance) is AnyClass {\n            return UnsafeRawPointer(bitPattern: UnsafePointer<Int>(pointer).pointee)!\n        } else {\n            return UnsafeRawPointer(pointer)\n        }\n    }\n}\n"
  },
  {
    "path": "Example/Pods/Reflection/Sources/Reflection/UnsafePointer+Extensions.swift",
    "content": "//\n//  UnsafePointer+Extensions.swift\n//  Reflection\n//\n//  Created by Bradley Hilton on 10/29/16.\n//\n//\n\nextension UnsafePointer {\n    \n    init<T>(_ pointer: UnsafePointer<T>) {\n        self = UnsafeRawPointer(pointer).assumingMemoryBound(to: Pointee.self)\n    }\n    \n}\n"
  },
  {
    "path": "Example/Pods/Reflection/Sources/Reflection/ValueWitnessTable.swift",
    "content": "// https://github.com/apple/swift/blob/master/lib/IRGen/ValueWitness.h\nstruct ValueWitnessTable : PointerType {\n    var pointer: UnsafePointer<_ValueWitnessTable>\n\n    private var alignmentMask: Int {\n        return 0x0FFFF\n    }\n\n    var size: Int {\n        return pointer.pointee.size\n    }\n\n    var align: Int {\n        return (pointer.pointee.align & alignmentMask) + 1\n    }\n\n    var stride: Int {\n        return pointer.pointee.stride\n    }\n}\n\nstruct _ValueWitnessTable {\n    let destroyBuffer: Int\n    let initializeBufferWithCopyOfBuffer: Int\n    let projectBuffer: Int\n    let deallocateBuffer: Int\n    let destroy: Int\n    let initializeBufferWithCopy: Int\n    let initializeWithCopy: Int\n    let assignWithCopy: Int\n    let initializeBufferWithTake: Int\n    let initializeWithTake: Int\n    let assignWithTake: Int\n    let allocateBuffer: Int\n    let initializeBufferWithTakeOrBuffer: Int\n    let destroyArray: Int\n    let initializeArrayWithCopy: Int\n    let initializeArrayWithTakeFrontToBack: Int\n    let initializeArrayWithTakeBackToFront: Int\n    let size: Int\n    let align: Int\n    let stride: Int\n}\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Nimble/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n  <key>CFBundleDevelopmentRegion</key>\n  <string>en</string>\n  <key>CFBundleExecutable</key>\n  <string>${EXECUTABLE_NAME}</string>\n  <key>CFBundleIdentifier</key>\n  <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>\n  <key>CFBundleInfoDictionaryVersion</key>\n  <string>6.0</string>\n  <key>CFBundleName</key>\n  <string>${PRODUCT_NAME}</string>\n  <key>CFBundlePackageType</key>\n  <string>FMWK</string>\n  <key>CFBundleShortVersionString</key>\n  <string>5.1.1</string>\n  <key>CFBundleSignature</key>\n  <string>????</string>\n  <key>CFBundleVersion</key>\n  <string>${CURRENT_PROJECT_VERSION}</string>\n  <key>NSPrincipalClass</key>\n  <string></string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Nimble/Nimble-dummy.m",
    "content": "#import <Foundation/Foundation.h>\n@interface PodsDummy_Nimble : NSObject\n@end\n@implementation PodsDummy_Nimble\n@end\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Nimble/Nimble-prefix.pch",
    "content": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#endif\n\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Nimble/Nimble-umbrella.h",
    "content": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#endif\n\n#import \"CwlCatchException.h\"\n#import \"CwlCatchBadInstruction.h\"\n#import \"mach_excServer.h\"\n#import \"Nimble.h\"\n#import \"DSL.h\"\n#import \"NMBExceptionCapture.h\"\n#import \"NMBStringify.h\"\n\nFOUNDATION_EXPORT double NimbleVersionNumber;\nFOUNDATION_EXPORT const unsigned char NimbleVersionString[];\n\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Nimble/Nimble.modulemap",
    "content": "framework module Nimble {\n  umbrella header \"Nimble-umbrella.h\"\n\n  export *\n  module * { export * }\n}\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Nimble/Nimble.xcconfig",
    "content": "CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/Nimble\nENABLE_BITCODE = NO\nFRAMEWORK_SEARCH_PATHS = $(inherited) \"$(PLATFORM_DIR)/Developer/Library/Frameworks\"\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nHEADER_SEARCH_PATHS = \"${PODS_ROOT}/Headers/Private\" \"${PODS_ROOT}/Headers/Public\"\nOTHER_LDFLAGS = -weak-lswiftXCTest -weak_framework \"XCTest\"\nOTHER_SWIFT_FLAGS = $(inherited) \"-D\" \"COCOAPODS\"\nPODS_BUILD_DIR = $BUILD_DIR\nPODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_ROOT = ${SRCROOT}\nPRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\nSKIP_INSTALL = YES\n"
  },
  {
    "path": "Example/Pods/Target Support Files/PersistentStorageSerializable-OSX/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n  <key>CFBundleDevelopmentRegion</key>\n  <string>en</string>\n  <key>CFBundleExecutable</key>\n  <string>${EXECUTABLE_NAME}</string>\n  <key>CFBundleIdentifier</key>\n  <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>\n  <key>CFBundleInfoDictionaryVersion</key>\n  <string>6.0</string>\n  <key>CFBundleName</key>\n  <string>${PRODUCT_NAME}</string>\n  <key>CFBundlePackageType</key>\n  <string>FMWK</string>\n  <key>CFBundleShortVersionString</key>\n  <string>1.1.0</string>\n  <key>CFBundleSignature</key>\n  <string>????</string>\n  <key>CFBundleVersion</key>\n  <string>${CURRENT_PROJECT_VERSION}</string>\n  <key>NSPrincipalClass</key>\n  <string></string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/Pods/Target Support Files/PersistentStorageSerializable-OSX/PersistentStorageSerializable-OSX-dummy.m",
    "content": "#import <Foundation/Foundation.h>\n@interface PodsDummy_PersistentStorageSerializable_OSX : NSObject\n@end\n@implementation PodsDummy_PersistentStorageSerializable_OSX\n@end\n"
  },
  {
    "path": "Example/Pods/Target Support Files/PersistentStorageSerializable-OSX/PersistentStorageSerializable-OSX-prefix.pch",
    "content": "#ifdef __OBJC__\n#import <Cocoa/Cocoa.h>\n#endif\n\n"
  },
  {
    "path": "Example/Pods/Target Support Files/PersistentStorageSerializable-OSX/PersistentStorageSerializable-OSX-umbrella.h",
    "content": "#ifdef __OBJC__\n#import <Cocoa/Cocoa.h>\n#endif\n\n#import \"SwiftTryCatch.h\"\n\nFOUNDATION_EXPORT double PersistentStorageSerializableVersionNumber;\nFOUNDATION_EXPORT const unsigned char PersistentStorageSerializableVersionString[];\n\n"
  },
  {
    "path": "Example/Pods/Target Support Files/PersistentStorageSerializable-OSX/PersistentStorageSerializable-OSX.modulemap",
    "content": "framework module PersistentStorageSerializable {\n  umbrella header \"PersistentStorageSerializable-OSX-umbrella.h\"\n\n  export *\n  module * { export * }\n}\n"
  },
  {
    "path": "Example/Pods/Target Support Files/PersistentStorageSerializable-OSX/PersistentStorageSerializable-OSX.xcconfig",
    "content": "CODE_SIGN_IDENTITY =\nCONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/PersistentStorageSerializable-OSX\nFRAMEWORK_SEARCH_PATHS = $(inherited) \"$PODS_CONFIGURATION_BUILD_DIR/Reflection-OSX\"\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nHEADER_SEARCH_PATHS = \"${PODS_ROOT}/Headers/Private\" \"${PODS_ROOT}/Headers/Public\"\nOTHER_LDFLAGS = -framework \"Foundation\"\nOTHER_SWIFT_FLAGS = $(inherited) \"-D\" \"COCOAPODS\"\nPODS_BUILD_DIR = $BUILD_DIR\nPODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_ROOT = ${SRCROOT}\nPRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\nSKIP_INSTALL = YES\n"
  },
  {
    "path": "Example/Pods/Target Support Files/PersistentStorageSerializable-iOS/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n  <key>CFBundleDevelopmentRegion</key>\n  <string>en</string>\n  <key>CFBundleExecutable</key>\n  <string>${EXECUTABLE_NAME}</string>\n  <key>CFBundleIdentifier</key>\n  <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>\n  <key>CFBundleInfoDictionaryVersion</key>\n  <string>6.0</string>\n  <key>CFBundleName</key>\n  <string>${PRODUCT_NAME}</string>\n  <key>CFBundlePackageType</key>\n  <string>FMWK</string>\n  <key>CFBundleShortVersionString</key>\n  <string>1.1.0</string>\n  <key>CFBundleSignature</key>\n  <string>????</string>\n  <key>CFBundleVersion</key>\n  <string>${CURRENT_PROJECT_VERSION}</string>\n  <key>NSPrincipalClass</key>\n  <string></string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/Pods/Target Support Files/PersistentStorageSerializable-iOS/PersistentStorageSerializable-iOS-dummy.m",
    "content": "#import <Foundation/Foundation.h>\n@interface PodsDummy_PersistentStorageSerializable_iOS : NSObject\n@end\n@implementation PodsDummy_PersistentStorageSerializable_iOS\n@end\n"
  },
  {
    "path": "Example/Pods/Target Support Files/PersistentStorageSerializable-iOS/PersistentStorageSerializable-iOS-prefix.pch",
    "content": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#endif\n\n"
  },
  {
    "path": "Example/Pods/Target Support Files/PersistentStorageSerializable-iOS/PersistentStorageSerializable-iOS-umbrella.h",
    "content": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#endif\n\n#import \"SwiftTryCatch.h\"\n\nFOUNDATION_EXPORT double PersistentStorageSerializableVersionNumber;\nFOUNDATION_EXPORT const unsigned char PersistentStorageSerializableVersionString[];\n\n"
  },
  {
    "path": "Example/Pods/Target Support Files/PersistentStorageSerializable-iOS/PersistentStorageSerializable-iOS.modulemap",
    "content": "framework module PersistentStorageSerializable {\n  umbrella header \"PersistentStorageSerializable-iOS-umbrella.h\"\n\n  export *\n  module * { export * }\n}\n"
  },
  {
    "path": "Example/Pods/Target Support Files/PersistentStorageSerializable-iOS/PersistentStorageSerializable-iOS.xcconfig",
    "content": "CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/PersistentStorageSerializable-iOS\nFRAMEWORK_SEARCH_PATHS = $(inherited) \"$PODS_CONFIGURATION_BUILD_DIR/Reflection-iOS\"\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nHEADER_SEARCH_PATHS = \"${PODS_ROOT}/Headers/Private\" \"${PODS_ROOT}/Headers/Public\"\nOTHER_LDFLAGS = -framework \"Foundation\"\nOTHER_SWIFT_FLAGS = $(inherited) \"-D\" \"COCOAPODS\"\nPODS_BUILD_DIR = $BUILD_DIR\nPODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_ROOT = ${SRCROOT}\nPRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\nSKIP_INSTALL = YES\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_MacExample/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n  <key>CFBundleDevelopmentRegion</key>\n  <string>en</string>\n  <key>CFBundleExecutable</key>\n  <string>${EXECUTABLE_NAME}</string>\n  <key>CFBundleIdentifier</key>\n  <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>\n  <key>CFBundleInfoDictionaryVersion</key>\n  <string>6.0</string>\n  <key>CFBundleName</key>\n  <string>${PRODUCT_NAME}</string>\n  <key>CFBundlePackageType</key>\n  <string>FMWK</string>\n  <key>CFBundleShortVersionString</key>\n  <string>1.0.0</string>\n  <key>CFBundleSignature</key>\n  <string>????</string>\n  <key>CFBundleVersion</key>\n  <string>${CURRENT_PROJECT_VERSION}</string>\n  <key>NSPrincipalClass</key>\n  <string></string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_MacExample/Pods-PersistentStorageSerializable_MacExample-acknowledgements.markdown",
    "content": "# Acknowledgements\nThis application makes use of the following third party libraries:\n\n## PersistentStorageSerializable\n\nCopyright (c) 2017 IvanRublev <ivan@ivanrublev.me>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n\n## Reflection\n\nThe MIT License (MIT)\n\nCopyright (c) 2016 Brad Hilton\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\nGenerated by CocoaPods - https://cocoapods.org\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_MacExample/Pods-PersistentStorageSerializable_MacExample-acknowledgements.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>PreferenceSpecifiers</key>\n\t<array>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>This application makes use of the following third party libraries:</string>\n\t\t\t<key>Title</key>\n\t\t\t<string>Acknowledgements</string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>Copyright (c) 2017 IvanRublev &lt;ivan@ivanrublev.me&gt;\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n</string>\n\t\t\t<key>License</key>\n\t\t\t<string>MIT</string>\n\t\t\t<key>Title</key>\n\t\t\t<string>PersistentStorageSerializable</string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>The MIT License (MIT)\n\nCopyright (c) 2016 Brad Hilton\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n</string>\n\t\t\t<key>License</key>\n\t\t\t<string>MIT</string>\n\t\t\t<key>Title</key>\n\t\t\t<string>Reflection</string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>Generated by CocoaPods - https://cocoapods.org</string>\n\t\t\t<key>Title</key>\n\t\t\t<string></string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t</array>\n\t<key>StringsTable</key>\n\t<string>Acknowledgements</string>\n\t<key>Title</key>\n\t<string>Acknowledgements</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_MacExample/Pods-PersistentStorageSerializable_MacExample-dummy.m",
    "content": "#import <Foundation/Foundation.h>\n@interface PodsDummy_Pods_PersistentStorageSerializable_MacExample : NSObject\n@end\n@implementation PodsDummy_Pods_PersistentStorageSerializable_MacExample\n@end\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_MacExample/Pods-PersistentStorageSerializable_MacExample-frameworks.sh",
    "content": "#!/bin/sh\nset -e\n\necho \"mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\nmkdir -p \"${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n\nSWIFT_STDLIB_PATH=\"${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}\"\n\ninstall_framework()\n{\n  if [ -r \"${BUILT_PRODUCTS_DIR}/$1\" ]; then\n    local source=\"${BUILT_PRODUCTS_DIR}/$1\"\n  elif [ -r \"${BUILT_PRODUCTS_DIR}/$(basename \"$1\")\" ]; then\n    local source=\"${BUILT_PRODUCTS_DIR}/$(basename \"$1\")\"\n  elif [ -r \"$1\" ]; then\n    local source=\"$1\"\n  fi\n\n  local destination=\"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n\n  if [ -L \"${source}\" ]; then\n      echo \"Symlinked...\"\n      source=\"$(readlink \"${source}\")\"\n  fi\n\n  # use filter instead of exclude so missing patterns dont' throw errors\n  echo \"rsync -av --filter \\\"- CVS/\\\" --filter \\\"- .svn/\\\" --filter \\\"- .git/\\\" --filter \\\"- .hg/\\\" --filter \\\"- Headers\\\" --filter \\\"- PrivateHeaders\\\" --filter \\\"- Modules\\\" \\\"${source}\\\" \\\"${destination}\\\"\"\n  rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"\n\n  local basename\n  basename=\"$(basename -s .framework \"$1\")\"\n  binary=\"${destination}/${basename}.framework/${basename}\"\n  if ! [ -r \"$binary\" ]; then\n    binary=\"${destination}/${basename}\"\n  fi\n\n  # Strip invalid architectures so \"fat\" simulator / device frameworks work on device\n  if [[ \"$(file \"$binary\")\" == *\"dynamically linked shared library\"* ]]; then\n    strip_invalid_archs \"$binary\"\n  fi\n\n  # Resign the code if required by the build settings to avoid unstable apps\n  code_sign_if_enabled \"${destination}/$(basename \"$1\")\"\n\n  # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7.\n  if [ \"${XCODE_VERSION_MAJOR}\" -lt 7 ]; then\n    local swift_runtime_libs\n    swift_runtime_libs=$(xcrun otool -LX \"$binary\" | grep --color=never @rpath/libswift | sed -E s/@rpath\\\\/\\(.+dylib\\).*/\\\\1/g | uniq -u  && exit ${PIPESTATUS[0]})\n    for lib in $swift_runtime_libs; do\n      echo \"rsync -auv \\\"${SWIFT_STDLIB_PATH}/${lib}\\\" \\\"${destination}\\\"\"\n      rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"\n      code_sign_if_enabled \"${destination}/${lib}\"\n    done\n  fi\n}\n\n# Signs a framework with the provided identity\ncode_sign_if_enabled() {\n  if [ -n \"${EXPANDED_CODE_SIGN_IDENTITY}\" -a \"${CODE_SIGNING_REQUIRED}\" != \"NO\" -a \"${CODE_SIGNING_ALLOWED}\" != \"NO\" ]; then\n    # Use the current code_sign_identitiy\n    echo \"Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}\"\n    echo \"/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \\\"$1\\\"\"\n    /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \"$1\"\n  fi\n}\n\n# Strip invalid architectures\nstrip_invalid_archs() {\n  binary=\"$1\"\n  # Get architectures for current file\n  archs=\"$(lipo -info \"$binary\" | rev | cut -d ':' -f1 | rev)\"\n  stripped=\"\"\n  for arch in $archs; do\n    if ! [[ \"${VALID_ARCHS}\" == *\"$arch\"* ]]; then\n      # Strip non-valid architectures in-place\n      lipo -remove \"$arch\" -output \"$binary\" \"$binary\" || exit 1\n      stripped=\"$stripped $arch\"\n    fi\n  done\n  if [[ \"$stripped\" ]]; then\n    echo \"Stripped $binary of architectures:$stripped\"\n  fi\n}\n\n\nif [[ \"$CONFIGURATION\" == \"Debug\" ]]; then\n  install_framework \"$BUILT_PRODUCTS_DIR/PersistentStorageSerializable-OSX/PersistentStorageSerializable.framework\"\n  install_framework \"$BUILT_PRODUCTS_DIR/Reflection-OSX/Reflection.framework\"\nfi\nif [[ \"$CONFIGURATION\" == \"Release\" ]]; then\n  install_framework \"$BUILT_PRODUCTS_DIR/PersistentStorageSerializable-OSX/PersistentStorageSerializable.framework\"\n  install_framework \"$BUILT_PRODUCTS_DIR/Reflection-OSX/Reflection.framework\"\nfi\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_MacExample/Pods-PersistentStorageSerializable_MacExample-resources.sh",
    "content": "#!/bin/sh\nset -e\n\nmkdir -p \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\n\nRESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt\n> \"$RESOURCES_TO_COPY\"\n\nXCASSET_FILES=()\n\ncase \"${TARGETED_DEVICE_FAMILY}\" in\n  1,2)\n    TARGET_DEVICE_ARGS=\"--target-device ipad --target-device iphone\"\n    ;;\n  1)\n    TARGET_DEVICE_ARGS=\"--target-device iphone\"\n    ;;\n  2)\n    TARGET_DEVICE_ARGS=\"--target-device ipad\"\n    ;;\n  *)\n    TARGET_DEVICE_ARGS=\"--target-device mac\"\n    ;;\nesac\n\ninstall_resource()\n{\n  if [[ \"$1\" = /* ]] ; then\n    RESOURCE_PATH=\"$1\"\n  else\n    RESOURCE_PATH=\"${PODS_ROOT}/$1\"\n  fi\n  if [[ ! -e \"$RESOURCE_PATH\" ]] ; then\n    cat << EOM\nerror: Resource \"$RESOURCE_PATH\" not found. Run 'pod install' to update the copy resources script.\nEOM\n    exit 1\n  fi\n  case $RESOURCE_PATH in\n    *.storyboard)\n      echo \"ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \\\"$RESOURCE_PATH\\\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}\"\n      ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \\\"$RESOURCE_PATH\\\" .storyboard`.storyboardc\" \"$RESOURCE_PATH\" --sdk \"${SDKROOT}\" ${TARGET_DEVICE_ARGS}\n      ;;\n    *.xib)\n      echo \"ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \\\"$RESOURCE_PATH\\\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}\"\n      ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \\\"$RESOURCE_PATH\\\" .xib`.nib\" \"$RESOURCE_PATH\" --sdk \"${SDKROOT}\" ${TARGET_DEVICE_ARGS}\n      ;;\n    *.framework)\n      echo \"mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n      mkdir -p \"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n      echo \"rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n      rsync -av \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n      ;;\n    *.xcdatamodel)\n      echo \"xcrun momc \\\"$RESOURCE_PATH\\\" \\\"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\"`.mom\\\"\"\n      xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xcdatamodel`.mom\"\n      ;;\n    *.xcdatamodeld)\n      echo \"xcrun momc \\\"$RESOURCE_PATH\\\" \\\"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xcdatamodeld`.momd\\\"\"\n      xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xcdatamodeld`.momd\"\n      ;;\n    *.xcmappingmodel)\n      echo \"xcrun mapc \\\"$RESOURCE_PATH\\\" \\\"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xcmappingmodel`.cdm\\\"\"\n      xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xcmappingmodel`.cdm\"\n      ;;\n    *.xcassets)\n      ABSOLUTE_XCASSET_FILE=\"$RESOURCE_PATH\"\n      XCASSET_FILES+=(\"$ABSOLUTE_XCASSET_FILE\")\n      ;;\n    *)\n      echo \"$RESOURCE_PATH\"\n      echo \"$RESOURCE_PATH\" >> \"$RESOURCES_TO_COPY\"\n      ;;\n  esac\n}\n\nmkdir -p \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\nrsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from=\"$RESOURCES_TO_COPY\" / \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\nif [[ \"${ACTION}\" == \"install\" ]] && [[ \"${SKIP_INSTALL}\" == \"NO\" ]]; then\n  mkdir -p \"${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\n  rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from=\"$RESOURCES_TO_COPY\" / \"${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\nfi\nrm -f \"$RESOURCES_TO_COPY\"\n\nif [[ -n \"${WRAPPER_EXTENSION}\" ]] && [ \"`xcrun --find actool`\" ] && [ -n \"$XCASSET_FILES\" ]\nthen\n  # Find all other xcassets (this unfortunately includes those of path pods and other targets).\n  OTHER_XCASSETS=$(find \"$PWD\" -iname \"*.xcassets\" -type d)\n  while read line; do\n    if [[ $line != \"${PODS_ROOT}*\" ]]; then\n      XCASSET_FILES+=(\"$line\")\n    fi\n  done <<<\"$OTHER_XCASSETS\"\n\n  printf \"%s\\0\" \"${XCASSET_FILES[@]}\" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform \"${PLATFORM_NAME}\" --minimum-deployment-target \"${!DEPLOYMENT_TARGET_SETTING_NAME}\" ${TARGET_DEVICE_ARGS} --compress-pngs --compile \"${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\nfi\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_MacExample/Pods-PersistentStorageSerializable_MacExample-umbrella.h",
    "content": "#ifdef __OBJC__\n#import <Cocoa/Cocoa.h>\n#endif\n\n\nFOUNDATION_EXPORT double Pods_PersistentStorageSerializable_MacExampleVersionNumber;\nFOUNDATION_EXPORT const unsigned char Pods_PersistentStorageSerializable_MacExampleVersionString[];\n\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_MacExample/Pods-PersistentStorageSerializable_MacExample.debug.xcconfig",
    "content": "ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES\nCODE_SIGN_IDENTITY =\nEMBEDDED_CONTENT_CONTAINS_SWIFT = YES\nFRAMEWORK_SEARCH_PATHS = $(inherited) \"$PODS_CONFIGURATION_BUILD_DIR/PersistentStorageSerializable-OSX\" \"$PODS_CONFIGURATION_BUILD_DIR/Reflection-OSX\"\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nLD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/../Frameworks' '@loader_path/Frameworks'\nOTHER_CFLAGS = $(inherited) -iquote \"$PODS_CONFIGURATION_BUILD_DIR/PersistentStorageSerializable-OSX/PersistentStorageSerializable.framework/Headers\" -iquote \"$PODS_CONFIGURATION_BUILD_DIR/Reflection-OSX/Reflection.framework/Headers\"\nOTHER_LDFLAGS = $(inherited) -framework \"PersistentStorageSerializable\" -framework \"Reflection\"\nOTHER_SWIFT_FLAGS = $(inherited) \"-D\" \"COCOAPODS\"\nPODS_BUILD_DIR = $BUILD_DIR\nPODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_ROOT = ${SRCROOT}/Pods\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_MacExample/Pods-PersistentStorageSerializable_MacExample.modulemap",
    "content": "framework module Pods_PersistentStorageSerializable_MacExample {\n  umbrella header \"Pods-PersistentStorageSerializable_MacExample-umbrella.h\"\n\n  export *\n  module * { export * }\n}\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_MacExample/Pods-PersistentStorageSerializable_MacExample.release.xcconfig",
    "content": "ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES\nCODE_SIGN_IDENTITY =\nEMBEDDED_CONTENT_CONTAINS_SWIFT = YES\nFRAMEWORK_SEARCH_PATHS = $(inherited) \"$PODS_CONFIGURATION_BUILD_DIR/PersistentStorageSerializable-OSX\" \"$PODS_CONFIGURATION_BUILD_DIR/Reflection-OSX\"\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nLD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/../Frameworks' '@loader_path/Frameworks'\nOTHER_CFLAGS = $(inherited) -iquote \"$PODS_CONFIGURATION_BUILD_DIR/PersistentStorageSerializable-OSX/PersistentStorageSerializable.framework/Headers\" -iquote \"$PODS_CONFIGURATION_BUILD_DIR/Reflection-OSX/Reflection.framework/Headers\"\nOTHER_LDFLAGS = $(inherited) -framework \"PersistentStorageSerializable\" -framework \"Reflection\"\nOTHER_SWIFT_FLAGS = $(inherited) \"-D\" \"COCOAPODS\"\nPODS_BUILD_DIR = $BUILD_DIR\nPODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_ROOT = ${SRCROOT}/Pods\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_Tests/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n  <key>CFBundleDevelopmentRegion</key>\n  <string>en</string>\n  <key>CFBundleExecutable</key>\n  <string>${EXECUTABLE_NAME}</string>\n  <key>CFBundleIdentifier</key>\n  <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>\n  <key>CFBundleInfoDictionaryVersion</key>\n  <string>6.0</string>\n  <key>CFBundleName</key>\n  <string>${PRODUCT_NAME}</string>\n  <key>CFBundlePackageType</key>\n  <string>FMWK</string>\n  <key>CFBundleShortVersionString</key>\n  <string>1.0.0</string>\n  <key>CFBundleSignature</key>\n  <string>????</string>\n  <key>CFBundleVersion</key>\n  <string>${CURRENT_PROJECT_VERSION}</string>\n  <key>NSPrincipalClass</key>\n  <string></string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_Tests/Pods-PersistentStorageSerializable_Tests-acknowledgements.markdown",
    "content": "# Acknowledgements\nThis application makes use of the following third party libraries:\n\n## PersistentStorageSerializable\n\nCopyright (c) 2017 IvanRublev <ivan@ivanrublev.me>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n\n## Reflection\n\nThe MIT License (MIT)\n\nCopyright (c) 2016 Brad Hilton\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\n## Nimble\n\nApache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"{}\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright 2014 Quick Team\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n\n\n## Quick\n\nApache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"{}\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright 2014, Quick Team\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n\nGenerated by CocoaPods - https://cocoapods.org\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_Tests/Pods-PersistentStorageSerializable_Tests-acknowledgements.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>PreferenceSpecifiers</key>\n\t<array>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>This application makes use of the following third party libraries:</string>\n\t\t\t<key>Title</key>\n\t\t\t<string>Acknowledgements</string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>Copyright (c) 2017 IvanRublev &lt;ivan@ivanrublev.me&gt;\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n</string>\n\t\t\t<key>License</key>\n\t\t\t<string>MIT</string>\n\t\t\t<key>Title</key>\n\t\t\t<string>PersistentStorageSerializable</string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>The MIT License (MIT)\n\nCopyright (c) 2016 Brad Hilton\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n</string>\n\t\t\t<key>License</key>\n\t\t\t<string>MIT</string>\n\t\t\t<key>Title</key>\n\t\t\t<string>Reflection</string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"{}\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright 2014 Quick Team\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n</string>\n\t\t\t<key>License</key>\n\t\t\t<string>Apache 2.0</string>\n\t\t\t<key>Title</key>\n\t\t\t<string>Nimble</string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"{}\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright 2014, Quick Team\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n</string>\n\t\t\t<key>License</key>\n\t\t\t<string>Apache 2.0</string>\n\t\t\t<key>Title</key>\n\t\t\t<string>Quick</string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>Generated by CocoaPods - https://cocoapods.org</string>\n\t\t\t<key>Title</key>\n\t\t\t<string></string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t</array>\n\t<key>StringsTable</key>\n\t<string>Acknowledgements</string>\n\t<key>Title</key>\n\t<string>Acknowledgements</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_Tests/Pods-PersistentStorageSerializable_Tests-dummy.m",
    "content": "#import <Foundation/Foundation.h>\n@interface PodsDummy_Pods_PersistentStorageSerializable_Tests : NSObject\n@end\n@implementation PodsDummy_Pods_PersistentStorageSerializable_Tests\n@end\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_Tests/Pods-PersistentStorageSerializable_Tests-frameworks.sh",
    "content": "#!/bin/sh\nset -e\n\necho \"mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\nmkdir -p \"${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n\nSWIFT_STDLIB_PATH=\"${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}\"\n\ninstall_framework()\n{\n  if [ -r \"${BUILT_PRODUCTS_DIR}/$1\" ]; then\n    local source=\"${BUILT_PRODUCTS_DIR}/$1\"\n  elif [ -r \"${BUILT_PRODUCTS_DIR}/$(basename \"$1\")\" ]; then\n    local source=\"${BUILT_PRODUCTS_DIR}/$(basename \"$1\")\"\n  elif [ -r \"$1\" ]; then\n    local source=\"$1\"\n  fi\n\n  local destination=\"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n\n  if [ -L \"${source}\" ]; then\n      echo \"Symlinked...\"\n      source=\"$(readlink \"${source}\")\"\n  fi\n\n  # use filter instead of exclude so missing patterns dont' throw errors\n  echo \"rsync -av --filter \\\"- CVS/\\\" --filter \\\"- .svn/\\\" --filter \\\"- .git/\\\" --filter \\\"- .hg/\\\" --filter \\\"- Headers\\\" --filter \\\"- PrivateHeaders\\\" --filter \\\"- Modules\\\" \\\"${source}\\\" \\\"${destination}\\\"\"\n  rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"\n\n  local basename\n  basename=\"$(basename -s .framework \"$1\")\"\n  binary=\"${destination}/${basename}.framework/${basename}\"\n  if ! [ -r \"$binary\" ]; then\n    binary=\"${destination}/${basename}\"\n  fi\n\n  # Strip invalid architectures so \"fat\" simulator / device frameworks work on device\n  if [[ \"$(file \"$binary\")\" == *\"dynamically linked shared library\"* ]]; then\n    strip_invalid_archs \"$binary\"\n  fi\n\n  # Resign the code if required by the build settings to avoid unstable apps\n  code_sign_if_enabled \"${destination}/$(basename \"$1\")\"\n\n  # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7.\n  if [ \"${XCODE_VERSION_MAJOR}\" -lt 7 ]; then\n    local swift_runtime_libs\n    swift_runtime_libs=$(xcrun otool -LX \"$binary\" | grep --color=never @rpath/libswift | sed -E s/@rpath\\\\/\\(.+dylib\\).*/\\\\1/g | uniq -u  && exit ${PIPESTATUS[0]})\n    for lib in $swift_runtime_libs; do\n      echo \"rsync -auv \\\"${SWIFT_STDLIB_PATH}/${lib}\\\" \\\"${destination}\\\"\"\n      rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"\n      code_sign_if_enabled \"${destination}/${lib}\"\n    done\n  fi\n}\n\n# Signs a framework with the provided identity\ncode_sign_if_enabled() {\n  if [ -n \"${EXPANDED_CODE_SIGN_IDENTITY}\" -a \"${CODE_SIGNING_REQUIRED}\" != \"NO\" -a \"${CODE_SIGNING_ALLOWED}\" != \"NO\" ]; then\n    # Use the current code_sign_identitiy\n    echo \"Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}\"\n    echo \"/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \\\"$1\\\"\"\n    /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \"$1\"\n  fi\n}\n\n# Strip invalid architectures\nstrip_invalid_archs() {\n  binary=\"$1\"\n  # Get architectures for current file\n  archs=\"$(lipo -info \"$binary\" | rev | cut -d ':' -f1 | rev)\"\n  stripped=\"\"\n  for arch in $archs; do\n    if ! [[ \"${VALID_ARCHS}\" == *\"$arch\"* ]]; then\n      # Strip non-valid architectures in-place\n      lipo -remove \"$arch\" -output \"$binary\" \"$binary\" || exit 1\n      stripped=\"$stripped $arch\"\n    fi\n  done\n  if [[ \"$stripped\" ]]; then\n    echo \"Stripped $binary of architectures:$stripped\"\n  fi\n}\n\n\nif [[ \"$CONFIGURATION\" == \"Debug\" ]]; then\n  install_framework \"$BUILT_PRODUCTS_DIR/PersistentStorageSerializable-iOS/PersistentStorageSerializable.framework\"\n  install_framework \"$BUILT_PRODUCTS_DIR/Reflection-iOS/Reflection.framework\"\n  install_framework \"$BUILT_PRODUCTS_DIR/Nimble/Nimble.framework\"\n  install_framework \"$BUILT_PRODUCTS_DIR/Quick/Quick.framework\"\nfi\nif [[ \"$CONFIGURATION\" == \"Release\" ]]; then\n  install_framework \"$BUILT_PRODUCTS_DIR/PersistentStorageSerializable-iOS/PersistentStorageSerializable.framework\"\n  install_framework \"$BUILT_PRODUCTS_DIR/Reflection-iOS/Reflection.framework\"\n  install_framework \"$BUILT_PRODUCTS_DIR/Nimble/Nimble.framework\"\n  install_framework \"$BUILT_PRODUCTS_DIR/Quick/Quick.framework\"\nfi\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_Tests/Pods-PersistentStorageSerializable_Tests-resources.sh",
    "content": "#!/bin/sh\nset -e\n\nmkdir -p \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\n\nRESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt\n> \"$RESOURCES_TO_COPY\"\n\nXCASSET_FILES=()\n\ncase \"${TARGETED_DEVICE_FAMILY}\" in\n  1,2)\n    TARGET_DEVICE_ARGS=\"--target-device ipad --target-device iphone\"\n    ;;\n  1)\n    TARGET_DEVICE_ARGS=\"--target-device iphone\"\n    ;;\n  2)\n    TARGET_DEVICE_ARGS=\"--target-device ipad\"\n    ;;\n  *)\n    TARGET_DEVICE_ARGS=\"--target-device mac\"\n    ;;\nesac\n\ninstall_resource()\n{\n  if [[ \"$1\" = /* ]] ; then\n    RESOURCE_PATH=\"$1\"\n  else\n    RESOURCE_PATH=\"${PODS_ROOT}/$1\"\n  fi\n  if [[ ! -e \"$RESOURCE_PATH\" ]] ; then\n    cat << EOM\nerror: Resource \"$RESOURCE_PATH\" not found. Run 'pod install' to update the copy resources script.\nEOM\n    exit 1\n  fi\n  case $RESOURCE_PATH in\n    *.storyboard)\n      echo \"ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \\\"$RESOURCE_PATH\\\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}\"\n      ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \\\"$RESOURCE_PATH\\\" .storyboard`.storyboardc\" \"$RESOURCE_PATH\" --sdk \"${SDKROOT}\" ${TARGET_DEVICE_ARGS}\n      ;;\n    *.xib)\n      echo \"ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \\\"$RESOURCE_PATH\\\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}\"\n      ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \\\"$RESOURCE_PATH\\\" .xib`.nib\" \"$RESOURCE_PATH\" --sdk \"${SDKROOT}\" ${TARGET_DEVICE_ARGS}\n      ;;\n    *.framework)\n      echo \"mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n      mkdir -p \"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n      echo \"rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n      rsync -av \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n      ;;\n    *.xcdatamodel)\n      echo \"xcrun momc \\\"$RESOURCE_PATH\\\" \\\"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\"`.mom\\\"\"\n      xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xcdatamodel`.mom\"\n      ;;\n    *.xcdatamodeld)\n      echo \"xcrun momc \\\"$RESOURCE_PATH\\\" \\\"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xcdatamodeld`.momd\\\"\"\n      xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xcdatamodeld`.momd\"\n      ;;\n    *.xcmappingmodel)\n      echo \"xcrun mapc \\\"$RESOURCE_PATH\\\" \\\"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xcmappingmodel`.cdm\\\"\"\n      xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xcmappingmodel`.cdm\"\n      ;;\n    *.xcassets)\n      ABSOLUTE_XCASSET_FILE=\"$RESOURCE_PATH\"\n      XCASSET_FILES+=(\"$ABSOLUTE_XCASSET_FILE\")\n      ;;\n    *)\n      echo \"$RESOURCE_PATH\"\n      echo \"$RESOURCE_PATH\" >> \"$RESOURCES_TO_COPY\"\n      ;;\n  esac\n}\n\nmkdir -p \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\nrsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from=\"$RESOURCES_TO_COPY\" / \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\nif [[ \"${ACTION}\" == \"install\" ]] && [[ \"${SKIP_INSTALL}\" == \"NO\" ]]; then\n  mkdir -p \"${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\n  rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from=\"$RESOURCES_TO_COPY\" / \"${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\nfi\nrm -f \"$RESOURCES_TO_COPY\"\n\nif [[ -n \"${WRAPPER_EXTENSION}\" ]] && [ \"`xcrun --find actool`\" ] && [ -n \"$XCASSET_FILES\" ]\nthen\n  # Find all other xcassets (this unfortunately includes those of path pods and other targets).\n  OTHER_XCASSETS=$(find \"$PWD\" -iname \"*.xcassets\" -type d)\n  while read line; do\n    if [[ $line != \"${PODS_ROOT}*\" ]]; then\n      XCASSET_FILES+=(\"$line\")\n    fi\n  done <<<\"$OTHER_XCASSETS\"\n\n  printf \"%s\\0\" \"${XCASSET_FILES[@]}\" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform \"${PLATFORM_NAME}\" --minimum-deployment-target \"${!DEPLOYMENT_TARGET_SETTING_NAME}\" ${TARGET_DEVICE_ARGS} --compress-pngs --compile \"${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\nfi\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_Tests/Pods-PersistentStorageSerializable_Tests-umbrella.h",
    "content": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#endif\n\n\nFOUNDATION_EXPORT double Pods_PersistentStorageSerializable_TestsVersionNumber;\nFOUNDATION_EXPORT const unsigned char Pods_PersistentStorageSerializable_TestsVersionString[];\n\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_Tests/Pods-PersistentStorageSerializable_Tests.debug.xcconfig",
    "content": "ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES\nEMBEDDED_CONTENT_CONTAINS_SWIFT = YES\nFRAMEWORK_SEARCH_PATHS = $(inherited) $(PLATFORM_DIR)/Developer/Library/Frameworks \"$PODS_CONFIGURATION_BUILD_DIR/Nimble\" \"$PODS_CONFIGURATION_BUILD_DIR/PersistentStorageSerializable-iOS\" \"$PODS_CONFIGURATION_BUILD_DIR/Quick\" \"$PODS_CONFIGURATION_BUILD_DIR/Reflection-iOS\"\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nLD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'\nOTHER_CFLAGS = $(inherited) -iquote \"$PODS_CONFIGURATION_BUILD_DIR/Nimble/Nimble.framework/Headers\" -iquote \"$PODS_CONFIGURATION_BUILD_DIR/PersistentStorageSerializable-iOS/PersistentStorageSerializable.framework/Headers\" -iquote \"$PODS_CONFIGURATION_BUILD_DIR/Quick/Quick.framework/Headers\" -iquote \"$PODS_CONFIGURATION_BUILD_DIR/Reflection-iOS/Reflection.framework/Headers\"\nOTHER_LDFLAGS = $(inherited) -framework \"Nimble\" -framework \"PersistentStorageSerializable\" -framework \"Quick\" -framework \"Reflection\"\nOTHER_SWIFT_FLAGS = $(inherited) \"-D\" \"COCOAPODS\"\nPODS_BUILD_DIR = $BUILD_DIR\nPODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_ROOT = ${SRCROOT}/Pods\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_Tests/Pods-PersistentStorageSerializable_Tests.modulemap",
    "content": "framework module Pods_PersistentStorageSerializable_Tests {\n  umbrella header \"Pods-PersistentStorageSerializable_Tests-umbrella.h\"\n\n  export *\n  module * { export * }\n}\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_Tests/Pods-PersistentStorageSerializable_Tests.release.xcconfig",
    "content": "ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES\nEMBEDDED_CONTENT_CONTAINS_SWIFT = YES\nFRAMEWORK_SEARCH_PATHS = $(inherited) $(PLATFORM_DIR)/Developer/Library/Frameworks \"$PODS_CONFIGURATION_BUILD_DIR/Nimble\" \"$PODS_CONFIGURATION_BUILD_DIR/PersistentStorageSerializable-iOS\" \"$PODS_CONFIGURATION_BUILD_DIR/Quick\" \"$PODS_CONFIGURATION_BUILD_DIR/Reflection-iOS\"\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nLD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'\nOTHER_CFLAGS = $(inherited) -iquote \"$PODS_CONFIGURATION_BUILD_DIR/Nimble/Nimble.framework/Headers\" -iquote \"$PODS_CONFIGURATION_BUILD_DIR/PersistentStorageSerializable-iOS/PersistentStorageSerializable.framework/Headers\" -iquote \"$PODS_CONFIGURATION_BUILD_DIR/Quick/Quick.framework/Headers\" -iquote \"$PODS_CONFIGURATION_BUILD_DIR/Reflection-iOS/Reflection.framework/Headers\"\nOTHER_LDFLAGS = $(inherited) -framework \"Nimble\" -framework \"PersistentStorageSerializable\" -framework \"Quick\" -framework \"Reflection\"\nOTHER_SWIFT_FLAGS = $(inherited) \"-D\" \"COCOAPODS\"\nPODS_BUILD_DIR = $BUILD_DIR\nPODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_ROOT = ${SRCROOT}/Pods\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_iOSExample/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n  <key>CFBundleDevelopmentRegion</key>\n  <string>en</string>\n  <key>CFBundleExecutable</key>\n  <string>${EXECUTABLE_NAME}</string>\n  <key>CFBundleIdentifier</key>\n  <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>\n  <key>CFBundleInfoDictionaryVersion</key>\n  <string>6.0</string>\n  <key>CFBundleName</key>\n  <string>${PRODUCT_NAME}</string>\n  <key>CFBundlePackageType</key>\n  <string>FMWK</string>\n  <key>CFBundleShortVersionString</key>\n  <string>1.0.0</string>\n  <key>CFBundleSignature</key>\n  <string>????</string>\n  <key>CFBundleVersion</key>\n  <string>${CURRENT_PROJECT_VERSION}</string>\n  <key>NSPrincipalClass</key>\n  <string></string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_iOSExample/Pods-PersistentStorageSerializable_iOSExample-acknowledgements.markdown",
    "content": "# Acknowledgements\nThis application makes use of the following third party libraries:\n\n## PersistentStorageSerializable\n\nCopyright (c) 2017 IvanRublev <ivan@ivanrublev.me>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n\n## Reflection\n\nThe MIT License (MIT)\n\nCopyright (c) 2016 Brad Hilton\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\nGenerated by CocoaPods - https://cocoapods.org\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_iOSExample/Pods-PersistentStorageSerializable_iOSExample-acknowledgements.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>PreferenceSpecifiers</key>\n\t<array>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>This application makes use of the following third party libraries:</string>\n\t\t\t<key>Title</key>\n\t\t\t<string>Acknowledgements</string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>Copyright (c) 2017 IvanRublev &lt;ivan@ivanrublev.me&gt;\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n</string>\n\t\t\t<key>License</key>\n\t\t\t<string>MIT</string>\n\t\t\t<key>Title</key>\n\t\t\t<string>PersistentStorageSerializable</string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>The MIT License (MIT)\n\nCopyright (c) 2016 Brad Hilton\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n</string>\n\t\t\t<key>License</key>\n\t\t\t<string>MIT</string>\n\t\t\t<key>Title</key>\n\t\t\t<string>Reflection</string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>Generated by CocoaPods - https://cocoapods.org</string>\n\t\t\t<key>Title</key>\n\t\t\t<string></string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t</array>\n\t<key>StringsTable</key>\n\t<string>Acknowledgements</string>\n\t<key>Title</key>\n\t<string>Acknowledgements</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_iOSExample/Pods-PersistentStorageSerializable_iOSExample-dummy.m",
    "content": "#import <Foundation/Foundation.h>\n@interface PodsDummy_Pods_PersistentStorageSerializable_iOSExample : NSObject\n@end\n@implementation PodsDummy_Pods_PersistentStorageSerializable_iOSExample\n@end\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_iOSExample/Pods-PersistentStorageSerializable_iOSExample-frameworks.sh",
    "content": "#!/bin/sh\nset -e\n\necho \"mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\nmkdir -p \"${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n\nSWIFT_STDLIB_PATH=\"${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}\"\n\ninstall_framework()\n{\n  if [ -r \"${BUILT_PRODUCTS_DIR}/$1\" ]; then\n    local source=\"${BUILT_PRODUCTS_DIR}/$1\"\n  elif [ -r \"${BUILT_PRODUCTS_DIR}/$(basename \"$1\")\" ]; then\n    local source=\"${BUILT_PRODUCTS_DIR}/$(basename \"$1\")\"\n  elif [ -r \"$1\" ]; then\n    local source=\"$1\"\n  fi\n\n  local destination=\"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n\n  if [ -L \"${source}\" ]; then\n      echo \"Symlinked...\"\n      source=\"$(readlink \"${source}\")\"\n  fi\n\n  # use filter instead of exclude so missing patterns dont' throw errors\n  echo \"rsync -av --filter \\\"- CVS/\\\" --filter \\\"- .svn/\\\" --filter \\\"- .git/\\\" --filter \\\"- .hg/\\\" --filter \\\"- Headers\\\" --filter \\\"- PrivateHeaders\\\" --filter \\\"- Modules\\\" \\\"${source}\\\" \\\"${destination}\\\"\"\n  rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"\n\n  local basename\n  basename=\"$(basename -s .framework \"$1\")\"\n  binary=\"${destination}/${basename}.framework/${basename}\"\n  if ! [ -r \"$binary\" ]; then\n    binary=\"${destination}/${basename}\"\n  fi\n\n  # Strip invalid architectures so \"fat\" simulator / device frameworks work on device\n  if [[ \"$(file \"$binary\")\" == *\"dynamically linked shared library\"* ]]; then\n    strip_invalid_archs \"$binary\"\n  fi\n\n  # Resign the code if required by the build settings to avoid unstable apps\n  code_sign_if_enabled \"${destination}/$(basename \"$1\")\"\n\n  # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7.\n  if [ \"${XCODE_VERSION_MAJOR}\" -lt 7 ]; then\n    local swift_runtime_libs\n    swift_runtime_libs=$(xcrun otool -LX \"$binary\" | grep --color=never @rpath/libswift | sed -E s/@rpath\\\\/\\(.+dylib\\).*/\\\\1/g | uniq -u  && exit ${PIPESTATUS[0]})\n    for lib in $swift_runtime_libs; do\n      echo \"rsync -auv \\\"${SWIFT_STDLIB_PATH}/${lib}\\\" \\\"${destination}\\\"\"\n      rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"\n      code_sign_if_enabled \"${destination}/${lib}\"\n    done\n  fi\n}\n\n# Signs a framework with the provided identity\ncode_sign_if_enabled() {\n  if [ -n \"${EXPANDED_CODE_SIGN_IDENTITY}\" -a \"${CODE_SIGNING_REQUIRED}\" != \"NO\" -a \"${CODE_SIGNING_ALLOWED}\" != \"NO\" ]; then\n    # Use the current code_sign_identitiy\n    echo \"Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}\"\n    echo \"/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \\\"$1\\\"\"\n    /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \"$1\"\n  fi\n}\n\n# Strip invalid architectures\nstrip_invalid_archs() {\n  binary=\"$1\"\n  # Get architectures for current file\n  archs=\"$(lipo -info \"$binary\" | rev | cut -d ':' -f1 | rev)\"\n  stripped=\"\"\n  for arch in $archs; do\n    if ! [[ \"${VALID_ARCHS}\" == *\"$arch\"* ]]; then\n      # Strip non-valid architectures in-place\n      lipo -remove \"$arch\" -output \"$binary\" \"$binary\" || exit 1\n      stripped=\"$stripped $arch\"\n    fi\n  done\n  if [[ \"$stripped\" ]]; then\n    echo \"Stripped $binary of architectures:$stripped\"\n  fi\n}\n\n\nif [[ \"$CONFIGURATION\" == \"Debug\" ]]; then\n  install_framework \"$BUILT_PRODUCTS_DIR/PersistentStorageSerializable-iOS/PersistentStorageSerializable.framework\"\n  install_framework \"$BUILT_PRODUCTS_DIR/Reflection-iOS/Reflection.framework\"\nfi\nif [[ \"$CONFIGURATION\" == \"Release\" ]]; then\n  install_framework \"$BUILT_PRODUCTS_DIR/PersistentStorageSerializable-iOS/PersistentStorageSerializable.framework\"\n  install_framework \"$BUILT_PRODUCTS_DIR/Reflection-iOS/Reflection.framework\"\nfi\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_iOSExample/Pods-PersistentStorageSerializable_iOSExample-resources.sh",
    "content": "#!/bin/sh\nset -e\n\nmkdir -p \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\n\nRESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt\n> \"$RESOURCES_TO_COPY\"\n\nXCASSET_FILES=()\n\ncase \"${TARGETED_DEVICE_FAMILY}\" in\n  1,2)\n    TARGET_DEVICE_ARGS=\"--target-device ipad --target-device iphone\"\n    ;;\n  1)\n    TARGET_DEVICE_ARGS=\"--target-device iphone\"\n    ;;\n  2)\n    TARGET_DEVICE_ARGS=\"--target-device ipad\"\n    ;;\n  *)\n    TARGET_DEVICE_ARGS=\"--target-device mac\"\n    ;;\nesac\n\ninstall_resource()\n{\n  if [[ \"$1\" = /* ]] ; then\n    RESOURCE_PATH=\"$1\"\n  else\n    RESOURCE_PATH=\"${PODS_ROOT}/$1\"\n  fi\n  if [[ ! -e \"$RESOURCE_PATH\" ]] ; then\n    cat << EOM\nerror: Resource \"$RESOURCE_PATH\" not found. Run 'pod install' to update the copy resources script.\nEOM\n    exit 1\n  fi\n  case $RESOURCE_PATH in\n    *.storyboard)\n      echo \"ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \\\"$RESOURCE_PATH\\\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}\"\n      ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \\\"$RESOURCE_PATH\\\" .storyboard`.storyboardc\" \"$RESOURCE_PATH\" --sdk \"${SDKROOT}\" ${TARGET_DEVICE_ARGS}\n      ;;\n    *.xib)\n      echo \"ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \\\"$RESOURCE_PATH\\\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}\"\n      ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \\\"$RESOURCE_PATH\\\" .xib`.nib\" \"$RESOURCE_PATH\" --sdk \"${SDKROOT}\" ${TARGET_DEVICE_ARGS}\n      ;;\n    *.framework)\n      echo \"mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n      mkdir -p \"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n      echo \"rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n      rsync -av \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n      ;;\n    *.xcdatamodel)\n      echo \"xcrun momc \\\"$RESOURCE_PATH\\\" \\\"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\"`.mom\\\"\"\n      xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xcdatamodel`.mom\"\n      ;;\n    *.xcdatamodeld)\n      echo \"xcrun momc \\\"$RESOURCE_PATH\\\" \\\"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xcdatamodeld`.momd\\\"\"\n      xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xcdatamodeld`.momd\"\n      ;;\n    *.xcmappingmodel)\n      echo \"xcrun mapc \\\"$RESOURCE_PATH\\\" \\\"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xcmappingmodel`.cdm\\\"\"\n      xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xcmappingmodel`.cdm\"\n      ;;\n    *.xcassets)\n      ABSOLUTE_XCASSET_FILE=\"$RESOURCE_PATH\"\n      XCASSET_FILES+=(\"$ABSOLUTE_XCASSET_FILE\")\n      ;;\n    *)\n      echo \"$RESOURCE_PATH\"\n      echo \"$RESOURCE_PATH\" >> \"$RESOURCES_TO_COPY\"\n      ;;\n  esac\n}\n\nmkdir -p \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\nrsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from=\"$RESOURCES_TO_COPY\" / \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\nif [[ \"${ACTION}\" == \"install\" ]] && [[ \"${SKIP_INSTALL}\" == \"NO\" ]]; then\n  mkdir -p \"${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\n  rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from=\"$RESOURCES_TO_COPY\" / \"${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\nfi\nrm -f \"$RESOURCES_TO_COPY\"\n\nif [[ -n \"${WRAPPER_EXTENSION}\" ]] && [ \"`xcrun --find actool`\" ] && [ -n \"$XCASSET_FILES\" ]\nthen\n  # Find all other xcassets (this unfortunately includes those of path pods and other targets).\n  OTHER_XCASSETS=$(find \"$PWD\" -iname \"*.xcassets\" -type d)\n  while read line; do\n    if [[ $line != \"${PODS_ROOT}*\" ]]; then\n      XCASSET_FILES+=(\"$line\")\n    fi\n  done <<<\"$OTHER_XCASSETS\"\n\n  printf \"%s\\0\" \"${XCASSET_FILES[@]}\" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform \"${PLATFORM_NAME}\" --minimum-deployment-target \"${!DEPLOYMENT_TARGET_SETTING_NAME}\" ${TARGET_DEVICE_ARGS} --compress-pngs --compile \"${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\nfi\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_iOSExample/Pods-PersistentStorageSerializable_iOSExample-umbrella.h",
    "content": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#endif\n\n\nFOUNDATION_EXPORT double Pods_PersistentStorageSerializable_iOSExampleVersionNumber;\nFOUNDATION_EXPORT const unsigned char Pods_PersistentStorageSerializable_iOSExampleVersionString[];\n\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_iOSExample/Pods-PersistentStorageSerializable_iOSExample.debug.xcconfig",
    "content": "ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES\nEMBEDDED_CONTENT_CONTAINS_SWIFT = YES\nFRAMEWORK_SEARCH_PATHS = $(inherited) \"$PODS_CONFIGURATION_BUILD_DIR/PersistentStorageSerializable-iOS\" \"$PODS_CONFIGURATION_BUILD_DIR/Reflection-iOS\"\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nLD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'\nOTHER_CFLAGS = $(inherited) -iquote \"$PODS_CONFIGURATION_BUILD_DIR/PersistentStorageSerializable-iOS/PersistentStorageSerializable.framework/Headers\" -iquote \"$PODS_CONFIGURATION_BUILD_DIR/Reflection-iOS/Reflection.framework/Headers\"\nOTHER_LDFLAGS = $(inherited) -framework \"PersistentStorageSerializable\" -framework \"Reflection\"\nOTHER_SWIFT_FLAGS = $(inherited) \"-D\" \"COCOAPODS\"\nPODS_BUILD_DIR = $BUILD_DIR\nPODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_ROOT = ${SRCROOT}/Pods\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_iOSExample/Pods-PersistentStorageSerializable_iOSExample.modulemap",
    "content": "framework module Pods_PersistentStorageSerializable_iOSExample {\n  umbrella header \"Pods-PersistentStorageSerializable_iOSExample-umbrella.h\"\n\n  export *\n  module * { export * }\n}\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-PersistentStorageSerializable_iOSExample/Pods-PersistentStorageSerializable_iOSExample.release.xcconfig",
    "content": "ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES\nEMBEDDED_CONTENT_CONTAINS_SWIFT = YES\nFRAMEWORK_SEARCH_PATHS = $(inherited) \"$PODS_CONFIGURATION_BUILD_DIR/PersistentStorageSerializable-iOS\" \"$PODS_CONFIGURATION_BUILD_DIR/Reflection-iOS\"\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nLD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'\nOTHER_CFLAGS = $(inherited) -iquote \"$PODS_CONFIGURATION_BUILD_DIR/PersistentStorageSerializable-iOS/PersistentStorageSerializable.framework/Headers\" -iquote \"$PODS_CONFIGURATION_BUILD_DIR/Reflection-iOS/Reflection.framework/Headers\"\nOTHER_LDFLAGS = $(inherited) -framework \"PersistentStorageSerializable\" -framework \"Reflection\"\nOTHER_SWIFT_FLAGS = $(inherited) \"-D\" \"COCOAPODS\"\nPODS_BUILD_DIR = $BUILD_DIR\nPODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_ROOT = ${SRCROOT}/Pods\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Quick/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n  <key>CFBundleDevelopmentRegion</key>\n  <string>en</string>\n  <key>CFBundleExecutable</key>\n  <string>${EXECUTABLE_NAME}</string>\n  <key>CFBundleIdentifier</key>\n  <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>\n  <key>CFBundleInfoDictionaryVersion</key>\n  <string>6.0</string>\n  <key>CFBundleName</key>\n  <string>${PRODUCT_NAME}</string>\n  <key>CFBundlePackageType</key>\n  <string>FMWK</string>\n  <key>CFBundleShortVersionString</key>\n  <string>1.0.0</string>\n  <key>CFBundleSignature</key>\n  <string>????</string>\n  <key>CFBundleVersion</key>\n  <string>${CURRENT_PROJECT_VERSION}</string>\n  <key>NSPrincipalClass</key>\n  <string></string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Quick/Quick-dummy.m",
    "content": "#import <Foundation/Foundation.h>\n@interface PodsDummy_Quick : NSObject\n@end\n@implementation PodsDummy_Quick\n@end\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Quick/Quick-prefix.pch",
    "content": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#endif\n\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Quick/Quick-umbrella.h",
    "content": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#endif\n\n#import \"QuickConfiguration.h\"\n#import \"QCKDSL.h\"\n#import \"Quick.h\"\n#import \"QuickSpec.h\"\n\nFOUNDATION_EXPORT double QuickVersionNumber;\nFOUNDATION_EXPORT const unsigned char QuickVersionString[];\n\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Quick/Quick.modulemap",
    "content": "framework module Quick {\n  umbrella header \"Quick-umbrella.h\"\n\n  export *\n  module * { export * }\n}\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Quick/Quick.xcconfig",
    "content": "CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/Quick\nENABLE_BITCODE = NO\nFRAMEWORK_SEARCH_PATHS = $(inherited)  \"$(PLATFORM_DIR)/Developer/Library/Frameworks\"\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nHEADER_SEARCH_PATHS = \"${PODS_ROOT}/Headers/Private\" \"${PODS_ROOT}/Headers/Public\"\nOTHER_LDFLAGS = -framework \"XCTest\"\nOTHER_SWIFT_FLAGS = $(inherited) \"-D\" \"COCOAPODS\"\nPODS_BUILD_DIR = $BUILD_DIR\nPODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_ROOT = ${SRCROOT}\nPRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\nSKIP_INSTALL = YES\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Reflection-OSX/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n  <key>CFBundleDevelopmentRegion</key>\n  <string>en</string>\n  <key>CFBundleExecutable</key>\n  <string>${EXECUTABLE_NAME}</string>\n  <key>CFBundleIdentifier</key>\n  <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>\n  <key>CFBundleInfoDictionaryVersion</key>\n  <string>6.0</string>\n  <key>CFBundleName</key>\n  <string>${PRODUCT_NAME}</string>\n  <key>CFBundlePackageType</key>\n  <string>FMWK</string>\n  <key>CFBundleShortVersionString</key>\n  <string>0.14.3</string>\n  <key>CFBundleSignature</key>\n  <string>????</string>\n  <key>CFBundleVersion</key>\n  <string>${CURRENT_PROJECT_VERSION}</string>\n  <key>NSPrincipalClass</key>\n  <string></string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Reflection-OSX/Reflection-OSX-dummy.m",
    "content": "#import <Foundation/Foundation.h>\n@interface PodsDummy_Reflection_OSX : NSObject\n@end\n@implementation PodsDummy_Reflection_OSX\n@end\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Reflection-OSX/Reflection-OSX-prefix.pch",
    "content": "#ifdef __OBJC__\n#import <Cocoa/Cocoa.h>\n#endif\n\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Reflection-OSX/Reflection-OSX-umbrella.h",
    "content": "#ifdef __OBJC__\n#import <Cocoa/Cocoa.h>\n#endif\n\n\nFOUNDATION_EXPORT double ReflectionVersionNumber;\nFOUNDATION_EXPORT const unsigned char ReflectionVersionString[];\n\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Reflection-OSX/Reflection-OSX.modulemap",
    "content": "framework module Reflection {\n  umbrella header \"Reflection-OSX-umbrella.h\"\n\n  export *\n  module * { export * }\n}\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Reflection-OSX/Reflection-OSX.xcconfig",
    "content": "CODE_SIGN_IDENTITY =\nCONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/Reflection-OSX\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nHEADER_SEARCH_PATHS = \"${PODS_ROOT}/Headers/Private\" \"${PODS_ROOT}/Headers/Public\"\nOTHER_SWIFT_FLAGS = $(inherited) \"-D\" \"COCOAPODS\"\nPODS_BUILD_DIR = $BUILD_DIR\nPODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_ROOT = ${SRCROOT}\nPRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\nSKIP_INSTALL = YES\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Reflection-iOS/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n  <key>CFBundleDevelopmentRegion</key>\n  <string>en</string>\n  <key>CFBundleExecutable</key>\n  <string>${EXECUTABLE_NAME}</string>\n  <key>CFBundleIdentifier</key>\n  <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>\n  <key>CFBundleInfoDictionaryVersion</key>\n  <string>6.0</string>\n  <key>CFBundleName</key>\n  <string>${PRODUCT_NAME}</string>\n  <key>CFBundlePackageType</key>\n  <string>FMWK</string>\n  <key>CFBundleShortVersionString</key>\n  <string>0.14.3</string>\n  <key>CFBundleSignature</key>\n  <string>????</string>\n  <key>CFBundleVersion</key>\n  <string>${CURRENT_PROJECT_VERSION}</string>\n  <key>NSPrincipalClass</key>\n  <string></string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Reflection-iOS/Reflection-iOS-dummy.m",
    "content": "#import <Foundation/Foundation.h>\n@interface PodsDummy_Reflection_iOS : NSObject\n@end\n@implementation PodsDummy_Reflection_iOS\n@end\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Reflection-iOS/Reflection-iOS-prefix.pch",
    "content": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#endif\n\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Reflection-iOS/Reflection-iOS-umbrella.h",
    "content": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#endif\n\n\nFOUNDATION_EXPORT double ReflectionVersionNumber;\nFOUNDATION_EXPORT const unsigned char ReflectionVersionString[];\n\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Reflection-iOS/Reflection-iOS.modulemap",
    "content": "framework module Reflection {\n  umbrella header \"Reflection-iOS-umbrella.h\"\n\n  export *\n  module * { export * }\n}\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Reflection-iOS/Reflection-iOS.xcconfig",
    "content": "CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/Reflection-iOS\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nHEADER_SEARCH_PATHS = \"${PODS_ROOT}/Headers/Private\" \"${PODS_ROOT}/Headers/Public\"\nOTHER_SWIFT_FLAGS = $(inherited) \"-D\" \"COCOAPODS\"\nPODS_BUILD_DIR = $BUILD_DIR\nPODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_ROOT = ${SRCROOT}\nPRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\nSKIP_INSTALL = YES\n"
  },
  {
    "path": "Example/Tests/Car.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>Car.doors</key>\n\t<integer>7</integer>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/Tests/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>en</string>\n\t<key>CFBundleExecutable</key>\n\t<string>$(EXECUTABLE_NAME)</string>\n\t<key>CFBundleIdentifier</key>\n\t<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundleName</key>\n\t<string>$(PRODUCT_NAME)</string>\n\t<key>CFBundlePackageType</key>\n\t<string>BNDL</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>1.0</string>\n\t<key>CFBundleSignature</key>\n\t<string>????</string>\n\t<key>CFBundleVersion</key>\n\t<string>1</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/Tests/PersistentStorageMock.swift",
    "content": "//\n//  PersistentStorageMock.swift\n//  PersistentStorageSerializable\n//\n//  Created by Ivan Rublev on 4/5/17.\n//  Copyright © 2017 CocoaPods. All rights reserved.\n//\n\nimport Foundation\nimport PersistentStorageSerializable\n\nclass PersistentStorageMock: PersistentStorage {\n    var transactionWasBegan = false\n    \n    func beginTransaction() throws {\n        transactionWasBegan = true\n    }\n    \n    open static let shared: PersistentStorage = PersistentStorageMock()\n\n    var registeredDefaultValues: [String : Any]?\n    \n    func register(defaultValues: [String : Any]) {\n        registeredDefaultValues = defaultValues\n    }\n\n    typealias ValuesDictionary = Dictionary<String, Any>\n    var tempValues = ValuesDictionary()\n    var values = ValuesDictionary()\n    \n    public func get(valueOf key: String) -> Any? {\n        if let value = tempValues[key] {\n            return value\n        }\n        return values[key]\n    }\n    \n    enum InternalError: Error {\n        case Failure\n    }\n    var throwOnSet: InternalError?\n    \n    func set(value: Any?, for key: String) throws {\n        if let errorToThrow = throwOnSet {\n            throw errorToThrow\n        }\n        tempValues[key] = value\n    }\n    \n    var synchronizeWasCalled = false\n    \n    func finishTransaction() throws {\n        values = tempValues\n        tempValues.removeAll()\n        synchronizeWasCalled = true\n    }\n}\n"
  },
  {
    "path": "Example/Tests/PersistentStorageSerializableTests.swift",
    "content": "// https://github.com/Quick/Quick\n\nimport Quick\nimport Nimble\n@testable import PersistentStorageSerializable\n\nlet memoryStorage = PersistentStorageMock()\n\n// MARK: These are persistable types.\nstruct Person: PersistentStorageSerializable {\n    var name: String = \"Dory\"\n    var birthday: Date = Date()\n    var web: URL = URL(string: \"https://dory.me\")!\n    var age: Int = 25\n    var addressDistance: Dictionary<String, Float> = [\"Kensington rd. 75\" : 125.8, \"Portland ave. 15\" : 245.6]\n    var favoriteNumbers = [1, 7, 9]\n    \n    // MARK: Adopt PersistentStorageSerializable\n    var persistentStorage: PersistentStorage! = Person.defaultPersistentStorage\n    var persistentStorageKeyPrefix: String! = Person.defaultPersistentStorageKeyPrefix\n}\n\nextension Person {\n    static let defaultPersistentStorage = memoryStorage\n    static let defaultPersistentStorageKeyPrefix = \"Person\"\n}\n\nextension Person: Equatable {\n    static func == (lhs: Person, rhs: Person) -> Bool {\n        return\n            lhs.name == rhs.name &&\n            abs(rhs.birthday.timeIntervalSince(lhs.birthday)) < 0.2 &&\n            lhs.web == rhs.web &&\n            lhs.age == rhs.age &&\n            lhs.addressDistance == rhs.addressDistance &&\n            lhs.favoriteNumbers == rhs.favoriteNumbers\n    }\n}\n\nfinal class Vehicle: PersistentStorageSerializable {\n    var wheels: Int = 4\n    var doors: Int = 3\n    \n    // MARK: Adopt PersistentStorageSerializable\n    var persistentStorage: PersistentStorage!\n    var persistentStorageKeyPrefix: String! = \"Car\"\n}\n\nfinal class Location: NSObject, PersistentStorageSerializable {\n    dynamic var street: String = \"\"\n    dynamic var houseNo: Int = 0\n    \n    // MARK: Adopt PersistentStorageSerializable\n    var persistentStorage: PersistentStorage! = memoryStorage\n    var persistentStorageKeyPrefix: String! = \"Location\"\n}\n\nclass PersistableTypeTests: QuickSpec {\n    override func spec() {\n        let initialPerson = Person()\n        \n        describe(\"After first push of object to storage, initial values\") {\n            let aPerson = Person()\n            beforeEach {\n                memoryStorage.registeredDefaultValues = nil\n            }\n            \n            it(\"registered with storage.\") {\n                expect { try aPerson.pushToPersistentStorage() }.toNot(throwError())\n                expect(memoryStorage.registeredDefaultValues).toNot(beNil())\n            }\n            context(\"and on following push\") {\n                it(\"not registered with storage.\") {\n                    expect { try aPerson.pushToPersistentStorage() }.toNot(throwError())\n                    expect(memoryStorage.registeredDefaultValues).to(beNil())\n                }\n            }\n        }\n\n        describe(\"Swift class object properties values are\") {\n            let persistedDoors = 5\n            beforeEach {\n                memoryStorage.values[\"Car.doors\"] = persistedDoors\n            }\n            context(\"initialized from storage\") {\n                var car: Vehicle!\n                it(\"successfully initialized.\") {\n                    expect { car = try Vehicle(from: memoryStorage) }.toNot(throwError())\n                    expect(car.doors) == persistedDoors\n                }\n                context(\"modified and persisted to storage\") {\n                    let newWheels = 3\n                    it(\"successfully persisted.\") {\n                        car.wheels = newWheels\n                        expect { try car.persist() }.toNot(throwError())\n                        expect(memoryStorage.values[\"Car.wheels\"] as! Int?) == newWheels\n                    }\n                }\n            }\n        }\n        \n        describe(\"Swift class object properties values are\") {\n            context(\"initializable from plist\") {\n                var car: Vehicle!\n                var documentsCarUrl: URL?\n                beforeEach {\n                    let plistFileName = \"Car.plist\"\n                    let bundledCarUrl = URL(fileURLWithPath: Bundle(for: Vehicle.self).path(forResource: plistFileName, ofType: nil)!)\n                    let documentsUrl = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).last!\n                    documentsCarUrl = documentsUrl.appendingPathComponent(plistFileName)\n                    print(documentsCarUrl!)\n                    try? FileManager.default.removeItem(at: documentsCarUrl!)\n                    try! FileManager.default.copyItem(at: bundledCarUrl, to: documentsCarUrl!)\n                    expect { car = try Vehicle(from: PlistStorage(at: documentsCarUrl!), keyPrefix: \"Car\") }.toNot(throwError())\n                }\n                afterSuite {\n                    if let documentsCarUrl = documentsCarUrl {\n                        try? FileManager.default.removeItem(at: documentsCarUrl)\n                    }\n                }\n                it(\"successfully initialized.\") {\n                    expect(car.wheels) == 4\n                    expect(car.doors) == 7\n                }\n                context(\"modified and persisted\") {\n                    beforeEach {\n                        car.wheels = 3\n                        expect { try car.persist() }.toNot(throwError())\n                    }\n                    it(\"successfully persisted.\") {\n                        var car2: Vehicle!\n                        expect { car2 = try Vehicle(from: PlistStorage(at: documentsCarUrl!), keyPrefix: \"Car\") }.toNot(throwError())\n                        expect(car2.wheels) == 3\n                        expect(car2.doors) == 7\n                    }\n                }\n            }\n        }\n        \n        describe(\"NSObject descendant object properties values are\") {\n            var loc: Location!\n            let newStreet = \"Holmes\"\n            let newHouseNo = 128\n            beforeEach {\n                loc = Location()\n            }\n            context(\"when pushed\") {\n                it(\"persisted.\") {\n                    loc.street = newStreet\n                    loc.houseNo = newHouseNo\n                    expect { try loc.pushToPersistentStorage() }.toNot(throwError())\n                    expect(memoryStorage.values[loc.persistentStorageKey(for: \"street\")] as! String?) == newStreet\n                    expect(memoryStorage.values[loc.persistentStorageKey(for: \"houseNo\")] as! Int?) == newHouseNo\n                }\n            }\n            context(\"when pulled\") {\n                beforeEach {\n                    memoryStorage.values[loc.persistentStorageKey(for: \"street\")] = newStreet\n                    memoryStorage.values[loc.persistentStorageKey(for: \"houseNo\")] = newHouseNo\n                }\n                it(\"restored.\") {\n                    expect { try loc.pullFromPersistentStorage() }.toNot(throwError())\n                    expect(loc.street) == newStreet\n                    expect(loc.houseNo) == newHouseNo\n                }\n            }\n        }\n        \n        describe(\"Swift struct value properties values are\") {\n            var aPerson: Person!\n            \n            beforeEach {\n                aPerson = initialPerson\n            }\n            context(\"not persisted in storage\") {\n                beforeEach {\n                    memoryStorage.values.removeAll()\n                }\n                context(\"after pull\") {\n                    it(\"same as initial.\") {\n                        expect { try aPerson.pullFromPersistentStorage() }.toNot(throwError())\n                        expect(aPerson) == initialPerson\n                    }\n                }\n                context(\"modified\") {\n                    let newName = \"Mary Wong\"\n                    let newFavoriteNumbers = [2, 8, 5]\n                    beforeEach {\n                        aPerson.name = newName\n                        aPerson.favoriteNumbers = newFavoriteNumbers\n                    }\n                    context(\"then pushed and pulled from storage\") {\n                        beforeEach {\n                            try! aPerson.pushToPersistentStorage()\n                            aPerson = initialPerson\n                            try! aPerson.pullFromPersistentStorage()\n                        }\n                        it(\"keept modified.\") {\n                            expect(aPerson.name) == newName\n                            expect(aPerson.favoriteNumbers) == newFavoriteNumbers\n                        }\n                    }\n                }\n            }\n            context(\"persistent in storage\") {\n                let persistedPerson = Person(name: \"Ada\",\n                                             birthday: Date(timeIntervalSinceReferenceDate:0),\n                                             web: URL(string: \"https://ada.me\")!,\n                                             age: 23,\n                                             addressDistance: [\"Banhof st. 22\" : 178.1, \"Ludvig st. 55\": 345.8],\n                                             favoriteNumbers: [8, 3, 5],\n                                             persistentStorage: Person.defaultPersistentStorage,\n                                             persistentStorageKeyPrefix: Person.defaultPersistentStorageKeyPrefix)\n                beforeEach {\n                    memoryStorage.values[persistedPerson.persistentStorageKey(for: \"name\")] = persistedPerson.name\n                    memoryStorage.values[persistedPerson.persistentStorageKey(for: \"birthday\")] = persistedPerson.birthday\n                    memoryStorage.values[persistedPerson.persistentStorageKey(for: \"web\")] = persistedPerson.web\n                    memoryStorage.values[persistedPerson.persistentStorageKey(for: \"age\")] = persistedPerson.age\n                    memoryStorage.values[persistedPerson.persistentStorageKey(for: \"addressDistance\")] = persistedPerson.addressDistance\n                    memoryStorage.values[persistedPerson.persistentStorageKey(for: \"favoriteNumbers\")] = persistedPerson.favoriteNumbers\n                }\n                context(\"after pool\") {\n                    it(\"same as in storage.\") {\n                        expect { try aPerson.pullFromPersistentStorage() }.toNot(throwError())\n                        expect(aPerson) == persistedPerson\n                    }\n                }\n                \n                describe(\"Persistent representation dictionary\") {\n                    var dictionary: [String : Any]!\n                    var memoryStorageValuesCount = 0\n                    beforeEach {\n                        memoryStorageValuesCount = memoryStorage.values.count\n                        dictionary = try! persistedPerson.persistedDictionaryRepresentation()\n                    }\n                    it(\"same count as in storage.\") {\n                        expect(dictionary.count) == memoryStorageValuesCount\n                    }\n                }\n                \n                context(\"after remove from storage\") {\n                    beforeEach {\n                        try! persistedPerson.removeFromPersistentStorage()\n                    }\n                    describe(\"Storage\") {\n                        it(\"empty.\") {\n                            expect(memoryStorage.values.count) == 0\n                        }\n                    }\n                }\n            }\n        }\n        \n        describe(\"Swift struct properties values are\") {\n            context(\"persisted under custom keys in storage\") {\n                let name = \"Bob\"\n                let age = 55\n                beforeEach {\n                    memoryStorage.values[\"person.name\"] = name\n                    memoryStorage.values[\"person.age\"] = age\n                }\n                context(\"keys are mapped and we pull from storage\") {\n                    struct OtherPerson: PersistentStorageSerializable {\n                        var name: String = \"Dory\"\n                        var age: Int = 25\n                        \n                        // MARK: Adopt PersistentStorageSerializable\n                        var persistentStorage: PersistentStorage!\n                        var persistentStorageKeyPrefix: String!\n                        \n                        func persistentStorageKey(for propertyName: String) -> String {\n                            let keyMap = [\"name\": \"person.name\", \"age\": \"person.age\"]\n                            return keyMap[propertyName]!\n                        }\n                    }\n                    \n                    it(\"pulled with success.\") {\n                        var person = OtherPerson()\n                        expect { person = try OtherPerson(from: memoryStorage, keyPrefix: \"\") }.toNot(throwError())\n                        expect(person.name) == name\n                        expect(person.age) == age\n                    }\n                }\n            }\n        }\n       \n    }\n}\n\n// MARK: - This is Not persistable, will throw exception at runtime.\nstruct Address: PersistentStorageSerializable {\n    struct Street {\n        var name: String\n        var central: Bool\n    }\n    \n    var street: Street = Street(name: \"Kensington rd. 85\", central: true)\n    \n    // MARK: Adopt PersistentStorageSerializable\n    var persistentStorage: PersistentStorage! = memoryStorage\n    var persistentStorageKeyPrefix: String! = \"Address\"\n}\n\nclass UnpersistableTypeTests: QuickSpec {\n    override func spec() {\n        describe(\"Address object's properties values\") {\n            context(\"when pushed to storage\") {\n                it(\"throws an exception with street property because Street type is not a serializable type\") {\n                    let address = Address()\n                    expect { try address.pushToPersistentStorage() }.to(throwError(PersistentStorageSerializableError.UnsupportedValueTypeForKey(\"street\", PersistentStorageSerializableTypeError.CollectionElement(.NonPlistType))))\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "Example/Tests/SupportedSerializableTypeTests.swift",
    "content": "\n//\n//  PersistentStorageSerializableTypeTests.swift\n//  PersistentStorageSerializable\n//\n//  Created by Ivan Rublev on 4/7/17.\n//  Copyright © 2017 CocoaPods. All rights reserved.\n//\n\nimport Quick\nimport Nimble\n@testable import PersistentStorageSerializable\n\nclass PersistentStorageSerializableTypesTests: QuickSpec {\n    override func spec() {\n        describe(\"Properties value of\") {\n            context(\"supported types\") {\n                let someData: Data = \"Hello\".data(using: String.Encoding.utf8)!\n                let someDate: Date = Date(timeIntervalSinceReferenceDate: 1)\n                let arrayOfUrl = [URL(string: \"https://some.web\")!, URL(string: \"https://otherweb.com\")!]\n                it(\"serializable.\") {\n                    expect { try Person.serializable(value: someData as Any) }.toNot(throwError())\n                    expect { try Person.serializable(value: someDate as Any) }.toNot(throwError())\n                    expect { try Person.serializable(value: arrayOfUrl as Any) }.toNot(throwError())\n                }\n            }\n            context(\"unsupported type\") {\n                it(\"Not serializable\") {\n                    struct A {}\n                    expect { try Person.serializable(value: A() as Any) }.to(throwError(PersistentStorageSerializableTypeError.NonPlistType))\n                }\n            }\n            context(\"Collection type\") {\n                context(\"of supported type values\") {\n                    let array: [Any] = [1, 3.0, \"Hello\", URL(string:\"https://some.web\")!]\n                    let dictionary: [String : Any] = [\"one\" : 1, \"two\" : 3.0, \"three\" : \"Hello\", \"four\" : URL(string:\"https://some.web\")!]\n                    it(\"serializable.\") {\n                        expect { try Person.serializable(value: array) }.toNot(throwError())\n                        expect { try Person.serializable(value: dictionary) }.toNot(throwError())\n                    }\n                }\n                context(\"with optionals\") {\n                    let array: [Any] = [1, Optional(3.0) as Any]\n                    let dictionary: [String : Any] = [\"one\" : 1, \"two\" : Optional(3.0) as Any]\n                    it(\"Not serializable.\") {\n                        expect { try Person.serializable(value: array) }.to(throwError(PersistentStorageSerializableTypeError.CollectionElement(.UnsupportedOptional)))\n                        expect { try Person.serializable(value: dictionary) }.to(throwError(PersistentStorageSerializableTypeError.CollectionElement(.UnsupportedOptional)))\n                    }\n                }\n                context(\"with unsupported type values\") {\n                    let array: [Any] = [1, 3.0, Person()]\n                    let dictionary: [String : Any] = [\"one\" : 1, \"two\" : 3.0, \"three\" : Person()]\n                    it(\"Not serializable.\") {\n                        expect { try Person.serializable(value: array) }.to(throwError(PersistentStorageSerializableTypeError.CollectionElement(.NonPlistType)))\n                        expect { try Person.serializable(value: dictionary) }.to(throwError(PersistentStorageSerializableTypeError.CollectionElement(.NonPlistType)))\n                    }\n                }\n            }\n            context(\"Nested Collection type of supported type values\") {\n                let array: [Any] = [1, [3.0, [\"Hello\", [URL(string:\"https://some.web\")!]]]]\n                let dictionary: [String : Any] = [\"one\" : 1, \"nested\" : [\"two\" : 3.0, \"nested\" : [\"three\" : \"Hello\", \"nested\" : [\"four\" : URL(string:\"https://some.web\")!]]]]\n                it(\"serializable.\") {\n                    expect { try Person.serializable(value: array) }.toNot(throwError())\n                    expect { try Person.serializable(value: dictionary) }.toNot(throwError())\n                }\n            }\n        }\n        \n    }\n}\n"
  },
  {
    "path": "LICENSE",
    "content": "Copyright (c) 2017 IvanRublev <ivan@ivanrublev.me>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
  },
  {
    "path": "PersistentStorageSerializable/Assets/.gitkeep",
    "content": ""
  },
  {
    "path": "PersistentStorageSerializable/Classes/.gitkeep",
    "content": ""
  },
  {
    "path": "PersistentStorageSerializable/Classes/PersistentStorage.swift",
    "content": "//\n//  PersistentStorage.swift\n//  Pods\n//\n//  Created by Ivan Rublev on 4/5/17.\n//\n//\n\nimport Foundation\n\n/**\n    Abstract protocol to read/write from persistent system storage.\n */\npublic protocol PersistentStorage: class {\n    /// Begins sequence of operations with persistent storage. \n    func beginTransaction() throws\n    \n    /// Registers default values with storage. Like register(defaults:) method of UserDefaults.\n    ///\n    /// - Parameter defaultValues: Dictionary with defaults value.\n    func register(defaultValues: [String : Any])\n    \n    /// Returns a value from persistent storage for specified key.\n    ///\n    /// - Parameter key: Key to read\n    /// - Returns: Value from the persistent storage or nil if there is no value for the specified key.\n    func get(valueOf key: String) -> Any?\n    \n    /// Sets a value for specified key into persistent storage.\n    /// When value is nil then the key/value pair is removed from the storage.\n    /// Call synchronize() after all key/value pairs are set to commit changes to the storage.\n    ///\n    /// - Parameters:\n    ///   - value: Value to store\n    ///   - key: Key\n    /// - Throws: Storage write error.\n    func set(value: Any?, for key: String) throws\n    \n    /// Commits operations to the persistent storage.\n    func finishTransaction() throws\n}\n"
  },
  {
    "path": "PersistentStorageSerializable/Classes/PersistentStorageSerializable.swift",
    "content": "//\n//  PersistentStorageSerializable.swift\n//  Pods\n//\n//  Created by Ivan Rublev on 4/5/17.\n//\n//\n\nimport Foundation\nimport Reflection\n\npublic enum PersistentStorageSerializableError: Error {\n    case UnsupportedValueTypeForKey(String, PersistentStorageSerializableTypeError)\n    case FailedToGetIntancePropertyValueForName(String)\n}\n\n/**\n    Protocol for serialization of type with persistent storage.\n */\npublic protocol PersistentStorageSerializable {\n    /// Storage type to serialize with\n    var persistentStorage: PersistentStorage! { get set }\n    /// Prefix that will be used to make a key for every type's property value in persistant storage\n    var persistentStorageKeyPrefix: String! { get set }\n    \n    /// Values set in default initializer are registered as defaults with persistent storage.\n    init()\n    \n    init(from persistentStorage: PersistentStorage, keyPrefix: String?) throws\n    \n    // MARK: Optional\n    \n    /// Returns a key to be used in persistent storage to keep type instance property value.\n    /// Default implementation constructs the key by using persistentStorageKeyPrefix.\n    ///\n    /// - Parameter propertyName: Name of instanse property.\n    /// - Returns: Key for instance property value in persistance storage.\n    func persistentStorageKey(for propertyName: String) -> String\n}\n\npublic extension PersistentStorageSerializable {\n    /// Initializer calls default initializer then pulls properties values from persistent storage.\n    ///\n    /// - Parameters:\n    ///   - persistentStorage: Persistent storage to serialize with.\n    ///   - keyPrefix: Prefix for properties values key in persistent storage. If is not specified, then default value must be set in adopter type definition, or the `persistentStorageKey(for:)` function must be overloaded.\n    /// - Throws: Error of pulling from storage.\n    init(from persistentStorage: PersistentStorage, keyPrefix: String? = nil) throws {\n        self.init()\n        self.persistentStorage = persistentStorage\n        if let keyPrefix = keyPrefix {\n            self.persistentStorageKeyPrefix = keyPrefix\n        }\n        try pullFromPersistentStorage()\n    }\n    \n    /// Read all type instance properties (skipping declared in the protocol) values from the persistent storage.\n    /// If there is no value for a property in the persistent storage then keeps the instance's current property value.\n    ///\n    /// - Throws: Type instance property value setting error.\n    public mutating func pullFromPersistentStorage() throws {\n        try self.persistentStorage.beginTransaction()\n        try registerInstancePropertiesValueAsDefaultsWithStorageOnce()\n        try setEachSelfProperty { (key) -> Any? in\n            let storageKey = self.persistentStorageKey(for: key)\n            return self.persistentStorage.get(valueOf: storageKey)\n        }\n        try self.persistentStorage.finishTransaction()\n    }\n    \n    /// Implementation of persist()\n    public func pushToPersistentStorage() throws {\n        try self.persistentStorage.beginTransaction()\n        try registerInstancePropertiesValueAsDefaultsWithStorageOnce()\n        try eachSelfProperty { (key, value) in\n            let storageKey = self.persistentStorageKey(for: key)\n            do {\n                try Self.serializable(value: value)\n            }\n            catch let error as PersistentStorageSerializableTypeError {\n                throw PersistentStorageSerializableError.UnsupportedValueTypeForKey(key, error)\n            }\n            try self.persistentStorage.set(value: value, for: storageKey)\n        }\n        try self.persistentStorage.finishTransaction()\n    }\n    \n    /// Writes all type instance properties (skipping declared in the protocol) values to the persistent storage.\n    /// If instance's property value is nil then removes the value from the persistent storage.\n    ///\n    /// - Throws: Type instance property value reading error. Persistent storage write error.\n    public func persist() throws {\n        try pushToPersistentStorage()\n    }\n    \n    /// Removes data from persistent storage if was previosly there.\n    /// Uses current type properties names to search for values to remove.\n    ///\n    /// - Throws: Type properties description read error.\n    public func removeFromPersistentStorage() throws {\n        let allKeys = try persistedDictionaryRepresentation().keys\n        try self.persistentStorage.beginTransaction()\n        for key in allKeys {\n            try self.persistentStorage.set(value: nil, for: key)\n        }\n        try self.persistentStorage.finishTransaction()\n    }\n    \n    /// Returns dictionary representation of the persisted data for the type.\n    /// Uses current type properties names to get persisted data from the storage.\n    ///\n    /// - Returns: Dictionary with data.\n    /// - Throws: Type properties description read error.\n    public func persistedDictionaryRepresentation() throws -> [String : Any] {\n        var dictionary = [String : Any]()\n        try self.persistentStorage.beginTransaction()\n        let propertiesDescription = try properties(Self.self)\n        for desc in propertiesDescription {\n            let key = desc.key\n            let storageKey = self.persistentStorageKey(for: key)\n            if let value = self.persistentStorage.get(valueOf: storageKey) {\n                dictionary[storageKey] = value\n            }\n        }\n        try self.persistentStorage.finishTransaction()\n        return dictionary\n    }\n    \n    /// Default implementation\n    public func persistentStorageKey(for propertyName: String) -> String {\n        return String(format: \"%@.%@\", self.persistentStorageKeyPrefix, propertyName)\n    }\n\n}\n\n// MARK: - Defaults registration with storage\nvar persistentStorageDefaultsRegistrationTracker = [String]()\n\nextension PersistentStorageSerializable {\n    /// Registers the current instance properties values as default values with storage once per app run.\n    func registerInstancePropertiesValueAsDefaultsWithStorageOnce() throws {\n        if persistentStorageDefaultsRegistrationTracker.contains(self.persistentStorageKeyPrefix) == false {\n            persistentStorageDefaultsRegistrationTracker.append(self.persistentStorageKeyPrefix)\n            \n            var initialValueDictionary = [String : Any]()\n            try eachSelfProperty { (key, value) in\n                let storageKey = self.persistentStorageKey(for: key)\n                initialValueDictionary[storageKey] = value\n            }\n            self.persistentStorage.register(defaultValues: initialValueDictionary)\n        }\n    }\n}\n\n"
  },
  {
    "path": "PersistentStorageSerializable/Classes/PlistStorage.swift",
    "content": "//\n//  PlistStorage.swift\n//  Pods\n//\n//  Created by Ivan Rublev on 4/7/17.\n//\n//\n\nimport Foundation\n\n/**\n    Class to persist data in Plist file on disk.\n */\nopen class PlistStorage {\n    let url: URL\n    \n    public init(at url: URL) {\n        precondition(url.isFileURL)\n        self.url = url\n    }\n    \n    var dictionary: NSMutableDictionary?\n    var newDictionary: NSMutableDictionary!\n    \n    var anyKeyWasSet = false\n    var finished = true\n}\n\n// MARK: - Adopt PersistentStorage\nextension PlistStorage: PersistentStorage {\n    public func beginTransaction() throws {\n        precondition(finished, \"Must call finishTransaction() before beginning a new one.\")\n        finished = false\n        SwiftTryCatch.try({ \n            self.dictionary = NSMutableDictionary(contentsOf: self.url)\n        }, catch: nil, finallyBlock: nil)\n        newDictionary = NSMutableDictionary()\n    }\n    \n    public func register(defaultValues: [String : Any]) { // default values are not applicable\n    }\n    \n    public func get(valueOf key: String) -> Any? {\n        return dictionary?[key]\n    }\n\n    public func set(value: Any?, for key: String) throws {\n        newDictionary[key] = value\n        anyKeyWasSet = true\n    }\n\n    public func finishTransaction() throws {\n        dictionary = nil\n        if anyKeyWasSet {\n            let data = try PropertyListSerialization.data(fromPropertyList: newDictionary, format: .xml, options: 0)\n            try data.write(to: url, options: .atomic)\n        }\n        anyKeyWasSet = false\n        newDictionary = nil\n        finished = true\n    }\n}\n"
  },
  {
    "path": "PersistentStorageSerializable/Classes/PropertiesIteration.swift",
    "content": "//\n//  PropertiesIteration.swift\n//  Pods\n//\n//  Created by Ivan Rublev on 4/7/17.\n//\n//\n\nimport Foundation\nimport Reflection\n\nlet persistentStorageSerializableProtocolVariableNames: Set<String> = [\"persistentStorage\", \"persistentStorageKeyPrefix\"]\n\nextension PersistentStorageSerializable {\n    func selfPropertiesNames() throws -> [String] {\n        let skipNames = persistentStorageSerializableProtocolVariableNames\n        let propertiesDescription = try properties(Self.self)\n        let keys: [String] = propertiesDescription.flatMap {\n            skipNames.contains($0.key) ? nil : $0.key\n        }\n        return keys\n    }\n    \n    /// Performs a closure over each of type instance's properties.\n    ///\n    /// - Parameter names: Set of properties names to skip during enumeration.\n    /// - Parameter perform: Closure to be called on each property key and value pair.\n    /// - Throws: Error from perform closure.\n    func eachSelfProperty(perform: (_ key: String, _ value: Any) throws -> ()) throws {\n        let keys: [String] = try selfPropertiesNames()\n        \n        var keyedValues = [String : Any]()\n        var kvcSuccseed = false\n        if let objcObj = self as? NSObject {\n            SwiftTryCatch.try({\n                keyedValues = objcObj.dictionaryWithValues(forKeys: keys)\n                kvcSuccseed = true\n            }, catch: nil, finallyBlock: nil)\n        }\n        if kvcSuccseed == false { // pure Swift object\n            for aKey in keys {\n                let propertyValue: Any? = try Reflection.get(aKey, from: self)\n                guard let value = propertyValue\n                    else {\n                        throw PersistentStorageSerializableError.FailedToGetIntancePropertyValueForName(aKey)\n                }\n                keyedValues[aKey] = value\n            }\n        }\n        \n        for (key, value) in keyedValues {\n            try perform(key, value)\n        }\n    }\n    \n    /// Sets a value for each property of type instance.\n    ///\n    /// - Parameter valueFor: Closure that returns value for specified property name. If returns nil then property is left untouched.\n    /// - Throws: Error from valueFor closure.\n    mutating func setEachSelfProperty(with valueFor: (_ propertyName: String) throws -> Any?) throws {\n        let keys: [String] = try selfPropertiesNames()\n        \n        var keyedValues = [String : Any]()\n        for aKey in keys {\n            if let value = try valueFor(aKey) {\n                keyedValues[aKey] = value\n            }\n        }\n\n        var kvcSuccseed = false\n        if let objcObj = self as? NSObject {\n            SwiftTryCatch.try({\n                objcObj.setValuesForKeys(keyedValues)\n                kvcSuccseed = true\n            }, catch: nil, finallyBlock: nil)\n        }\n        if kvcSuccseed == false { // pure Swift object\n            for (key, value) in keyedValues {\n                try Reflection.set(value, key: key, for: &self)\n            }\n            \n        }\n    }\n}\n"
  },
  {
    "path": "PersistentStorageSerializable/Classes/SupportedSerializableType.swift",
    "content": "//\n//  SupportedSerializableType.swift\n//  Pods\n//\n//  Created by Ivan Rublev on 4/10/17.\n//\n//\n\nimport Foundation\n\npublic indirect enum PersistentStorageSerializableTypeError: Error {\n    case UnsupportedOptional\n    case NonPlistType\n    case CollectionElement(PersistentStorageSerializableTypeError)\n}\n\nprotocol OptionalProtocol {}\nextension Optional: OptionalProtocol {}\n\nprotocol ArrayProtocol {}\nextension Array: ArrayProtocol {}\n\nprotocol DictionaryProtocol {}\nextension Dictionary: DictionaryProtocol {}\n\nextension PersistentStorageSerializable {\n    static func isSerializableType(value: Any) -> Bool {\n        return value is Data ||\n            value is String ||\n            value is UInt ||\n            value is Int ||\n            value is Float ||\n            value is Double ||\n            value is Bool ||\n            value is URL ||\n            value is Date\n    }\n    \n    @discardableResult static func serializable(value: Any) throws -> Bool {\n        if value is OptionalProtocol { // we do not support optionals\n            throw PersistentStorageSerializableTypeError.UnsupportedOptional\n        }\n        if isSerializableType(value: value) {\n            return true\n        } // else not a simple type\n        \n        func areElementsOfSerializableType<T: Sequence>(for sequence: T) throws -> Bool {\n            for element in sequence {\n                do {\n                    try serializable(value: element)\n                }\n                catch let error as PersistentStorageSerializableTypeError {\n                    throw PersistentStorageSerializableTypeError.CollectionElement(error)\n                }\n            }\n            return true\n        }\n        \n        if value is ArrayProtocol, let abstractArray = value as? Array<Any> {\n            return try areElementsOfSerializableType(for: abstractArray)\n        }\n        else if value is DictionaryProtocol, let abstractDictionary = value as? Dictionary<String, Any> {\n            return try areElementsOfSerializableType(for: abstractDictionary.values)\n        }\n        // else is not of required collection type\n        throw PersistentStorageSerializableTypeError.NonPlistType\n    }\n    \n}\n"
  },
  {
    "path": "PersistentStorageSerializable/Classes/SwiftTryCatch.h",
    "content": "//\n//  SwiftTryCatch.h\n//\n//  Created by William Falcon on 10/10/14.\n//  Copyright (c) 2014 William Falcon. All rights reserved.\n//\n/*\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n \n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n */\n\n@import Foundation;\n\n@interface SwiftTryCatch : NSObject\n\n/**\n Provides try catch functionality for swift by wrapping around Objective-C\n */\n+ (void)tryBlock:(void(^)())tryBlock catchBlock:(void(^)(NSException*exception))catchBlock finallyBlock:(void(^)())finallyBlock;\n+ (void)throwString:(NSString*)s;\n+ (void)throwException:(NSException*)e;\n@end\n"
  },
  {
    "path": "PersistentStorageSerializable/Classes/SwiftTryCatch.m",
    "content": "//\n//  SwiftTryCatch.h\n//\n//  Created by William Falcon on 10/10/14.\n//  Copyright (c) 2014 William Falcon. All rights reserved.\n//\n/*\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n \n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n */\n\n\n#import \"SwiftTryCatch.h\"\n\n@implementation SwiftTryCatch\n\n/**\n Provides try catch functionality for swift by wrapping around Objective-C\n */\n+ (void)tryBlock:(void(^)())tryBlock catchBlock:(void(^)(NSException*exception))catchBlock finallyBlock:(void(^)())finallyBlock {\n    @try {\n        tryBlock ? tryBlock() : nil;\n    }\n    \n    @catch (NSException *exception) {\n        catchBlock ? catchBlock(exception) : nil;\n    }\n    @finally {\n        finallyBlock ? finallyBlock() : nil;\n    }\n}\n\n+ (void)throwString:(NSString*)s\n{\n\t@throw [NSException exceptionWithName:s reason:s userInfo:nil];\n}\n\n+ (void)throwException:(NSException*)e\n{\n\t@throw e;\n}\n\n@end\n"
  },
  {
    "path": "PersistentStorageSerializable/Classes/UserDefaultsStorage.swift",
    "content": "//\n//  UserDefaultsStorage.swift\n//  Pods\n//\n//  Created by Ivan Rublev on 4/5/17.\n//\n//\n\nimport Foundation\n\n/**\n    Interface protocol to UserDefaults object\n */\npublic protocol UserDefaultsStorageSystemUserDefaults {\n    static var standard: UserDefaults { get }\n    func register(defaults registrationDictionary: [String : Any])\n    func object(forKey defaultName: String) -> Any?\n    func set(_ value: Any?, forKey defaultName: String)\n    func removeObject(forKey defaultName: String)\n    func synchronize() -> Bool\n}\n\nextension UserDefaults: UserDefaultsStorageSystemUserDefaults {}\n\n/**\n    Class to persist data in User Defaults storage.\n */\nopen class UserDefaultsStorage {\n    /// Shared defaults storage\n    open static let standard: PersistentStorage = UserDefaultsStorage()\n    /// Bridge to defaults object\n    var defaults: UserDefaultsStorageSystemUserDefaults {\n        return UserDefaults.standard\n    }\n}\n\n// MARK: - Adopt PersistentStorage\nextension UserDefaultsStorage: PersistentStorage {\n    open func beginTransaction() throws {\n        precondition(Thread.isMainThread)\n        let _ = defaults.synchronize()\n    }\n    \n    open func register(defaultValues: [String : Any]) {\n        precondition(Thread.isMainThread)\n        defaults.register(defaults: defaultValues)\n    }\n    \n    open func get(valueOf key: String) -> Any? {\n        precondition(Thread.isMainThread)\n        return defaults.object(forKey: key)\n    }\n    \n    open func set(value: Any?, for key: String) throws {\n        precondition(Thread.isMainThread)\n        if let value = value {\n            defaults.set(value, forKey: key)\n        }\n        else {\n            defaults.removeObject(forKey: key)\n        }\n    }\n    \n    open func finishTransaction() throws {\n        precondition(Thread.isMainThread)\n        let _ = defaults.synchronize()\n    }\n}\n"
  },
  {
    "path": "PersistentStorageSerializable.podspec",
    "content": "#\n# Be sure to run `pod lib lint PersistentStorageSerializable.podspec' to ensure this is a\n# valid spec before submitting.\n#\n# Any lines starting with a # are optional, but their use is encouraged\n# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html\n#\n\nPod::Spec.new do |s|\n  s.name             = 'PersistentStorageSerializable'\n  s.version          = '1.1.2'\n  s.summary          = 'Swift library that makes easier to serialize the user\\'s preferences class/struct with system User Defaults or Property List file on disk.'\n\n  s.description      = <<-DESC\n    Number of protocols from this pod helps to serialize swift class or structure to persistent storage like User Defaults or Keychain. The class/structure must contain properties of simple data type only. These types are: Data, String, Int, Float, Double, Bool, URL, Date, Array, or Dictionary<String, *>.\n    Adopt the PersistentStorageSerializable protocol from your struct. Then call pullFromUserDefaults() or  pushToUserDefaults() on instance of your struct.\n                       DESC\n\n  s.homepage         = 'https://github.com/IvanRublev/PersistentStorageSerializable'\n  s.license          = { :type => 'MIT', :file => 'LICENSE' }\n  s.author           = { 'IvanRublev' => 'ivan@ivanrublev.me' }\n  s.source           = { :git => 'https://github.com/IvanRublev/PersistentStorageSerializable.git', :tag => s.version.to_s }\n\n  s.ios.deployment_target = '9.0'\n  s.osx.deployment_target = '10.11'\n\n  s.source_files = 'PersistentStorageSerializable/Classes/**/*'\n\n  s.frameworks = 'Foundation'\n  s.dependency 'Reflection', '~> 0.14'\n\nend\n"
  },
  {
    "path": "README.md",
    "content": "# PersistentStorageSerializable\n\n[![CI Status](http://img.shields.io/travis/IvanRublev/PersistentStorageSerializable.svg?style=flat)](https://travis-ci.org/IvanRublev/PersistentStorageSerializable)\n[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)\n[![Version](https://img.shields.io/cocoapods/v/PersistentStorageSerializable.svg?style=flat)](http://cocoapods.org/pods/PersistentStorageSerializable)\n[![Swift](https://img.shields.io/badge/Swift-3.1-orange.svg?style=flat)](https://img.shields.io/badge/Swift-3.1-orange.svg?style=flat)\n[![License](https://img.shields.io/cocoapods/l/PersistentStorageSerializable.svg?style=flat)](http://cocoapods.org/pods/PersistentStorageSerializable)\n\n`PersistentStorageSerializable` is a protocol for automatic serialization and deserialization of Swift class, struct or NSObject descendant object into and from User Defaults or Property List file.\n\nThe adopting type properties must be of property list type (String, Data, Date, Int, UInt, Float, Double, Bool, Array or Dictionary of above). If you want to store any other type of object, you should typically archive it to create an instance of Data. The URL properties can be stored in User Defaults storage but not in Plist storage. In the last case, you have to archive it to/from Data.\n\nThe `PersistentStorageSerializable` protocol provides default implementations of `init(from:)` initializer and `persist()` function. The library defines two classes of `PesistentStorage` protocol: `UserDefaultsStorage` and `PlistStorage`. Object of one of those types is passed as the argument when calling to `init(from:)` initializer to specify which storage to be used for serialization/deserialization.\n\nFunctions of the `PersistentStorageSerializable` protocol traverses the adopting type object and gets/sets it's properties values via [Reflection](https://github.com/Zewo/Reflection) library. The NSObject class descendant properties values are get/set via KVC.\n\n## How to use\n\nSerialize/Deserialize a struct with User Defaults by using `UserDefaultStorage` as shown below:\n\n```swift\nstruct Settings: PersistentStorageSerializable {\n    var flag = false\n    var title = \"\"\n    var number = 1\n    var dictionary: [String : Any] = [\"Number\" : 1, \"Distance\" : 25.4, \"Label\" : \"Hello\"]\n\n    // MARK: Adopt PersistentStorageSerializable\n    var persistentStorage: PersistentStorage!\n    var persistentStorageKeyPrefix: String! = \"Settings\"\n}\n\n// Init from User Defaults\nvar mySettings = try! Settings(from: UserDefaultsStorage.standard)\n\nmySettings.flag = true\n\n// Persist into User Defaults\ntry! mySettings.persist()\n```\n\nTo serialize data with Plist file use `PlistStorage` class:\n\n```swift\n// Init from plist\nlet plistUrl = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).last!.appendingPathComponent(\"storage.plist\")\n\nvar settingsOnDisk = try! Settings(from: PlistStorage(at: plistUrl))\n\nmySettings.flag = true\n\n// Persist on disk\ntry! mySettings.persist()\n```\n\n### Reading data stored by the previous version of the app\n\nWhen you have some data persisted in User Defaults by the previous version of the app and want to read that data into a structure you need to provide a mapping between properties names and User Defaults keys by overloading the `persistentStorageKey(for:)` function.\n\nSay we have following data persisted in User Defaults:\n\n```swift\nUserDefaults.standard.set(\"Superhero\", forKey: \"oldGoogTitle\")\nUserDefaults.standard.set(true, forKey: \"well.persisted.option\")\n```\n\nWe want those to be serialized with the object of `ApplicationConfiguration` class.\n\n```swift\nfinal class ApplicationConfiguration: PersistentStorageSerializable {\n    var title = \"\"\n    var showIntro = false\n\n    // MARK: Adopt PersistentStorageSerializable\n    var persistentStorage: PersistentStorage!\n    var persistentStorageKeyPrefix: String!\n}\n\n// Provide key mapping by overloading `persistentStorageKey(for:)` function.\nextension ApplicationConfiguration {\n    func persistentStorageKey(for propertyName: String) -> String {\n        let keyMap = [\"title\" : \"oldGoogTitle\", \"showIntro\" : \"well.persisted.option\"]\n        return keyMap[propertyName]!\n    }\n}\n\n// Now we can load data persisted in the storage.\nlet configuration = try! ApplicationConfiguration(from: UserDefaultsStorage.standard)\n\nprint(configuration.title) // prints Superhero\nprint(configuration.showIntro) // prints true\n```\n\n## Example\n\nTo run example projects for iOS/macOS, run `pod try PersistentStorageSerializable` in the terminal.\n\n## Requirements\n\n- Xcode 8.3\n- Swift 3.1\n\n## Installation\n\n### CocoaPods\n\nPersistentStorageSerializable is available through [CocoaPods](http://cocoapods.org). To install it, simply add the following line to your Podfile:\n\n```ruby\npod \"PersistentStorageSerializable\"\n```\n\nand run `pods update` or `pods install`.\n\n> :sparkles: For Xcode 9, Swift 4 and cocoapods installation, please follow the [instruction here](https://github.com/IvanRublev/PersistentStorageSerializable/issues/2#issuecomment-332145439).\n\n### Carthage\n\nIf you use Carthage to manage your dependencies, simply add PersistentStorageSerializable to your Cartfile:\n\n```\ngithub \"IvanRublev/PersistentStorageSerializable\"\n```\n\nIf you use Carthage to build your dependencies, make sure you have added `PersistentStorageSerializable.framework` and `Reflection.framework` to the \"Linked Frameworks and Libraries\" section of your target, and have included them in your Carthage framework copying build phase.\n\n## Author\n\nCopyright (c) 2017, IvanRublev, ivan@ivanrublev.me\n\n## License\n\nPersistentStorageSerializable is available under the MIT license. See the LICENSE file for more info.\n"
  }
]