[
  {
    "path": "LICENSE",
    "content": "Copyright (c) 2015 ikemai <ikeda_mai@cyberagent.co.jp>\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": "README.md",
    "content": "# ScaledVisibleCellsCollectionView\n\n[![CI Status](http://img.shields.io/travis/ikemai/ScaledVisibleCellsCollectionView.svg?style=flat)](https://travis-ci.org/ikemai/ScaledVisibleCellsCollectionView)\n[![Version](https://img.shields.io/cocoapods/v/ScaledVisibleCellsCollectionView.svg?style=flat)](http://cocoapods.org/pods/ScaledVisibleCellsCollectionView)\n[![License](https://img.shields.io/cocoapods/l/ScaledVisibleCellsCollectionView.svg?style=flat)](http://cocoapods.org/pods/ScaledVisibleCellsCollectionView)\n[![Platform](https://img.shields.io/cocoapods/p/ScaledVisibleCellsCollectionView.svg?style=flat)](http://cocoapods.org/pods/ScaledVisibleCellsCollectionView)\n\nScaledVisibleCellsCollectionView is UICollectionView extension.\nScaledVisibleCellsCollectionView is Check visible cells position. And setting cell's scale and alpha.\n\n## Demo\n\n### Horizontal ( center / right / left )\n![Gif](https://github.com/ikemai/assets/blob/master/ScaledVisibleCellsCollectionView/horizontal_center.gif) ![Gif](https://github.com/ikemai/assets/blob/master/ScaledVisibleCellsCollectionView/horizontal_left.gif) ![Gif](https://github.com/ikemai/assets/blob/master/ScaledVisibleCellsCollectionView/horizontal_right.gif)\n\n### Vertical ( center / top / bottom )\n![Gif](https://github.com/ikemai/assets/blob/master/ScaledVisibleCellsCollectionView/vertical_center.gif) ![Gif](https://github.com/ikemai/assets/blob/master/ScaledVisibleCellsCollectionView/vertical_top.gif) ![Gif](https://github.com/ikemai/assets/blob/master/ScaledVisibleCellsCollectionView/vertical_bottom.gif)\n\n## Usage\n\n#### Cocoapods\nTo run the example project, clone the repo, and run `pod install` from the Example directory first.\nAdd the following to your `Podfile`:\n\n```Ruby\npod \"ScaledVisibleCellsCollectionView\"\nuse_frameworks!\n```\n\nNote: the `use_frameworks!` is required for pods made in Swift.\n\n### Example\n\n* Set propertis\n\n```swift\nlet collectionView = UICollectionView(frame: view.bounds)\nview.addSubview(collectionView)\n\ncollectionView.setScaledDesginParam(scaledPattern: .VerticalCenter, maxScale: 1.2, minScale: 0.5, maxAlpha: 1.0, minAlpha: 0.5)\n```\n\n* Scale and alpha\n\n```swift\nfunc scrollViewDidScroll(scrollView: UIScrollView) {\n\tcollectionView.scaledVisibleCells()\n}\n```\n\n### Variable\n\n\n* Set Scroll direction & position is the most large cell\n\n```swift\nvar scaledPattern: SC_ScaledPattern = .VerticalCenter\n```\n\n```swift\npublic enum SC_ScaledPattern {\ncase HorizontalCenter\ncase HorizontalLeft\ncase HorizontalRight\ncase VerticalCenter\ncase VerticalBottom\ncase VerticalTop\n}\n```\n\n* Set Scale\n\n```Swift\nvar maxScale: CGFloat = 1.0\nvar minScale: CGFloat = 0.5\n```\n\n* Set Alpha\n\n```Swift\nvar maxAlpha: CGFloat = 1.0\nvar minAlpha: CGFloat = 0.5\n```\n\n\n### Function\n\n* Set property ( * Please always set )\n\n```swift\nfunc setScaledDesginParam(scaledPattern pattern: SC_ScaledPattern, maxScale: CGFloat, minScale: CGFloat, maxAlpha: CGFloat, minAlpha: CGFloat)\n```\n\n* Set scale for visible cells ( * Please call at any time )\n\n```swift\nfunc scaledVisibleCells()\n```\n\n## Author\n\nikemai\n\n## License\n\nScaledVisibleCellsCollectionView is available under the MIT license. See the LICENSE file for more info.\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionView/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>jp.mai.ikeda.$(PRODUCT_NAME:rfc1034identifier)</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>FMWK</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>0.2</string>\n\t<key>CFBundleSignature</key>\n\t<string>????</string>\n\t<key>CFBundleVersion</key>\n\t<string>0</string>\n\t<key>NSPrincipalClass</key>\n\t<string></string>\n</dict>\n</plist>\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionView/ScaledVisibleCellsCollectionView.h",
    "content": "//\n//  ScaledVisibleCellsCollectionView.h\n//  ScaledVisibleCellsCollectionView\n//\n//  Created by Mai Ikeda on 2015/08/22.\n//  Copyright (c) 2015年 mai_ikeda. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\n//! Project version number for ScaledVisibleCellsCollectionView.\nFOUNDATION_EXPORT double ScaledVisibleCellsCollectionViewVersionNumber;\n\n//! Project version string for ScaledVisibleCellsCollectionView.\nFOUNDATION_EXPORT const unsigned char ScaledVisibleCellsCollectionViewVersionString[];\n\n// In this header, you should import all the public headers of your framework using statements like #import <ScaledVisibleCellsCollectionView/PublicHeader.h>\n\n\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionView/ScaledVisibleCellsCollectionView.swift",
    "content": "//\n//  ScaledVisibleCellsCollectionView.swift\n//  ScaledVisibleCellsCollectionView\n//\n//  Created by Mai Ikeda on 2015/08/22.\n//  Copyright (c) 2015年 mai_ikeda. All rights reserved.\n//\n\nimport UIKit\n\npublic enum SC_ScaledPattern {\n    case HorizontalCenter\n    case HorizontalLeft\n    case HorizontalRight\n    case VerticalCenter\n    case VerticalBottom\n    case VerticalTop\n}\n\npublic class ScaledVisibleCellsCollectionView {\n    static let sharedInstance = ScaledVisibleCellsCollectionView()\n    \n    var maxScale: CGFloat = 1.0\n    var minScale: CGFloat = 0.5\n    \n    var maxAlpha: CGFloat = 1.0\n    var minAlpha: CGFloat = 0.5\n    \n    var scaledPattern: SC_ScaledPattern = .VerticalCenter\n}\n\nextension UICollectionView {\n    \n    /**\n    Please always set\n    */\n    public func setScaledDesginParam(scaledPattern pattern: SC_ScaledPattern, maxScale: CGFloat, minScale: CGFloat, maxAlpha: CGFloat, minAlpha: CGFloat) {\n        ScaledVisibleCellsCollectionView.sharedInstance.scaledPattern = pattern\n        ScaledVisibleCellsCollectionView.sharedInstance.maxScale = maxScale\n        ScaledVisibleCellsCollectionView.sharedInstance.minScale = minScale\n        ScaledVisibleCellsCollectionView.sharedInstance.maxAlpha = maxAlpha\n        ScaledVisibleCellsCollectionView.sharedInstance.minAlpha = minAlpha\n    }\n    \n    /**\n    Please call at any time\n    */\n    public func scaledVisibleCells() {\n        switch ScaledVisibleCellsCollectionView.sharedInstance.scaledPattern {\n        case .HorizontalCenter, .HorizontalLeft, .HorizontalRight:\n            scaleCellsForHorizontalScroll(visibleCells())\n            break\n        case .VerticalCenter, .VerticalTop, .VerticalBottom:\n            self.scaleCellsForVerticalScroll(visibleCells())\n            break\n        }\n    }\n}\n\nextension UICollectionView {\n    \n    private func scaleCellsForHorizontalScroll(visibleCells: [UICollectionViewCell]) {\n        \n        let scalingAreaWidth = bounds.width / 2\n        let maximumScalingAreaWidth = (bounds.width / 2 - scalingAreaWidth) / 2\n        \n        for cell in visibleCells  {\n            var distanceFromMainPosition: CGFloat = 0\n            \n            switch ScaledVisibleCellsCollectionView.sharedInstance.scaledPattern {\n            case .HorizontalCenter:\n                distanceFromMainPosition = horizontalCenter(cell)\n                break\n            case .HorizontalLeft:\n                distanceFromMainPosition = abs(cell.frame.midX - contentOffset.x - (cell.bounds.width / 2))\n                break\n            case .HorizontalRight:\n                distanceFromMainPosition = abs(bounds.width / 2 - (cell.frame.midX - contentOffset.x) + (cell.bounds.width / 2))\n                break\n            default:\n                return\n            }\n            let preferredAry = scaleCells(distanceFromMainPosition, maximumScalingArea: maximumScalingAreaWidth, scalingArea: scalingAreaWidth)\n            let preferredScale = preferredAry[0]\n            let preferredAlpha = preferredAry[1]\n            cell.transform = CGAffineTransformMakeScale(preferredScale, preferredScale)\n            cell.alpha = preferredAlpha\n        }\n    }\n    \n    private func scaleCellsForVerticalScroll(visibleCells: [UICollectionViewCell]) {\n        \n        let scalingAreaHeight = bounds.height / 2\n        let maximumScalingAreaHeight = (bounds.height / 2 - scalingAreaHeight) / 2\n        \n        for cell in visibleCells {\n            var distanceFromMainPosition: CGFloat = 0\n            \n            switch ScaledVisibleCellsCollectionView.sharedInstance.scaledPattern {\n            case .VerticalCenter:\n                distanceFromMainPosition = verticalCenter(cell)\n                break\n            case .VerticalBottom:\n                distanceFromMainPosition = abs(bounds.height - (cell.frame.midY - contentOffset.y + (cell.bounds.height / 2)))\n                break\n            case .VerticalTop:\n                distanceFromMainPosition = abs(cell.frame.midY - contentOffset.y - (cell.bounds.height / 2))\n                break\n            default:\n                return\n            }\n            let preferredAry = scaleCells(distanceFromMainPosition, maximumScalingArea: maximumScalingAreaHeight, scalingArea: scalingAreaHeight)\n            let preferredScale = preferredAry[0]\n            let preferredAlpha = preferredAry[1]\n            \n            cell.transform = CGAffineTransformMakeScale(preferredScale, preferredScale)\n            cell.alpha = preferredAlpha\n        }\n    }\n    \n    private func scaleCells(distanceFromMainPosition: CGFloat, maximumScalingArea: CGFloat, scalingArea: CGFloat) -> [CGFloat] {\n        var preferredScale: CGFloat = 0.0\n        var preferredAlpha: CGFloat = 0.0\n        \n        let maxScale = ScaledVisibleCellsCollectionView.sharedInstance.maxScale\n        let minScale = ScaledVisibleCellsCollectionView.sharedInstance.minScale\n        let maxAlpha = ScaledVisibleCellsCollectionView.sharedInstance.maxAlpha\n        let minAlpha = ScaledVisibleCellsCollectionView.sharedInstance.minAlpha\n        \n        if distanceFromMainPosition < maximumScalingArea {\n            // cell in maximum-scaling area\n            preferredScale = maxScale\n            preferredAlpha = maxAlpha\n            \n        } else if distanceFromMainPosition < (maximumScalingArea + scalingArea) {\n            // cell in scaling area\n            let multiplier = abs((distanceFromMainPosition - maximumScalingArea) / scalingArea)\n            preferredScale = maxScale - multiplier * (maxScale - minScale)\n            preferredAlpha = maxAlpha - multiplier * (maxAlpha - minAlpha)\n            \n        } else {\n            // cell in minimum-scaling area\n            preferredScale = minScale\n            preferredAlpha = minAlpha\n        }\n        return [ preferredScale, preferredAlpha ]\n    }\n}\n\nextension UICollectionView {\n    \n    private func horizontalCenter(cell: UICollectionViewCell)-> CGFloat {\n        return abs(bounds.width / 2 - (cell.frame.midX - contentOffset.x))\n    }\n    \n    private func verticalCenter(cell: UICollectionViewCell)-> CGFloat {\n        return abs(bounds.height / 2 - (cell.frame.midY - contentOffset.y))\n    }\n}"
  },
  {
    "path": "ScaledVisibleCellsCollectionView.podspec",
    "content": "Pod::Spec.new do |s|\n  s.name         = \"ScaledVisibleCellsCollectionView\"\n  s.version      = \"0.2.0\"\n  s.summary      = \"TapGestureGenerater is get tap and gesture event.\"\n  s.homepage     = \"https://github.com/ikemai/ScaledVisibleCellsCollectionView\"\n  s.license      = { :type => \"MIT\", :file => \"LICENSE\" }\n  s.author       = { \"ikemai\" => \"ikeda_mai@cyberagent.co.jp\" }\n  s.platform     = :ios, \"8.0\"\n  s.source       = { :git => \"https://github.com/ikemai/ScaledVisibleCellsCollectionView.git\", :tag => s.version.to_s }\n  s.source_files  = \"ScaledVisibleCellsCollectionView/**/*.{h,swift}\"\n  s.requires_arc = true\n  s.frameworks = \"UIKit\"\nend"
  },
  {
    "path": "ScaledVisibleCellsCollectionView.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\t808743B61B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView.h in Headers */ = {isa = PBXBuildFile; fileRef = 808743B51B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t808743BC1B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 808743B01B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView.framework */; };\n\t\t808743C31B88BDA2000B0B16 /* ScaledVisibleCellsCollectionViewTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 808743C21B88BDA2000B0B16 /* ScaledVisibleCellsCollectionViewTests.swift */; };\n\t\t808743CD1B88BE36000B0B16 /* ScaledVisibleCellsCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 808743CC1B88BE36000B0B16 /* ScaledVisibleCellsCollectionView.swift */; };\n/* End PBXBuildFile section */\n\n/* Begin PBXContainerItemProxy section */\n\t\t808743BD1B88BDA2000B0B16 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = 808743A71B88BDA2000B0B16 /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 808743AF1B88BDA2000B0B16;\n\t\t\tremoteInfo = ScaledVisibleCellsCollectionView;\n\t\t};\n/* End PBXContainerItemProxy section */\n\n/* Begin PBXFileReference section */\n\t\t808743B01B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = ScaledVisibleCellsCollectionView.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t808743B41B88BDA2000B0B16 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\t808743B51B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScaledVisibleCellsCollectionView.h; sourceTree = \"<group>\"; };\n\t\t808743BB1B88BDA2000B0B16 /* ScaledVisibleCellsCollectionViewTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ScaledVisibleCellsCollectionViewTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t808743C11B88BDA2000B0B16 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\t808743C21B88BDA2000B0B16 /* ScaledVisibleCellsCollectionViewTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ScaledVisibleCellsCollectionViewTests.swift; sourceTree = \"<group>\"; };\n\t\t808743CC1B88BE36000B0B16 /* ScaledVisibleCellsCollectionView.swift */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.swift; path = ScaledVisibleCellsCollectionView.swift; sourceTree = \"<group>\"; tabWidth = 4; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\t808743AC1B88BDA2000B0B16 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t808743B81B88BDA2000B0B16 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t808743BC1B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView.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\t808743A61B88BDA2000B0B16 = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t808743B21B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView */,\n\t\t\t\t808743BF1B88BDA2000B0B16 /* ScaledVisibleCellsCollectionViewTests */,\n\t\t\t\t808743B11B88BDA2000B0B16 /* Products */,\n\t\t\t);\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t808743B11B88BDA2000B0B16 /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t808743B01B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView.framework */,\n\t\t\t\t808743BB1B88BDA2000B0B16 /* ScaledVisibleCellsCollectionViewTests.xctest */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t808743B21B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t808743B51B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView.h */,\n\t\t\t\t808743CC1B88BE36000B0B16 /* ScaledVisibleCellsCollectionView.swift */,\n\t\t\t\t808743B31B88BDA2000B0B16 /* Supporting Files */,\n\t\t\t);\n\t\t\tpath = ScaledVisibleCellsCollectionView;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t808743B31B88BDA2000B0B16 /* Supporting Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t808743B41B88BDA2000B0B16 /* Info.plist */,\n\t\t\t);\n\t\t\tname = \"Supporting Files\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t808743BF1B88BDA2000B0B16 /* ScaledVisibleCellsCollectionViewTests */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t808743C21B88BDA2000B0B16 /* ScaledVisibleCellsCollectionViewTests.swift */,\n\t\t\t\t808743C01B88BDA2000B0B16 /* Supporting Files */,\n\t\t\t);\n\t\t\tpath = ScaledVisibleCellsCollectionViewTests;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t808743C01B88BDA2000B0B16 /* Supporting Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t808743C11B88BDA2000B0B16 /* Info.plist */,\n\t\t\t);\n\t\t\tname = \"Supporting Files\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXHeadersBuildPhase section */\n\t\t808743AD1B88BDA2000B0B16 /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t808743B61B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView.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\t808743AF1B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 808743C61B88BDA2000B0B16 /* Build configuration list for PBXNativeTarget \"ScaledVisibleCellsCollectionView\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t808743AB1B88BDA2000B0B16 /* Sources */,\n\t\t\t\t808743AC1B88BDA2000B0B16 /* Frameworks */,\n\t\t\t\t808743AD1B88BDA2000B0B16 /* Headers */,\n\t\t\t\t808743AE1B88BDA2000B0B16 /* 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 = ScaledVisibleCellsCollectionView;\n\t\t\tproductName = ScaledVisibleCellsCollectionView;\n\t\t\tproductReference = 808743B01B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n\t\t808743BA1B88BDA2000B0B16 /* ScaledVisibleCellsCollectionViewTests */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 808743C91B88BDA2000B0B16 /* Build configuration list for PBXNativeTarget \"ScaledVisibleCellsCollectionViewTests\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t808743B71B88BDA2000B0B16 /* Sources */,\n\t\t\t\t808743B81B88BDA2000B0B16 /* Frameworks */,\n\t\t\t\t808743B91B88BDA2000B0B16 /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\t808743BE1B88BDA2000B0B16 /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = ScaledVisibleCellsCollectionViewTests;\n\t\t\tproductName = ScaledVisibleCellsCollectionViewTests;\n\t\t\tproductReference = 808743BB1B88BDA2000B0B16 /* ScaledVisibleCellsCollectionViewTests.xctest */;\n\t\t\tproductType = \"com.apple.product-type.bundle.unit-test\";\n\t\t};\n/* End PBXNativeTarget section */\n\n/* Begin PBXProject section */\n\t\t808743A71B88BDA2000B0B16 /* Project object */ = {\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tLastSwiftMigration = 0700;\n\t\t\t\tLastSwiftUpdateCheck = 0700;\n\t\t\t\tLastUpgradeCheck = 0640;\n\t\t\t\tORGANIZATIONNAME = mai_ikeda;\n\t\t\t\tTargetAttributes = {\n\t\t\t\t\t808743AF1B88BDA2000B0B16 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 6.4;\n\t\t\t\t\t};\n\t\t\t\t\t808743BA1B88BDA2000B0B16 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 6.4;\n\t\t\t\t\t};\n\t\t\t\t};\n\t\t\t};\n\t\t\tbuildConfigurationList = 808743AA1B88BDA2000B0B16 /* Build configuration list for PBXProject \"ScaledVisibleCellsCollectionView\" */;\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 = 808743A61B88BDA2000B0B16;\n\t\t\tproductRefGroup = 808743B11B88BDA2000B0B16 /* Products */;\n\t\t\tprojectDirPath = \"\";\n\t\t\tprojectRoot = \"\";\n\t\t\ttargets = (\n\t\t\t\t808743AF1B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView */,\n\t\t\t\t808743BA1B88BDA2000B0B16 /* ScaledVisibleCellsCollectionViewTests */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin PBXResourcesBuildPhase section */\n\t\t808743AE1B88BDA2000B0B16 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t808743B91B88BDA2000B0B16 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXResourcesBuildPhase section */\n\n/* Begin PBXSourcesBuildPhase section */\n\t\t808743AB1B88BDA2000B0B16 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t808743CD1B88BE36000B0B16 /* ScaledVisibleCellsCollectionView.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t808743B71B88BDA2000B0B16 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t808743C31B88BDA2000B0B16 /* ScaledVisibleCellsCollectionViewTests.swift 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\t808743BE1B88BDA2000B0B16 /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\ttarget = 808743AF1B88BDA2000B0B16 /* ScaledVisibleCellsCollectionView */;\n\t\t\ttargetProxy = 808743BD1B88BDA2000B0B16 /* PBXContainerItemProxy */;\n\t\t};\n/* End PBXTargetDependency section */\n\n/* Begin XCBuildConfiguration section */\n\t\t808743C41B88BDA2000B0B16 /* 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_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\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\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = 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 = 8.0;\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\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\t808743C51B88BDA2000B0B16 /* 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_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\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\tCURRENT_PROJECT_VERSION = 1;\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 = 8.0;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVALIDATE_PRODUCT = 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\t808743C71B88BDA2000B0B16 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\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\tINFOPLIST_FILE = ScaledVisibleCellsCollectionView/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\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Onone\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t808743C81B88BDA2000B0B16 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\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\tINFOPLIST_FILE = ScaledVisibleCellsCollectionView/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\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t808743CA1B88BDA2000B0B16 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tFRAMEWORK_SEARCH_PATHS = (\n\t\t\t\t\t\"$(SDKROOT)/Developer/Library/Frameworks\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\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 = ScaledVisibleCellsCollectionViewTests/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t808743CB1B88BDA2000B0B16 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tFRAMEWORK_SEARCH_PATHS = (\n\t\t\t\t\t\"$(SDKROOT)/Developer/Library/Frameworks\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tINFOPLIST_FILE = ScaledVisibleCellsCollectionViewTests/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n/* End XCBuildConfiguration section */\n\n/* Begin XCConfigurationList section */\n\t\t808743AA1B88BDA2000B0B16 /* Build configuration list for PBXProject \"ScaledVisibleCellsCollectionView\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t808743C41B88BDA2000B0B16 /* Debug */,\n\t\t\t\t808743C51B88BDA2000B0B16 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t808743C61B88BDA2000B0B16 /* Build configuration list for PBXNativeTarget \"ScaledVisibleCellsCollectionView\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t808743C71B88BDA2000B0B16 /* Debug */,\n\t\t\t\t808743C81B88BDA2000B0B16 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t808743C91B88BDA2000B0B16 /* Build configuration list for PBXNativeTarget \"ScaledVisibleCellsCollectionViewTests\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t808743CA1B88BDA2000B0B16 /* Debug */,\n\t\t\t\t808743CB1B88BDA2000B0B16 /* 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 = 808743A71B88BDA2000B0B16 /* Project object */;\n}\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"self:ScaledVisibleCellsCollectionView.xcodeproj\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionView.xcodeproj/project.xcworkspace/xcshareddata/ScaledVisibleCellsCollectionView.xccheckout",
    "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>IDESourceControlProjectFavoriteDictionaryKey</key>\n\t<false/>\n\t<key>IDESourceControlProjectIdentifier</key>\n\t<string>C3E2AC95-FF1F-4342-BE09-EF7AE2BED369</string>\n\t<key>IDESourceControlProjectName</key>\n\t<string>ScaledVisibleCellsCollectionView</string>\n\t<key>IDESourceControlProjectOriginsDictionary</key>\n\t<dict>\n\t\t<key>B3EF76A2567DC792311C6177A929DB9D96C39798</key>\n\t\t<string>https://github.com/ikemai/ScaledVisibleCellsCollectionView.git</string>\n\t</dict>\n\t<key>IDESourceControlProjectPath</key>\n\t<string>ScaledVisibleCellsCollectionView.xcodeproj</string>\n\t<key>IDESourceControlProjectRelativeInstallPathDictionary</key>\n\t<dict>\n\t\t<key>B3EF76A2567DC792311C6177A929DB9D96C39798</key>\n\t\t<string>../..</string>\n\t</dict>\n\t<key>IDESourceControlProjectURL</key>\n\t<string>https://github.com/ikemai/ScaledVisibleCellsCollectionView.git</string>\n\t<key>IDESourceControlProjectVersion</key>\n\t<integer>111</integer>\n\t<key>IDESourceControlProjectWCCIdentifier</key>\n\t<string>B3EF76A2567DC792311C6177A929DB9D96C39798</string>\n\t<key>IDESourceControlProjectWCConfigurations</key>\n\t<array>\n\t\t<dict>\n\t\t\t<key>IDESourceControlRepositoryExtensionIdentifierKey</key>\n\t\t\t<string>public.vcs.git</string>\n\t\t\t<key>IDESourceControlWCCIdentifierKey</key>\n\t\t\t<string>B3EF76A2567DC792311C6177A929DB9D96C39798</string>\n\t\t\t<key>IDESourceControlWCCName</key>\n\t\t\t<string>ScaledVisibleCellsCollectionView</string>\n\t\t</dict>\n\t</array>\n</dict>\n</plist>\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionView.xcodeproj/xcuserdata/ikedamai.xcuserdatad/xcschemes/ScaledVisibleCellsCollectionView.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"0640\"\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 = \"808743AF1B88BDA2000B0B16\"\n               BuildableName = \"ScaledVisibleCellsCollectionView.framework\"\n               BlueprintName = \"ScaledVisibleCellsCollectionView\"\n               ReferencedContainer = \"container:ScaledVisibleCellsCollectionView.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n         <BuildActionEntry\n            buildForTesting = \"YES\"\n            buildForRunning = \"YES\"\n            buildForProfiling = \"NO\"\n            buildForArchiving = \"NO\"\n            buildForAnalyzing = \"YES\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"808743BA1B88BDA2000B0B16\"\n               BuildableName = \"ScaledVisibleCellsCollectionViewTests.xctest\"\n               BlueprintName = \"ScaledVisibleCellsCollectionViewTests\"\n               ReferencedContainer = \"container:ScaledVisibleCellsCollectionView.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      buildConfiguration = \"Debug\">\n      <Testables>\n         <TestableReference\n            skipped = \"NO\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"808743BA1B88BDA2000B0B16\"\n               BuildableName = \"ScaledVisibleCellsCollectionViewTests.xctest\"\n               BlueprintName = \"ScaledVisibleCellsCollectionViewTests\"\n               ReferencedContainer = \"container:ScaledVisibleCellsCollectionView.xcodeproj\">\n            </BuildableReference>\n         </TestableReference>\n      </Testables>\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"808743AF1B88BDA2000B0B16\"\n            BuildableName = \"ScaledVisibleCellsCollectionView.framework\"\n            BlueprintName = \"ScaledVisibleCellsCollectionView\"\n            ReferencedContainer = \"container:ScaledVisibleCellsCollectionView.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n   </TestAction>\n   <LaunchAction\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      buildConfiguration = \"Debug\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      allowLocationSimulation = \"YES\">\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"808743AF1B88BDA2000B0B16\"\n            BuildableName = \"ScaledVisibleCellsCollectionView.framework\"\n            BlueprintName = \"ScaledVisibleCellsCollectionView\"\n            ReferencedContainer = \"container:ScaledVisibleCellsCollectionView.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </LaunchAction>\n   <ProfileAction\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      buildConfiguration = \"Release\"\n      debugDocumentVersioning = \"YES\">\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"808743AF1B88BDA2000B0B16\"\n            BuildableName = \"ScaledVisibleCellsCollectionView.framework\"\n            BlueprintName = \"ScaledVisibleCellsCollectionView\"\n            ReferencedContainer = \"container:ScaledVisibleCellsCollectionView.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n   </ProfileAction>\n   <AnalyzeAction\n      buildConfiguration = \"Debug\">\n   </AnalyzeAction>\n   <ArchiveAction\n      buildConfiguration = \"Release\"\n      revealArchiveInOrganizer = \"YES\">\n   </ArchiveAction>\n</Scheme>\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionView.xcodeproj/xcuserdata/ikedamai.xcuserdatad/xcschemes/xcschememanagement.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>SchemeUserState</key>\n\t<dict>\n\t\t<key>ScaledVisibleCellsCollectionView.xcscheme</key>\n\t\t<dict>\n\t\t\t<key>orderHint</key>\n\t\t\t<integer>0</integer>\n\t\t</dict>\n\t</dict>\n\t<key>SuppressBuildableAutocreation</key>\n\t<dict>\n\t\t<key>808743AF1B88BDA2000B0B16</key>\n\t\t<dict>\n\t\t\t<key>primary</key>\n\t\t\t<true/>\n\t\t</dict>\n\t\t<key>808743BA1B88BDA2000B0B16</key>\n\t\t<dict>\n\t\t\t<key>primary</key>\n\t\t\t<true/>\n\t\t</dict>\n\t</dict>\n</dict>\n</plist>\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/Podfile",
    "content": "source 'https://github.com/CocoaPods/Specs.git'\nuse_frameworks!\n\ntarget 'ScaledVisibleCellsCollectionView_Example', :exclusive => true do\n  pod \"ScaledVisibleCellsCollectionView\", :path => \"../\"\nend\n\ntarget 'ScaledVisibleCellsCollectionView_Tests', :exclusive => true do\n  pod \"ScaledVisibleCellsCollectionView\", :path => \"../\"\nend\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/Pods/Local Podspecs/ScaledVisibleCellsCollectionView.podspec.json",
    "content": "{\n  \"name\": \"ScaledVisibleCellsCollectionView\",\n  \"version\": \"0.2.0\",\n  \"summary\": \"TapGestureGenerater is get tap and gesture event.\",\n  \"homepage\": \"https://github.com/ikemai/ScaledVisibleCellsCollectionView\",\n  \"license\": {\n    \"type\": \"MIT\",\n    \"file\": \"LICENSE\"\n  },\n  \"authors\": {\n    \"ikemai\": \"ikeda_mai@cyberagent.co.jp\"\n  },\n  \"platforms\": {\n    \"ios\": \"8.0\"\n  },\n  \"source\": {\n    \"git\": \"https://github.com/ikemai/ScaledVisibleCellsCollectionView.git\",\n    \"tag\": \"0.2.0\"\n  },\n  \"source_files\": \"ScaledVisibleCellsCollectionView/**/*.{h,swift}\",\n  \"requires_arc\": true,\n  \"frameworks\": \"UIKit\"\n}\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/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\t1B657DC7A5C17800901424A310AA08F4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A78979ED1230825E9ACF68472D46A72C /* Foundation.framework */; };\n\t\t3C15648E5B8E91464DF72A3B74B14A2F /* ScaledVisibleCellsCollectionView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A33615FE87F5F8CF4C4D9462AF16C377 /* ScaledVisibleCellsCollectionView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t42AE903BA63936FF5D33D3CE9E7407A6 /* ScaledVisibleCellsCollectionView.h in Headers */ = {isa = PBXBuildFile; fileRef = 05BBA3ACD5D30EF75E8805446B2EEE7E /* ScaledVisibleCellsCollectionView.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t4CF0319A1A608A6F9EF8D0E325B6BCB3 /* Pods-ScaledVisibleCellsCollectionView_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 188CDE3E026875C505AA3A54D9C61938 /* Pods-ScaledVisibleCellsCollectionView_Example-dummy.m */; };\n\t\t721019629B6EB5842D293AB2CF04BA99 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A78979ED1230825E9ACF68472D46A72C /* Foundation.framework */; };\n\t\t7709C0F9976EE44E7BA56BC8F6E5E2E9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A78979ED1230825E9ACF68472D46A72C /* Foundation.framework */; };\n\t\t7912CCF5480E61977C053C68E422AB55 /* ScaledVisibleCellsCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8600799695F596092B749B4981BA6E6 /* ScaledVisibleCellsCollectionView.swift */; };\n\t\tA8EE68EC0AD0A5CF5E2F6084C10F8142 /* Pods-ScaledVisibleCellsCollectionView_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 18766C201A819535B6FD6E239530C0CE /* Pods-ScaledVisibleCellsCollectionView_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tD27C67CCA7F9C39FEB03B4B2E4DB4423 /* Pods-ScaledVisibleCellsCollectionView_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 89AE12AD22BB19CF0F0C10D3684CDDE2 /* Pods-ScaledVisibleCellsCollectionView_Tests-dummy.m */; };\n\t\tE5B7BE6841D0AD6199435379D1445BD0 /* ScaledVisibleCellsCollectionView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 049ECD3C9793BCD210DEE8BFF062B9B5 /* ScaledVisibleCellsCollectionView-dummy.m */; };\n\t\tECD2ED2814DAC247940CB771FF6E35DE /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A1A2C91E45E453ADF8CEFEE38E20F74 /* UIKit.framework */; };\n\t\tFD1931D4B948FB9D5D5D9BE838FE9479 /* Pods-ScaledVisibleCellsCollectionView_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C7C4221BF9107FFC222B0BF3EA2238DB /* Pods-ScaledVisibleCellsCollectionView_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };\n/* End PBXBuildFile section */\n\n/* Begin PBXContainerItemProxy section */\n\t\t4BC88A2073A97447F76FB9449DE91091 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 26A3DB15CB154E70CE261AD2F93B684E;\n\t\t\tremoteInfo = ScaledVisibleCellsCollectionView;\n\t\t};\n\t\t9645CD1890DCB8EC235B00353A768C34 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 26A3DB15CB154E70CE261AD2F93B684E;\n\t\t\tremoteInfo = ScaledVisibleCellsCollectionView;\n\t\t};\n/* End PBXContainerItemProxy section */\n\n/* Begin PBXFileReference section */\n\t\t00EFAE8C540C313EECFE69A65BA2F134 /* Pods_ScaledVisibleCellsCollectionView_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ScaledVisibleCellsCollectionView_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t02699250E243D8FEBDC50CAD6D2E714C /* Pods-ScaledVisibleCellsCollectionView_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = \"Pods-ScaledVisibleCellsCollectionView_Tests-acknowledgements.plist\"; sourceTree = \"<group>\"; };\n\t\t049ECD3C9793BCD210DEE8BFF062B9B5 /* ScaledVisibleCellsCollectionView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = \"ScaledVisibleCellsCollectionView-dummy.m\"; sourceTree = \"<group>\"; };\n\t\t05BBA3ACD5D30EF75E8805446B2EEE7E /* ScaledVisibleCellsCollectionView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ScaledVisibleCellsCollectionView.h; sourceTree = \"<group>\"; };\n\t\t13A01A4F7215FEE74E9CE40B9ABD2C0F /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\t18766C201A819535B6FD6E239530C0CE /* Pods-ScaledVisibleCellsCollectionView_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"Pods-ScaledVisibleCellsCollectionView_Example-umbrella.h\"; sourceTree = \"<group>\"; };\n\t\t188CDE3E026875C505AA3A54D9C61938 /* Pods-ScaledVisibleCellsCollectionView_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = \"Pods-ScaledVisibleCellsCollectionView_Example-dummy.m\"; sourceTree = \"<group>\"; };\n\t\t233476E1D2D8F64BF7B3A7661AF52D6E /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\t2C386884E1C545D3D08E0AA5F4A20B87 /* Pods-ScaledVisibleCellsCollectionView_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = \"Pods-ScaledVisibleCellsCollectionView_Tests.debug.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t2C75DD2678EFA6CAD4C3D08FB3C6D1B1 /* ScaledVisibleCellsCollectionView-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = \"ScaledVisibleCellsCollectionView-Private.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t3BC2F8D09F107A614DC5ADE63ED5DF04 /* ScaledVisibleCellsCollectionView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"ScaledVisibleCellsCollectionView-prefix.pch\"; sourceTree = \"<group>\"; };\n\t\t3E14DD21E8B849AD18400C217C3F7BB3 /* Pods-ScaledVisibleCellsCollectionView_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = \"Pods-ScaledVisibleCellsCollectionView_Example-frameworks.sh\"; sourceTree = \"<group>\"; };\n\t\t3F7A1E8261ADA0E0392801D9E606B344 /* Pods-ScaledVisibleCellsCollectionView_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = \"Pods-ScaledVisibleCellsCollectionView_Example-resources.sh\"; sourceTree = \"<group>\"; };\n\t\t4C8659B200A057815668101361B214D4 /* Pods-ScaledVisibleCellsCollectionView_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = \"Pods-ScaledVisibleCellsCollectionView_Tests-resources.sh\"; sourceTree = \"<group>\"; };\n\t\t4EEDC4EDF9AB3E73A25914185BCE95D4 /* Pods-ScaledVisibleCellsCollectionView_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = \"Pods-ScaledVisibleCellsCollectionView_Example.debug.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t51C67F71C7A817D06C5C46B87687885E /* ScaledVisibleCellsCollectionView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = ScaledVisibleCellsCollectionView.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t55C85CF9C7E9145EE629F0EBE16033A5 /* Pods-ScaledVisibleCellsCollectionView_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = \"Pods-ScaledVisibleCellsCollectionView_Example.release.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t5A1A2C91E45E453ADF8CEFEE38E20F74 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.3.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };\n\t\t7F2FE28DDD7B1A312A193BA348098555 /* Pods-ScaledVisibleCellsCollectionView_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = \"Pods-ScaledVisibleCellsCollectionView_Example-acknowledgements.plist\"; sourceTree = \"<group>\"; };\n\t\t804C9E11D33E32FBDB77A66839F5AD05 /* Pods_ScaledVisibleCellsCollectionView_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ScaledVisibleCellsCollectionView_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t8965A99E76AF3BA809CD183534600E1F /* Pods-ScaledVisibleCellsCollectionView_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = \"sourcecode.module-map\"; path = \"Pods-ScaledVisibleCellsCollectionView_Tests.modulemap\"; sourceTree = \"<group>\"; };\n\t\t89AE12AD22BB19CF0F0C10D3684CDDE2 /* Pods-ScaledVisibleCellsCollectionView_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = \"Pods-ScaledVisibleCellsCollectionView_Tests-dummy.m\"; sourceTree = \"<group>\"; };\n\t\tA33615FE87F5F8CF4C4D9462AF16C377 /* ScaledVisibleCellsCollectionView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"ScaledVisibleCellsCollectionView-umbrella.h\"; sourceTree = \"<group>\"; };\n\t\tA78979ED1230825E9ACF68472D46A72C /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };\n\t\tB236549017F8616ED38A472F27E675FD /* Pods-ScaledVisibleCellsCollectionView_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = \"Pods-ScaledVisibleCellsCollectionView_Tests.release.xcconfig\"; sourceTree = \"<group>\"; };\n\t\tBA6428E9F66FD5A23C0A2E06ED26CD2F /* Podfile */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };\n\t\tC2441ED66868A9C90322500C2306A322 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\tC75DE6951CB7A9C272BBA7C9DFC69C2D /* Pods-ScaledVisibleCellsCollectionView_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = \"Pods-ScaledVisibleCellsCollectionView_Tests-acknowledgements.markdown\"; sourceTree = \"<group>\"; };\n\t\tC7C4221BF9107FFC222B0BF3EA2238DB /* Pods-ScaledVisibleCellsCollectionView_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"Pods-ScaledVisibleCellsCollectionView_Tests-umbrella.h\"; sourceTree = \"<group>\"; };\n\t\tD2BF0FF0266E31A35814A36510F636FE /* Pods-ScaledVisibleCellsCollectionView_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = \"Pods-ScaledVisibleCellsCollectionView_Example-acknowledgements.markdown\"; sourceTree = \"<group>\"; };\n\t\tD7F0E2B05E26B9BF25CC438321B01F42 /* Pods-ScaledVisibleCellsCollectionView_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = \"sourcecode.module-map\"; path = \"Pods-ScaledVisibleCellsCollectionView_Example.modulemap\"; sourceTree = \"<group>\"; };\n\t\tD8600799695F596092B749B4981BA6E6 /* ScaledVisibleCellsCollectionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ScaledVisibleCellsCollectionView.swift; sourceTree = \"<group>\"; };\n\t\tE8845E3352258E16D7D0562D09C9F6A2 /* Pods-ScaledVisibleCellsCollectionView_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = \"Pods-ScaledVisibleCellsCollectionView_Tests-frameworks.sh\"; sourceTree = \"<group>\"; };\n\t\tEA0D67244462411B0FE1D39F6A93BBB7 /* ScaledVisibleCellsCollectionView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = \"sourcecode.module-map\"; path = ScaledVisibleCellsCollectionView.modulemap; sourceTree = \"<group>\"; };\n\t\tF6A255B5EBFF138545530C9EEA0569A7 /* ScaledVisibleCellsCollectionView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ScaledVisibleCellsCollectionView.xcconfig; sourceTree = \"<group>\"; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\t80EB0632DF41BCCAFA8851A33B85FC76 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t1B657DC7A5C17800901424A310AA08F4 /* Foundation.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t901ACA354487299DABEF99B24587D009 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t7709C0F9976EE44E7BA56BC8F6E5E2E9 /* Foundation.framework in Frameworks */,\n\t\t\t\tECD2ED2814DAC247940CB771FF6E35DE /* UIKit.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tB88C00B2EF7B6D359AAB1C54EAFF5306 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t721019629B6EB5842D293AB2CF04BA99 /* Foundation.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\t16EE5710D6D3CE1D761E89460CF70A4F /* Support Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t13A01A4F7215FEE74E9CE40B9ABD2C0F /* Info.plist */,\n\t\t\t\tEA0D67244462411B0FE1D39F6A93BBB7 /* ScaledVisibleCellsCollectionView.modulemap */,\n\t\t\t\tF6A255B5EBFF138545530C9EEA0569A7 /* ScaledVisibleCellsCollectionView.xcconfig */,\n\t\t\t\t2C75DD2678EFA6CAD4C3D08FB3C6D1B1 /* ScaledVisibleCellsCollectionView-Private.xcconfig */,\n\t\t\t\t049ECD3C9793BCD210DEE8BFF062B9B5 /* ScaledVisibleCellsCollectionView-dummy.m */,\n\t\t\t\t3BC2F8D09F107A614DC5ADE63ED5DF04 /* ScaledVisibleCellsCollectionView-prefix.pch */,\n\t\t\t\tA33615FE87F5F8CF4C4D9462AF16C377 /* ScaledVisibleCellsCollectionView-umbrella.h */,\n\t\t\t);\n\t\t\tname = \"Support Files\";\n\t\t\tpath = \"ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/ScaledVisibleCellsCollectionView\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t231DA38102D0C3F7FF1A93B52876E8C2 /* Targets Support Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tD0F582521A3DA50EE5C5C9E63E5362D8 /* Pods-ScaledVisibleCellsCollectionView_Example */,\n\t\t\t\tB1C2BAB35198B3C03D7CF5DF5AB34917 /* Pods-ScaledVisibleCellsCollectionView_Tests */,\n\t\t\t);\n\t\t\tname = \"Targets Support Files\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t433CD3331B6C3787F473C941B61FC68F /* Frameworks */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tD0FB9306D21AF23A056944AE037CBFFF /* iOS */,\n\t\t\t);\n\t\t\tname = Frameworks;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t444562E5C171B0509A57115EF70A7A87 /* Development Pods */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tB2AB7B44B6F0EF15A3000758C128DD28 /* ScaledVisibleCellsCollectionView */,\n\t\t\t);\n\t\t\tname = \"Development Pods\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t5E3AA3A6E125B84481816E9A666DB051 /* ScaledVisibleCellsCollectionView */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t05BBA3ACD5D30EF75E8805446B2EEE7E /* ScaledVisibleCellsCollectionView.h */,\n\t\t\t\tD8600799695F596092B749B4981BA6E6 /* ScaledVisibleCellsCollectionView.swift */,\n\t\t\t);\n\t\t\tpath = ScaledVisibleCellsCollectionView;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t7DB346D0F39D3F0E887471402A8071AB = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tBA6428E9F66FD5A23C0A2E06ED26CD2F /* Podfile */,\n\t\t\t\t444562E5C171B0509A57115EF70A7A87 /* Development Pods */,\n\t\t\t\t433CD3331B6C3787F473C941B61FC68F /* Frameworks */,\n\t\t\t\tCCA510CFBEA2D207524CDA0D73C3B561 /* Products */,\n\t\t\t\t231DA38102D0C3F7FF1A93B52876E8C2 /* Targets Support Files */,\n\t\t\t);\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tB1C2BAB35198B3C03D7CF5DF5AB34917 /* Pods-ScaledVisibleCellsCollectionView_Tests */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t233476E1D2D8F64BF7B3A7661AF52D6E /* Info.plist */,\n\t\t\t\t8965A99E76AF3BA809CD183534600E1F /* Pods-ScaledVisibleCellsCollectionView_Tests.modulemap */,\n\t\t\t\tC75DE6951CB7A9C272BBA7C9DFC69C2D /* Pods-ScaledVisibleCellsCollectionView_Tests-acknowledgements.markdown */,\n\t\t\t\t02699250E243D8FEBDC50CAD6D2E714C /* Pods-ScaledVisibleCellsCollectionView_Tests-acknowledgements.plist */,\n\t\t\t\t89AE12AD22BB19CF0F0C10D3684CDDE2 /* Pods-ScaledVisibleCellsCollectionView_Tests-dummy.m */,\n\t\t\t\tE8845E3352258E16D7D0562D09C9F6A2 /* Pods-ScaledVisibleCellsCollectionView_Tests-frameworks.sh */,\n\t\t\t\t4C8659B200A057815668101361B214D4 /* Pods-ScaledVisibleCellsCollectionView_Tests-resources.sh */,\n\t\t\t\tC7C4221BF9107FFC222B0BF3EA2238DB /* Pods-ScaledVisibleCellsCollectionView_Tests-umbrella.h */,\n\t\t\t\t2C386884E1C545D3D08E0AA5F4A20B87 /* Pods-ScaledVisibleCellsCollectionView_Tests.debug.xcconfig */,\n\t\t\t\tB236549017F8616ED38A472F27E675FD /* Pods-ScaledVisibleCellsCollectionView_Tests.release.xcconfig */,\n\t\t\t);\n\t\t\tname = \"Pods-ScaledVisibleCellsCollectionView_Tests\";\n\t\t\tpath = \"Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tB2AB7B44B6F0EF15A3000758C128DD28 /* ScaledVisibleCellsCollectionView */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t5E3AA3A6E125B84481816E9A666DB051 /* ScaledVisibleCellsCollectionView */,\n\t\t\t\t16EE5710D6D3CE1D761E89460CF70A4F /* Support Files */,\n\t\t\t);\n\t\t\tname = ScaledVisibleCellsCollectionView;\n\t\t\tpath = ../..;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tCCA510CFBEA2D207524CDA0D73C3B561 /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t00EFAE8C540C313EECFE69A65BA2F134 /* Pods_ScaledVisibleCellsCollectionView_Example.framework */,\n\t\t\t\t804C9E11D33E32FBDB77A66839F5AD05 /* Pods_ScaledVisibleCellsCollectionView_Tests.framework */,\n\t\t\t\t51C67F71C7A817D06C5C46B87687885E /* ScaledVisibleCellsCollectionView.framework */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tD0F582521A3DA50EE5C5C9E63E5362D8 /* Pods-ScaledVisibleCellsCollectionView_Example */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC2441ED66868A9C90322500C2306A322 /* Info.plist */,\n\t\t\t\tD7F0E2B05E26B9BF25CC438321B01F42 /* Pods-ScaledVisibleCellsCollectionView_Example.modulemap */,\n\t\t\t\tD2BF0FF0266E31A35814A36510F636FE /* Pods-ScaledVisibleCellsCollectionView_Example-acknowledgements.markdown */,\n\t\t\t\t7F2FE28DDD7B1A312A193BA348098555 /* Pods-ScaledVisibleCellsCollectionView_Example-acknowledgements.plist */,\n\t\t\t\t188CDE3E026875C505AA3A54D9C61938 /* Pods-ScaledVisibleCellsCollectionView_Example-dummy.m */,\n\t\t\t\t3E14DD21E8B849AD18400C217C3F7BB3 /* Pods-ScaledVisibleCellsCollectionView_Example-frameworks.sh */,\n\t\t\t\t3F7A1E8261ADA0E0392801D9E606B344 /* Pods-ScaledVisibleCellsCollectionView_Example-resources.sh */,\n\t\t\t\t18766C201A819535B6FD6E239530C0CE /* Pods-ScaledVisibleCellsCollectionView_Example-umbrella.h */,\n\t\t\t\t4EEDC4EDF9AB3E73A25914185BCE95D4 /* Pods-ScaledVisibleCellsCollectionView_Example.debug.xcconfig */,\n\t\t\t\t55C85CF9C7E9145EE629F0EBE16033A5 /* Pods-ScaledVisibleCellsCollectionView_Example.release.xcconfig */,\n\t\t\t);\n\t\t\tname = \"Pods-ScaledVisibleCellsCollectionView_Example\";\n\t\t\tpath = \"Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tD0FB9306D21AF23A056944AE037CBFFF /* iOS */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tA78979ED1230825E9ACF68472D46A72C /* Foundation.framework */,\n\t\t\t\t5A1A2C91E45E453ADF8CEFEE38E20F74 /* UIKit.framework */,\n\t\t\t);\n\t\t\tname = iOS;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXHeadersBuildPhase section */\n\t\t0BB2C1A6D47E3CAADDE7A8B80A06DCF1 /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tFD1931D4B948FB9D5D5D9BE838FE9479 /* Pods-ScaledVisibleCellsCollectionView_Tests-umbrella.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t64F43CE845F2BCAADBFFF6C9E186A0DF /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t3C15648E5B8E91464DF72A3B74B14A2F /* ScaledVisibleCellsCollectionView-umbrella.h in Headers */,\n\t\t\t\t42AE903BA63936FF5D33D3CE9E7407A6 /* ScaledVisibleCellsCollectionView.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tDBC3AD80DBBD0CA9BA41A825BF3D0E8B /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tA8EE68EC0AD0A5CF5E2F6084C10F8142 /* Pods-ScaledVisibleCellsCollectionView_Example-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\t26A3DB15CB154E70CE261AD2F93B684E /* ScaledVisibleCellsCollectionView */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = AC843C861903CF17452564941C23E149 /* Build configuration list for PBXNativeTarget \"ScaledVisibleCellsCollectionView\" */;\n\t\t\tbuildPhases = (\n\t\t\t\tCC5B2C67F8A2DC5EBF8666105561937D /* Sources */,\n\t\t\t\t901ACA354487299DABEF99B24587D009 /* Frameworks */,\n\t\t\t\t64F43CE845F2BCAADBFFF6C9E186A0DF /* 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 = ScaledVisibleCellsCollectionView;\n\t\t\tproductName = ScaledVisibleCellsCollectionView;\n\t\t\tproductReference = 51C67F71C7A817D06C5C46B87687885E /* ScaledVisibleCellsCollectionView.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n\t\t71627CC5EA3D51972A1B6E5FB6E79982 /* Pods-ScaledVisibleCellsCollectionView_Tests */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = B7DC551967161313894B5FFE0CD3451A /* Build configuration list for PBXNativeTarget \"Pods-ScaledVisibleCellsCollectionView_Tests\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t15042EA509E51A24682FDCD493212111 /* Sources */,\n\t\t\t\t80EB0632DF41BCCAFA8851A33B85FC76 /* Frameworks */,\n\t\t\t\t0BB2C1A6D47E3CAADDE7A8B80A06DCF1 /* Headers */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\t9243DD2FB76471B8BFD47E416811979F /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = \"Pods-ScaledVisibleCellsCollectionView_Tests\";\n\t\t\tproductName = \"Pods-ScaledVisibleCellsCollectionView_Tests\";\n\t\t\tproductReference = 804C9E11D33E32FBDB77A66839F5AD05 /* Pods_ScaledVisibleCellsCollectionView_Tests.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n\t\tA453FBB5EB73355AB1C979A90D7C9353 /* Pods-ScaledVisibleCellsCollectionView_Example */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 22281D0D75B693B79DD31EA65AE12622 /* Build configuration list for PBXNativeTarget \"Pods-ScaledVisibleCellsCollectionView_Example\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t34E4ADDBE8DEAB108F56871A208F15FC /* Sources */,\n\t\t\t\tB88C00B2EF7B6D359AAB1C54EAFF5306 /* Frameworks */,\n\t\t\t\tDBC3AD80DBBD0CA9BA41A825BF3D0E8B /* Headers */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\t9C4A7891F3A9736911FA02CB67A75BC6 /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = \"Pods-ScaledVisibleCellsCollectionView_Example\";\n\t\t\tproductName = \"Pods-ScaledVisibleCellsCollectionView_Example\";\n\t\t\tproductReference = 00EFAE8C540C313EECFE69A65BA2F134 /* Pods_ScaledVisibleCellsCollectionView_Example.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 = 0700;\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 = CCA510CFBEA2D207524CDA0D73C3B561 /* Products */;\n\t\t\tprojectDirPath = \"\";\n\t\t\tprojectRoot = \"\";\n\t\t\ttargets = (\n\t\t\t\tA453FBB5EB73355AB1C979A90D7C9353 /* Pods-ScaledVisibleCellsCollectionView_Example */,\n\t\t\t\t71627CC5EA3D51972A1B6E5FB6E79982 /* Pods-ScaledVisibleCellsCollectionView_Tests */,\n\t\t\t\t26A3DB15CB154E70CE261AD2F93B684E /* ScaledVisibleCellsCollectionView */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin PBXSourcesBuildPhase section */\n\t\t15042EA509E51A24682FDCD493212111 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tD27C67CCA7F9C39FEB03B4B2E4DB4423 /* Pods-ScaledVisibleCellsCollectionView_Tests-dummy.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t34E4ADDBE8DEAB108F56871A208F15FC /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t4CF0319A1A608A6F9EF8D0E325B6BCB3 /* Pods-ScaledVisibleCellsCollectionView_Example-dummy.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tCC5B2C67F8A2DC5EBF8666105561937D /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tE5B7BE6841D0AD6199435379D1445BD0 /* ScaledVisibleCellsCollectionView-dummy.m in Sources */,\n\t\t\t\t7912CCF5480E61977C053C68E422AB55 /* ScaledVisibleCellsCollectionView.swift 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\t9243DD2FB76471B8BFD47E416811979F /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\tname = ScaledVisibleCellsCollectionView;\n\t\t\ttarget = 26A3DB15CB154E70CE261AD2F93B684E /* ScaledVisibleCellsCollectionView */;\n\t\t\ttargetProxy = 4BC88A2073A97447F76FB9449DE91091 /* PBXContainerItemProxy */;\n\t\t};\n\t\t9C4A7891F3A9736911FA02CB67A75BC6 /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\tname = ScaledVisibleCellsCollectionView;\n\t\t\ttarget = 26A3DB15CB154E70CE261AD2F93B684E /* ScaledVisibleCellsCollectionView */;\n\t\t\ttargetProxy = 9645CD1890DCB8EC235B00353A768C34 /* PBXContainerItemProxy */;\n\t\t};\n/* End PBXTargetDependency section */\n\n/* Begin XCBuildConfiguration section */\n\t\t10DE1947DAC0ED28F6C0A9F9BD75D546 /* 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;\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\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 = \"RELEASE=1\";\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 = 8.3;\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\t11E4223C0933713CF9BD6BAF2A8FA30A /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = B236549017F8616ED38A472F27E675FD /* Pods-ScaledVisibleCellsCollectionView_Tests.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\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\tINFOPLIST_FILE = \"Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 8.3;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_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_NAME = Pods_ScaledVisibleCellsCollectionView_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\t3F94D07753C30280077A82DF04F00895 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 2C75DD2678EFA6CAD4C3D08FB3C6D1B1 /* ScaledVisibleCellsCollectionView-Private.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 0.2.0;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 0.2.0;\n\t\t\t\tDYLIB_CURRENT_VERSION = \"$(CURRENT_PROJECT_VERSION)\";\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_PREFIX_HEADER = \"Target Support Files/ScaledVisibleCellsCollectionView/ScaledVisibleCellsCollectionView-prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/ScaledVisibleCellsCollectionView/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 8.3;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/ScaledVisibleCellsCollectionView/ScaledVisibleCellsCollectionView.modulemap\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = YES;\n\t\t\t\tPRODUCT_NAME = ScaledVisibleCellsCollectionView;\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\t552D02D5BA751AC2E8790D2811D496CA /* 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;\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\tCOPY_PHASE_STRIP = NO;\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\"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 = 8.3;\n\t\t\t\tONLY_ACTIVE_ARCH = YES;\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\t649CB1E83EFA86ED9E7C997FE7DA9EAC /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 4EEDC4EDF9AB3E73A25914185BCE95D4 /* Pods-ScaledVisibleCellsCollectionView_Example.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\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\tINFOPLIST_FILE = \"Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 8.3;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example.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_NAME = Pods_ScaledVisibleCellsCollectionView_Example;\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\t9882D9708C5497E0874CDFD35C1DE597 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 55C85CF9C7E9145EE629F0EBE16033A5 /* Pods-ScaledVisibleCellsCollectionView_Example.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\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\tINFOPLIST_FILE = \"Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 8.3;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example.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_NAME = Pods_ScaledVisibleCellsCollectionView_Example;\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\tAD2E547EAF82DD5B6594B19DDE35F992 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 2C386884E1C545D3D08E0AA5F4A20B87 /* Pods-ScaledVisibleCellsCollectionView_Tests.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\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\tINFOPLIST_FILE = \"Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 8.3;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_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_NAME = Pods_ScaledVisibleCellsCollectionView_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\tEC219E66551E971AF8356959DD6E6F0A /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 2C75DD2678EFA6CAD4C3D08FB3C6D1B1 /* ScaledVisibleCellsCollectionView-Private.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 0.2.0;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 0.2.0;\n\t\t\t\tDYLIB_CURRENT_VERSION = \"$(CURRENT_PROJECT_VERSION)\";\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_PREFIX_HEADER = \"Target Support Files/ScaledVisibleCellsCollectionView/ScaledVisibleCellsCollectionView-prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/ScaledVisibleCellsCollectionView/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 8.3;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/ScaledVisibleCellsCollectionView/ScaledVisibleCellsCollectionView.modulemap\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tPRODUCT_NAME = ScaledVisibleCellsCollectionView;\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/* End XCBuildConfiguration section */\n\n/* Begin XCConfigurationList section */\n\t\t22281D0D75B693B79DD31EA65AE12622 /* Build configuration list for PBXNativeTarget \"Pods-ScaledVisibleCellsCollectionView_Example\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t649CB1E83EFA86ED9E7C997FE7DA9EAC /* Debug */,\n\t\t\t\t9882D9708C5497E0874CDFD35C1DE597 /* 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\t552D02D5BA751AC2E8790D2811D496CA /* Debug */,\n\t\t\t\t10DE1947DAC0ED28F6C0A9F9BD75D546 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tAC843C861903CF17452564941C23E149 /* Build configuration list for PBXNativeTarget \"ScaledVisibleCellsCollectionView\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t3F94D07753C30280077A82DF04F00895 /* Debug */,\n\t\t\t\tEC219E66551E971AF8356959DD6E6F0A /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tB7DC551967161313894B5FFE0CD3451A /* Build configuration list for PBXNativeTarget \"Pods-ScaledVisibleCellsCollectionView_Tests\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tAD2E547EAF82DD5B6594B19DDE35F992 /* Debug */,\n\t\t\t\t11E4223C0933713CF9BD6BAF2A8FA30A /* 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": "ScaledVisibleCellsCollectionViewExample/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-ScaledVisibleCellsCollectionView_Example-ScaledVisibleCellsCollectionView-ScaledVisibleCellsCollectionView.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"0640\"\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 = \"E3DDCADA7019AC5AC0B79374\"\n               BuildableName = \"ScaledVisibleCellsCollectionView.bundle\"\n               BlueprintName = \"Pods-ScaledVisibleCellsCollectionView_Example-ScaledVisibleCellsCollectionView-ScaledVisibleCellsCollectionView\"\n               ReferencedContainer = \"container:Pods.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      buildConfiguration = \"Debug\">\n      <Testables>\n      </Testables>\n   </TestAction>\n   <LaunchAction\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      buildConfiguration = \"Debug\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      allowLocationSimulation = \"YES\">\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </LaunchAction>\n   <ProfileAction\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      buildConfiguration = \"Release\"\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": "ScaledVisibleCellsCollectionViewExample/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-ScaledVisibleCellsCollectionView_Example-ScaledVisibleCellsCollectionView.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"0640\"\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 = \"7DB88AD11A442C8E5525CF88\"\n               BuildableName = \"ScaledVisibleCellsCollectionView.framework\"\n               BlueprintName = \"Pods-ScaledVisibleCellsCollectionView_Example-ScaledVisibleCellsCollectionView\"\n               ReferencedContainer = \"container:Pods.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      buildConfiguration = \"Debug\">\n      <Testables>\n      </Testables>\n   </TestAction>\n   <LaunchAction\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      buildConfiguration = \"Debug\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      allowLocationSimulation = \"YES\">\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </LaunchAction>\n   <ProfileAction\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      buildConfiguration = \"Release\"\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": "ScaledVisibleCellsCollectionViewExample/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-ScaledVisibleCellsCollectionView_Tests-ScaledVisibleCellsCollectionView-ScaledVisibleCellsCollectionView.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"0640\"\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 = \"613C933A56536E6C1790ACA5\"\n               BuildableName = \"ScaledVisibleCellsCollectionView.bundle\"\n               BlueprintName = \"Pods-ScaledVisibleCellsCollectionView_Tests-ScaledVisibleCellsCollectionView-ScaledVisibleCellsCollectionView\"\n               ReferencedContainer = \"container:Pods.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      buildConfiguration = \"Debug\">\n      <Testables>\n      </Testables>\n   </TestAction>\n   <LaunchAction\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      buildConfiguration = \"Debug\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      allowLocationSimulation = \"YES\">\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </LaunchAction>\n   <ProfileAction\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      buildConfiguration = \"Release\"\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": "ScaledVisibleCellsCollectionViewExample/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-ScaledVisibleCellsCollectionView_Tests-ScaledVisibleCellsCollectionView.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"0640\"\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 = \"81F43FAAA40568AAD67731B8\"\n               BuildableName = \"ScaledVisibleCellsCollectionView.framework\"\n               BlueprintName = \"Pods-ScaledVisibleCellsCollectionView_Tests-ScaledVisibleCellsCollectionView\"\n               ReferencedContainer = \"container:Pods.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      buildConfiguration = \"Debug\">\n      <Testables>\n      </Testables>\n   </TestAction>\n   <LaunchAction\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      buildConfiguration = \"Debug\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      allowLocationSimulation = \"YES\">\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </LaunchAction>\n   <ProfileAction\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      buildConfiguration = \"Release\"\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": "ScaledVisibleCellsCollectionViewExample/Pods/Pods.xcodeproj/xcshareddata/xcschemes/ScaledVisibleCellsCollectionView.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 = \"9DF610C5B9D7993A69B71F1C\"\n               BuildableName = \"ScaledVisibleCellsCollectionView.framework\"\n               BlueprintName = \"ScaledVisibleCellsCollectionView\"\n               ReferencedContainer = \"container:Pods.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      buildConfiguration = \"Debug\">\n      <AdditionalOptions>\n      </AdditionalOptions>\n      <Testables>\n      </Testables>\n   </TestAction>\n   <LaunchAction\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      buildConfiguration = \"Debug\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      debugServiceExtension = \"internal\"\n      allowLocationSimulation = \"YES\">\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </LaunchAction>\n   <ProfileAction\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      buildConfiguration = \"Release\"\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": "ScaledVisibleCellsCollectionViewExample/Pods/Pods.xcodeproj/xcuserdata/ikedamai.xcuserdatad/xcschemes/Pods-ScaledVisibleCellsCollectionView_Example.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 = \"D40B464E43438A2C1368D17F\"\n               BuildableName = \"Pods_ScaledVisibleCellsCollectionView_Example.framework\"\n               BlueprintName = \"Pods-ScaledVisibleCellsCollectionView_Example\"\n               ReferencedContainer = \"container:Pods.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      buildConfiguration = \"Debug\">\n      <AdditionalOptions>\n      </AdditionalOptions>\n      <Testables>\n      </Testables>\n   </TestAction>\n   <LaunchAction\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      buildConfiguration = \"Debug\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      debugServiceExtension = \"internal\"\n      allowLocationSimulation = \"YES\">\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </LaunchAction>\n   <ProfileAction\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      buildConfiguration = \"Release\"\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": "ScaledVisibleCellsCollectionViewExample/Pods/Pods.xcodeproj/xcuserdata/ikedamai.xcuserdatad/xcschemes/Pods-ScaledVisibleCellsCollectionView_Tests.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 = \"03A39D08F964DE0FA735D383\"\n               BuildableName = \"Pods_ScaledVisibleCellsCollectionView_Tests.framework\"\n               BlueprintName = \"Pods-ScaledVisibleCellsCollectionView_Tests\"\n               ReferencedContainer = \"container:Pods.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      buildConfiguration = \"Debug\">\n      <AdditionalOptions>\n      </AdditionalOptions>\n      <Testables>\n      </Testables>\n   </TestAction>\n   <LaunchAction\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      buildConfiguration = \"Debug\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      debugServiceExtension = \"internal\"\n      allowLocationSimulation = \"YES\">\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </LaunchAction>\n   <ProfileAction\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      buildConfiguration = \"Release\"\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": "ScaledVisibleCellsCollectionViewExample/Pods/Pods.xcodeproj/xcuserdata/ikedamai.xcuserdatad/xcschemes/xcschememanagement.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>SchemeUserState</key>\n\t<dict>\n\t\t<key>Pods-ScaledVisibleCellsCollectionView_Example.xcscheme</key>\n\t\t<dict>\n\t\t\t<key>isShown</key>\n\t\t\t<false/>\n\t\t</dict>\n\t\t<key>Pods-ScaledVisibleCellsCollectionView_Tests.xcscheme</key>\n\t\t<dict>\n\t\t\t<key>isShown</key>\n\t\t\t<false/>\n\t\t</dict>\n\t\t<key>ScaledVisibleCellsCollectionView.xcscheme</key>\n\t\t<dict>\n\t\t\t<key>isShown</key>\n\t\t\t<false/>\n\t\t</dict>\n\t</dict>\n\t<key>SuppressBuildableAutocreation</key>\n\t<dict>\n\t\t<key>26A3DB15CB154E70CE261AD2F93B684E</key>\n\t\t<dict>\n\t\t\t<key>primary</key>\n\t\t\t<true/>\n\t\t</dict>\n\t\t<key>71627CC5EA3D51972A1B6E5FB6E79982</key>\n\t\t<dict>\n\t\t\t<key>primary</key>\n\t\t\t<true/>\n\t\t</dict>\n\t\t<key>A453FBB5EB73355AB1C979A90D7C9353</key>\n\t\t<dict>\n\t\t\t<key>primary</key>\n\t\t\t<true/>\n\t\t</dict>\n\t</dict>\n</dict>\n</plist>\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/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>org.cocoapods.${PRODUCT_NAME:rfc1034identifier}</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": "ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example-acknowledgements.markdown",
    "content": "# Acknowledgements\nThis application makes use of the following third party libraries:\n\n## ScaledVisibleCellsCollectionView\n\nCopyright (c) 2015 ikemai <ikeda_mai@cyberagent.co.jp>\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\nGenerated by CocoaPods - http://cocoapods.org\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example-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) 2015 ikemai &lt;ikeda_mai@cyberagent.co.jp&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>Title</key>\n\t\t\t<string>ScaledVisibleCellsCollectionView</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 - http://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": "ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example-dummy.m",
    "content": "#import <Foundation/Foundation.h>\n@interface PodsDummy_Pods_ScaledVisibleCellsCollectionView_Example : NSObject\n@end\n@implementation PodsDummy_Pods_ScaledVisibleCellsCollectionView_Example\n@end\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example-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  else\n    local source=\"${BUILT_PRODUCTS_DIR}/$(basename \"$1\")\"\n  fi\n\n  local destination=\"${CONFIGURATION_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  # 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\n  local basename\n  basename=\"$(basename \"$1\" | sed -E s/\\\\..+// && exit ${PIPESTATUS[0]})\"\n  local swift_runtime_libs\n  swift_runtime_libs=$(xcrun otool -LX \"${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/${basename}.framework/${basename}\" | 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}\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} --preserve-metadata=identifier,entitlements \\\"$1\\\"\"\n    /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements \"$1\"\n  fi\n}\n\n\nif [[ \"$CONFIGURATION\" == \"Debug\" ]]; then\n  install_framework 'Pods-ScaledVisibleCellsCollectionView_Example/ScaledVisibleCellsCollectionView.framework'\nfi\nif [[ \"$CONFIGURATION\" == \"Release\" ]]; then\n  install_framework 'Pods-ScaledVisibleCellsCollectionView_Example/ScaledVisibleCellsCollectionView.framework'\nfi\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example-resources.sh",
    "content": "#!/bin/sh\nset -e\n\nmkdir -p \"${CONFIGURATION_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\nrealpath() {\n  DIRECTORY=\"$(cd \"${1%/*}\" && pwd)\"\n  FILENAME=\"${1##*/}\"\n  echo \"$DIRECTORY/$FILENAME\"\n}\n\ninstall_resource()\n{\n  case $1 in\n    *.storyboard)\n      echo \"ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \\\"$1\\\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}\"\n      ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \\\"$1\\\" .storyboard`.storyboardc\" \"${PODS_ROOT}/$1\" --sdk \"${SDKROOT}\"\n      ;;\n    *.xib)\n      echo \"ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \\\"$1\\\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}\"\n      ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \\\"$1\\\" .xib`.nib\" \"${PODS_ROOT}/$1\" --sdk \"${SDKROOT}\"\n      ;;\n    *.framework)\n      echo \"mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n      mkdir -p \"${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n      echo \"rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n      rsync -av \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n      ;;\n    *.xcdatamodel)\n      echo \"xcrun momc \\\"${PODS_ROOT}/$1\\\" \\\"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\"`.mom\\\"\"\n      xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xcdatamodel`.mom\"\n      ;;\n    *.xcdatamodeld)\n      echo \"xcrun momc \\\"${PODS_ROOT}/$1\\\" \\\"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xcdatamodeld`.momd\\\"\"\n      xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xcdatamodeld`.momd\"\n      ;;\n    *.xcmappingmodel)\n      echo \"xcrun mapc \\\"${PODS_ROOT}/$1\\\" \\\"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xcmappingmodel`.cdm\\\"\"\n      xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xcmappingmodel`.cdm\"\n      ;;\n    *.xcassets)\n      ABSOLUTE_XCASSET_FILE=$(realpath \"${PODS_ROOT}/$1\")\n      XCASSET_FILES+=(\"$ABSOLUTE_XCASSET_FILE\")\n      ;;\n    /*)\n      echo \"$1\"\n      echo \"$1\" >> \"$RESOURCES_TO_COPY\"\n      ;;\n    *)\n      echo \"${PODS_ROOT}/$1\"\n      echo \"${PODS_ROOT}/$1\" >> \"$RESOURCES_TO_COPY\"\n      ;;\n  esac\n}\n\nmkdir -p \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\nrsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from=\"$RESOURCES_TO_COPY\" / \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\nif [[ \"${ACTION}\" == \"install\" ]]; 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  case \"${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      ;;\n  esac\n\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 != \"`realpath $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 \"${IPHONEOS_DEPLOYMENT_TARGET}\" ${TARGET_DEVICE_ARGS} --compress-pngs --compile \"${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\nfi\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example-umbrella.h",
    "content": "#import <UIKit/UIKit.h>\n\n\nFOUNDATION_EXPORT double Pods_ScaledVisibleCellsCollectionView_ExampleVersionNumber;\nFOUNDATION_EXPORT const unsigned char Pods_ScaledVisibleCellsCollectionView_ExampleVersionString[];\n\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example.debug.xcconfig",
    "content": "GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nLD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'\nOTHER_CFLAGS = $(inherited) -iquote \"$CONFIGURATION_BUILD_DIR/ScaledVisibleCellsCollectionView.framework/Headers\"\nOTHER_LDFLAGS = $(inherited) -framework \"ScaledVisibleCellsCollectionView\"\nOTHER_SWIFT_FLAGS = $(inherited) \"-D\" \"COCOAPODS\"\nPODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-ScaledVisibleCellsCollectionView_Example\nPODS_ROOT = ${SRCROOT}/Pods"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example.modulemap",
    "content": "framework module Pods_ScaledVisibleCellsCollectionView_Example {\n  umbrella header \"Pods-ScaledVisibleCellsCollectionView_Example-umbrella.h\"\n\n  export *\n  module * { export * }\n}\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example.release.xcconfig",
    "content": "GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nLD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'\nOTHER_CFLAGS = $(inherited) -iquote \"$CONFIGURATION_BUILD_DIR/ScaledVisibleCellsCollectionView.framework/Headers\"\nOTHER_LDFLAGS = $(inherited) -framework \"ScaledVisibleCellsCollectionView\"\nOTHER_SWIFT_FLAGS = $(inherited) \"-D\" \"COCOAPODS\"\nPODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-ScaledVisibleCellsCollectionView_Example\nPODS_ROOT = ${SRCROOT}/Pods"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_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>org.cocoapods.${PRODUCT_NAME:rfc1034identifier}</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": "ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_Tests-acknowledgements.markdown",
    "content": "# Acknowledgements\nThis application makes use of the following third party libraries:\n\n## ScaledVisibleCellsCollectionView\n\nCopyright (c) 2015 ikemai <ikeda_mai@cyberagent.co.jp>\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\nGenerated by CocoaPods - http://cocoapods.org\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_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) 2015 ikemai &lt;ikeda_mai@cyberagent.co.jp&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>Title</key>\n\t\t\t<string>ScaledVisibleCellsCollectionView</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 - http://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": "ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_Tests-dummy.m",
    "content": "#import <Foundation/Foundation.h>\n@interface PodsDummy_Pods_ScaledVisibleCellsCollectionView_Tests : NSObject\n@end\n@implementation PodsDummy_Pods_ScaledVisibleCellsCollectionView_Tests\n@end\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_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  else\n    local source=\"${BUILT_PRODUCTS_DIR}/$(basename \"$1\")\"\n  fi\n\n  local destination=\"${CONFIGURATION_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  # 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\n  local basename\n  basename=\"$(basename \"$1\" | sed -E s/\\\\..+// && exit ${PIPESTATUS[0]})\"\n  local swift_runtime_libs\n  swift_runtime_libs=$(xcrun otool -LX \"${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/${basename}.framework/${basename}\" | 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}\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} --preserve-metadata=identifier,entitlements \\\"$1\\\"\"\n    /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements \"$1\"\n  fi\n}\n\n\nif [[ \"$CONFIGURATION\" == \"Debug\" ]]; then\n  install_framework 'Pods-ScaledVisibleCellsCollectionView_Tests/ScaledVisibleCellsCollectionView.framework'\nfi\nif [[ \"$CONFIGURATION\" == \"Release\" ]]; then\n  install_framework 'Pods-ScaledVisibleCellsCollectionView_Tests/ScaledVisibleCellsCollectionView.framework'\nfi\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_Tests-resources.sh",
    "content": "#!/bin/sh\nset -e\n\nmkdir -p \"${CONFIGURATION_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\nrealpath() {\n  DIRECTORY=\"$(cd \"${1%/*}\" && pwd)\"\n  FILENAME=\"${1##*/}\"\n  echo \"$DIRECTORY/$FILENAME\"\n}\n\ninstall_resource()\n{\n  case $1 in\n    *.storyboard)\n      echo \"ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \\\"$1\\\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}\"\n      ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \\\"$1\\\" .storyboard`.storyboardc\" \"${PODS_ROOT}/$1\" --sdk \"${SDKROOT}\"\n      ;;\n    *.xib)\n      echo \"ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \\\"$1\\\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}\"\n      ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \\\"$1\\\" .xib`.nib\" \"${PODS_ROOT}/$1\" --sdk \"${SDKROOT}\"\n      ;;\n    *.framework)\n      echo \"mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n      mkdir -p \"${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n      echo \"rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n      rsync -av \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n      ;;\n    *.xcdatamodel)\n      echo \"xcrun momc \\\"${PODS_ROOT}/$1\\\" \\\"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\"`.mom\\\"\"\n      xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xcdatamodel`.mom\"\n      ;;\n    *.xcdatamodeld)\n      echo \"xcrun momc \\\"${PODS_ROOT}/$1\\\" \\\"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xcdatamodeld`.momd\\\"\"\n      xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xcdatamodeld`.momd\"\n      ;;\n    *.xcmappingmodel)\n      echo \"xcrun mapc \\\"${PODS_ROOT}/$1\\\" \\\"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xcmappingmodel`.cdm\\\"\"\n      xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xcmappingmodel`.cdm\"\n      ;;\n    *.xcassets)\n      ABSOLUTE_XCASSET_FILE=$(realpath \"${PODS_ROOT}/$1\")\n      XCASSET_FILES+=(\"$ABSOLUTE_XCASSET_FILE\")\n      ;;\n    /*)\n      echo \"$1\"\n      echo \"$1\" >> \"$RESOURCES_TO_COPY\"\n      ;;\n    *)\n      echo \"${PODS_ROOT}/$1\"\n      echo \"${PODS_ROOT}/$1\" >> \"$RESOURCES_TO_COPY\"\n      ;;\n  esac\n}\n\nmkdir -p \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\nrsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from=\"$RESOURCES_TO_COPY\" / \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\nif [[ \"${ACTION}\" == \"install\" ]]; 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  case \"${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      ;;\n  esac\n\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 != \"`realpath $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 \"${IPHONEOS_DEPLOYMENT_TARGET}\" ${TARGET_DEVICE_ARGS} --compress-pngs --compile \"${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\nfi\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_Tests-umbrella.h",
    "content": "#import <UIKit/UIKit.h>\n\n\nFOUNDATION_EXPORT double Pods_ScaledVisibleCellsCollectionView_TestsVersionNumber;\nFOUNDATION_EXPORT const unsigned char Pods_ScaledVisibleCellsCollectionView_TestsVersionString[];\n\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_Tests.debug.xcconfig",
    "content": "GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nLD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'\nOTHER_CFLAGS = $(inherited) -iquote \"$CONFIGURATION_BUILD_DIR/ScaledVisibleCellsCollectionView.framework/Headers\"\nOTHER_LDFLAGS = $(inherited) -framework \"ScaledVisibleCellsCollectionView\"\nOTHER_SWIFT_FLAGS = $(inherited) \"-D\" \"COCOAPODS\"\nPODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-ScaledVisibleCellsCollectionView_Tests\nPODS_ROOT = ${SRCROOT}/Pods"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_Tests.modulemap",
    "content": "framework module Pods_ScaledVisibleCellsCollectionView_Tests {\n  umbrella header \"Pods-ScaledVisibleCellsCollectionView_Tests-umbrella.h\"\n\n  export *\n  module * { export * }\n}\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_Tests.release.xcconfig",
    "content": "GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nLD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'\nOTHER_CFLAGS = $(inherited) -iquote \"$CONFIGURATION_BUILD_DIR/ScaledVisibleCellsCollectionView.framework/Headers\"\nOTHER_LDFLAGS = $(inherited) -framework \"ScaledVisibleCellsCollectionView\"\nOTHER_SWIFT_FLAGS = $(inherited) \"-D\" \"COCOAPODS\"\nPODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-ScaledVisibleCellsCollectionView_Tests\nPODS_ROOT = ${SRCROOT}/Pods"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/ScaledVisibleCellsCollectionView/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>org.cocoapods.${PRODUCT_NAME:rfc1034identifier}</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.2.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": "ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/ScaledVisibleCellsCollectionView/ScaledVisibleCellsCollectionView-Private.xcconfig",
    "content": "#include \"ScaledVisibleCellsCollectionView.xcconfig\"\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nHEADER_SEARCH_PATHS = \"${PODS_ROOT}/Headers/Private\" \"${PODS_ROOT}/Headers/Private/ScaledVisibleCellsCollectionView\" \"${PODS_ROOT}/Headers/Public\"\nOTHER_LDFLAGS = ${SCALEDVISIBLECELLSCOLLECTIONVIEW_OTHER_LDFLAGS}\nOTHER_SWIFT_FLAGS = $(inherited) \"-D\" \"COCOAPODS\"\nPODS_ROOT = ${SRCROOT}\nSKIP_INSTALL = YES"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/ScaledVisibleCellsCollectionView/ScaledVisibleCellsCollectionView-dummy.m",
    "content": "#import <Foundation/Foundation.h>\n@interface PodsDummy_ScaledVisibleCellsCollectionView : NSObject\n@end\n@implementation PodsDummy_ScaledVisibleCellsCollectionView\n@end\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/ScaledVisibleCellsCollectionView/ScaledVisibleCellsCollectionView-prefix.pch",
    "content": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#endif\n\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/ScaledVisibleCellsCollectionView/ScaledVisibleCellsCollectionView-umbrella.h",
    "content": "#import <UIKit/UIKit.h>\n\n#import \"ScaledVisibleCellsCollectionView.h\"\n\nFOUNDATION_EXPORT double ScaledVisibleCellsCollectionViewVersionNumber;\nFOUNDATION_EXPORT const unsigned char ScaledVisibleCellsCollectionViewVersionString[];\n\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/ScaledVisibleCellsCollectionView/ScaledVisibleCellsCollectionView.modulemap",
    "content": "framework module ScaledVisibleCellsCollectionView {\n  umbrella header \"ScaledVisibleCellsCollectionView-umbrella.h\"\n\n  export *\n  module * { export * }\n}\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/Pods/Target Support Files/ScaledVisibleCellsCollectionView/ScaledVisibleCellsCollectionView.xcconfig",
    "content": "SCALEDVISIBLECELLSCOLLECTIONVIEW_OTHER_LDFLAGS = -framework \"UIKit\""
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/ScaledVisibleCellsCollectionView/AppDelegate.swift",
    "content": "//\n//  AppDelegate.swift\n//  ScaledVisibleCellsCollectionView\n//\n//  Created by ikemai on 08/22/2015.\n//  Copyright (c) 2015 ikemai. 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: [NSObject: AnyObject]?) -> 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": "ScaledVisibleCellsCollectionViewExample/ScaledVisibleCellsCollectionView/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=\"ScaledVisibleCellsCollectionView\" 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": "ScaledVisibleCellsCollectionViewExample/ScaledVisibleCellsCollectionView/Base.lproj/Main.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"7706\" systemVersion=\"14E46\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" useTraitCollections=\"YES\" initialViewController=\"vXZ-lx-hvc\">\n    <dependencies>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"7703\"/>\n    </dependencies>\n    <scenes>\n        <!--View Controller-->\n        <scene sceneID=\"ufC-wZ-h7g\">\n            <objects>\n                <viewController id=\"vXZ-lx-hvc\" customClass=\"ViewController\" customModule=\"ScaledVisibleCellsCollectionView_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=\"600\" height=\"600\"/>\n                        <autoresizingMask key=\"autoresizingMask\" flexibleMaxX=\"YES\" flexibleMaxY=\"YES\"/>\n                        <subviews>\n                            <collectionView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" dataMode=\"prototypes\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"fOP-Ts-Apf\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"600\" height=\"600\"/>\n                                <collectionViewFlowLayout key=\"collectionViewLayout\" minimumLineSpacing=\"10\" minimumInteritemSpacing=\"10\" id=\"8Os-xO-8eC\">\n                                    <size key=\"itemSize\" width=\"300\" height=\"300\"/>\n                                    <size key=\"headerReferenceSize\" width=\"0.0\" height=\"0.0\"/>\n                                    <size key=\"footerReferenceSize\" width=\"0.0\" height=\"0.0\"/>\n                                    <inset key=\"sectionInset\" minX=\"0.0\" minY=\"0.0\" maxX=\"0.0\" maxY=\"0.0\"/>\n                                </collectionViewFlowLayout>\n                                <cells>\n                                    <collectionViewCell opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" reuseIdentifier=\"CollectionCell\" id=\"WxC-4k-xxh\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"50\" height=\"50\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <view key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"300\" height=\"300\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <color key=\"backgroundColor\" white=\"0.0\" alpha=\"0.0\" colorSpace=\"calibratedWhite\"/>\n                                        </view>\n                                        <color key=\"backgroundColor\" white=\"1\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                                    </collectionViewCell>\n                                </cells>\n                            </collectionView>\n                        </subviews>\n                        <color key=\"backgroundColor\" white=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"calibratedWhite\"/>\n                        <constraints>\n                            <constraint firstItem=\"fOP-Ts-Apf\" firstAttribute=\"top\" secondItem=\"kh9-bI-dsS\" secondAttribute=\"top\" id=\"7pi-jc-Jc9\"/>\n                            <constraint firstAttribute=\"trailing\" secondItem=\"fOP-Ts-Apf\" secondAttribute=\"trailing\" id=\"Ic2-44-04F\"/>\n                            <constraint firstItem=\"fOP-Ts-Apf\" firstAttribute=\"leading\" secondItem=\"kh9-bI-dsS\" secondAttribute=\"leading\" id=\"ReP-EB-v7y\"/>\n                            <constraint firstAttribute=\"bottom\" secondItem=\"fOP-Ts-Apf\" secondAttribute=\"bottom\" id=\"obA-Hn-X7Z\"/>\n                        </constraints>\n                    </view>\n                    <connections>\n                        <outlet property=\"collectionView\" destination=\"fOP-Ts-Apf\" id=\"7Pz-ak-Qt0\"/>\n                    </connections>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"x5A-6p-PRh\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n        </scene>\n    </scenes>\n</document>\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/ScaledVisibleCellsCollectionView/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": "ScaledVisibleCellsCollectionViewExample/ScaledVisibleCellsCollectionView/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>org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)</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\t<string>UIInterfaceOrientationLandscapeLeft</string>\n\t</array>\n</dict>\n</plist>\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/ScaledVisibleCellsCollectionView/ViewController.swift",
    "content": "//\n//  ViewController.swift\n//  ScaledVisibleCellsCollectionView\n//\n//  Created by ikemai on 08/22/2015.\n//  Copyright (c) 2015 ikemai. All rights reserved.\n//\n\nimport UIKit\nimport ScaledVisibleCellsCollectionView\n\nclass ViewController: UIViewController {\n    \n    @IBOutlet weak var collectionView: UICollectionView!\n    private let cellIdentifier = \"CollectionCell\"\n    \n    override func viewDidLoad() {\n        super.viewDidLoad()\n        \n        // Example: set 'VerticalCenter'\n        collectionView.setScaledDesginParam(scaledPattern: .VerticalCenter, maxScale: 1.2, minScale: 0.5, maxAlpha: 1.0, minAlpha: 0.5)\n        // Example: set 'VerticalTop'\n//        collectionView.setScaledDesginParam(scaledPattern: .VerticalTop, maxScale: 1.2, minScale: 0.5, maxAlpha: 1.0, minAlpha: 0.5)\n        // Example: set 'VerticalBottom'\n//        collectionView.setScaledDesginParam(scaledPattern: .VerticalBottom, maxScale: 1.2, minScale: 0.5, maxAlpha: 1.0, minAlpha: 0.5)\n        // Example: set 'HorizontalCenter'\n//        collectionView.setScaledDesginParam(scaledPattern: .HorizontalCenter, maxScale: 1.2, minScale: 0.5, maxAlpha: 1.0, minAlpha: 0.5)\n        // Example: set 'HorizontalLeft'\n//        collectionView.setScaledDesginParam(scaledPattern: .HorizontalLeft, maxScale: 1.2, minScale: 0.5, maxAlpha: 1.0, minAlpha: 0.5)\n        // Example: set 'HorizontalRight'\n//        collectionView.setScaledDesginParam(scaledPattern: .HorizontalRight, maxScale: 1.2, minScale: 0.5, maxAlpha: 1.0, minAlpha: 0.5)\n        \n        collectionView.delegate = self\n        collectionView.dataSource = self\n    }\n    \n    override func didReceiveMemoryWarning() {\n        super.didReceiveMemoryWarning()\n        // Dispose of any resources that can be recreated.\n    }\n    \n}\n\n//\n// MARK: - UICollectionViewDataSource, UICollectionViewDelegate\n//\nextension ViewController: UICollectionViewDataSource, UICollectionViewDelegate {\n    \n    func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {\n        return 100\n    }\n    \n    func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {\n        let cell: AnyObject = collectionView.dequeueReusableCellWithReuseIdentifier(cellIdentifier, forIndexPath: indexPath)\n        return cell as! UICollectionViewCell\n    }\n}\n\n\n//\n// MARK: - UIScrollViewDelegate\n//\nextension ViewController: UIScrollViewDelegate {\n    \n    func scrollViewDidScroll(scrollView: UIScrollView) {\n        collectionView.scaledVisibleCells()\n    }\n}"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/ScaledVisibleCellsCollectionView.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 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; };\n\t\t6B0296818D5A66AC602F693D /* Pods_ScaledVisibleCellsCollectionView_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 95F45565AC2EAE6D3B928F48 /* Pods_ScaledVisibleCellsCollectionView_Tests.framework */; settings = {ATTRIBUTES = (Weak, ); }; };\n\t\tF8DFCACFF16F793A5DBEA2FB /* Pods_ScaledVisibleCellsCollectionView_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 48F7329C9D29CB922F1483CA /* Pods_ScaledVisibleCellsCollectionView_Example.framework */; settings = {ATTRIBUTES = (Weak, ); }; };\n/* End PBXBuildFile section */\n\n/* Begin PBXContainerItemProxy section */\n\t\t607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = 607FACC81AFB9204008FA782 /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 607FACCF1AFB9204008FA782;\n\t\t\tremoteInfo = ScaledVisibleCellsCollectionView;\n\t\t};\n/* End PBXContainerItemProxy section */\n\n/* Begin PBXFileReference section */\n\t\t4119CA378EA4FB2D23641F50 /* Pods-ScaledVisibleCellsCollectionView_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"Pods-ScaledVisibleCellsCollectionView_Example.debug.xcconfig\"; path = \"Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example.debug.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t48F7329C9D29CB922F1483CA /* Pods_ScaledVisibleCellsCollectionView_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ScaledVisibleCellsCollectionView_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t607FACD01AFB9204008FA782 /* ScaledVisibleCellsCollectionView_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ScaledVisibleCellsCollectionView_Example.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 /* ScaledVisibleCellsCollectionView_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ScaledVisibleCellsCollectionView_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 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = \"<group>\"; };\n\t\t6A74583C730ED5CE33C9A66E /* Pods-ScaledVisibleCellsCollectionView_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"Pods-ScaledVisibleCellsCollectionView_Tests.debug.xcconfig\"; path = \"Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_Tests.debug.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t8AC5D4A86B766122FF7C646B /* Pods-ScaledVisibleCellsCollectionView_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"Pods-ScaledVisibleCellsCollectionView_Tests.release.xcconfig\"; path = \"Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_Tests.release.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t95F45565AC2EAE6D3B928F48 /* Pods_ScaledVisibleCellsCollectionView_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ScaledVisibleCellsCollectionView_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t9F0B4791C42FC8DD6AE6D2FD /* Pods-ScaledVisibleCellsCollectionView_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"Pods-ScaledVisibleCellsCollectionView_Example.release.xcconfig\"; path = \"Pods/Target Support Files/Pods-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example.release.xcconfig\"; sourceTree = \"<group>\"; };\n\t\tA201E400A4FCA3ED9CE3E4CE /* ScaledVisibleCellsCollectionView.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = ScaledVisibleCellsCollectionView.podspec; path = ../ScaledVisibleCellsCollectionView.podspec; sourceTree = \"<group>\"; };\n\t\tD4D64C069591C25CE4B98816 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = \"<group>\"; };\n\t\tD8EEBE5D096E2B737242F356 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; 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\tF8DFCACFF16F793A5DBEA2FB /* Pods_ScaledVisibleCellsCollectionView_Example.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\t6B0296818D5A66AC602F693D /* Pods_ScaledVisibleCellsCollectionView_Tests.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\t3619101D92F6045F79F143BB /* Pods */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t4119CA378EA4FB2D23641F50 /* Pods-ScaledVisibleCellsCollectionView_Example.debug.xcconfig */,\n\t\t\t\t9F0B4791C42FC8DD6AE6D2FD /* Pods-ScaledVisibleCellsCollectionView_Example.release.xcconfig */,\n\t\t\t\t6A74583C730ED5CE33C9A66E /* Pods-ScaledVisibleCellsCollectionView_Tests.debug.xcconfig */,\n\t\t\t\t8AC5D4A86B766122FF7C646B /* Pods-ScaledVisibleCellsCollectionView_Tests.release.xcconfig */,\n\t\t\t);\n\t\t\tname = Pods;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t3D8483429D732A2A2DFFCC46 /* Frameworks */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t48F7329C9D29CB922F1483CA /* Pods_ScaledVisibleCellsCollectionView_Example.framework */,\n\t\t\t\t95F45565AC2EAE6D3B928F48 /* Pods_ScaledVisibleCellsCollectionView_Tests.framework */,\n\t\t\t);\n\t\t\tname = Frameworks;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t607FACC71AFB9204008FA782 = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t607FACF51AFB993E008FA782 /* Podspec Metadata */,\n\t\t\t\t607FACD21AFB9204008FA782 /* Example for ScaledVisibleCellsCollectionView */,\n\t\t\t\t607FACE81AFB9204008FA782 /* Tests */,\n\t\t\t\t607FACD11AFB9204008FA782 /* Products */,\n\t\t\t\t3619101D92F6045F79F143BB /* Pods */,\n\t\t\t\t3D8483429D732A2A2DFFCC46 /* Frameworks */,\n\t\t\t);\n\t\t\tindentWidth = 4;\n\t\t\tsourceTree = \"<group>\";\n\t\t\ttabWidth = 4;\n\t\t};\n\t\t607FACD11AFB9204008FA782 /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t607FACD01AFB9204008FA782 /* ScaledVisibleCellsCollectionView_Example.app */,\n\t\t\t\t607FACE51AFB9204008FA782 /* ScaledVisibleCellsCollectionView_Tests.xctest */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t607FACD21AFB9204008FA782 /* Example for ScaledVisibleCellsCollectionView */ = {\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\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 = \"Example for ScaledVisibleCellsCollectionView\";\n\t\t\tpath = ScaledVisibleCellsCollectionView;\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 /* Tests.swift */,\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\tA201E400A4FCA3ED9CE3E4CE /* ScaledVisibleCellsCollectionView.podspec */,\n\t\t\t\tD4D64C069591C25CE4B98816 /* README.md */,\n\t\t\t\tD8EEBE5D096E2B737242F356 /* LICENSE */,\n\t\t\t);\n\t\t\tname = \"Podspec Metadata\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXNativeTarget section */\n\t\t607FACCF1AFB9204008FA782 /* ScaledVisibleCellsCollectionView_Example */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget \"ScaledVisibleCellsCollectionView_Example\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t4DBF6C81A5E96FFB029415C8 /* 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\t659679747CB55D08021EB048 /* Embed Pods Frameworks */,\n\t\t\t\t84D4262E013E4CCCA7CACEAE /* 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 = ScaledVisibleCellsCollectionView_Example;\n\t\t\tproductName = ScaledVisibleCellsCollectionView;\n\t\t\tproductReference = 607FACD01AFB9204008FA782 /* ScaledVisibleCellsCollectionView_Example.app */;\n\t\t\tproductType = \"com.apple.product-type.application\";\n\t\t};\n\t\t607FACE41AFB9204008FA782 /* ScaledVisibleCellsCollectionView_Tests */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget \"ScaledVisibleCellsCollectionView_Tests\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t3300545ECA4AAF9EB5E8C882 /* 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\t3476C8678C030FE5A90E7759 /* Embed Pods Frameworks */,\n\t\t\t\tEED75074E6812FB1730B7FBD /* Copy Pods Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\t607FACE71AFB9204008FA782 /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = ScaledVisibleCellsCollectionView_Tests;\n\t\t\tproductName = Tests;\n\t\t\tproductReference = 607FACE51AFB9204008FA782 /* ScaledVisibleCellsCollectionView_Tests.xctest */;\n\t\t\tproductType = \"com.apple.product-type.bundle.unit-test\";\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\tLastSwiftMigration = 0700;\n\t\t\t\tLastSwiftUpdateCheck = 0700;\n\t\t\t\tLastUpgradeCheck = 0630;\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};\n\t\t\t\t\t607FACE41AFB9204008FA782 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 6.3.1;\n\t\t\t\t\t\tTestTargetID = 607FACCF1AFB9204008FA782;\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 \"ScaledVisibleCellsCollectionView\" */;\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 /* ScaledVisibleCellsCollectionView_Example */,\n\t\t\t\t607FACE41AFB9204008FA782 /* ScaledVisibleCellsCollectionView_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);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXResourcesBuildPhase section */\n\n/* Begin PBXShellScriptBuildPhase section */\n\t\t3300545ECA4AAF9EB5E8C882 /* 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 = \"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    cat << EOM\\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\\nEOM\\n    exit 1\\nfi\\n\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n\t\t3476C8678C030FE5A90E7759 /* 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 = \"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-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_Tests-frameworks.sh\\\"\\n\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n\t\t4DBF6C81A5E96FFB029415C8 /* 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 = \"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    cat << EOM\\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\\nEOM\\n    exit 1\\nfi\\n\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n\t\t659679747CB55D08021EB048 /* 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 = \"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-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example-frameworks.sh\\\"\\n\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n\t\t84D4262E013E4CCCA7CACEAE /* 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 = \"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-ScaledVisibleCellsCollectionView_Example/Pods-ScaledVisibleCellsCollectionView_Example-resources.sh\\\"\\n\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n\t\tEED75074E6812FB1730B7FBD /* 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 = \"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-ScaledVisibleCellsCollectionView_Tests/Pods-ScaledVisibleCellsCollectionView_Tests-resources.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\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\t607FACEC1AFB9204008FA782 /* Tests.swift 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\t607FACE71AFB9204008FA782 /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\ttarget = 607FACCF1AFB9204008FA782 /* ScaledVisibleCellsCollectionView_Example */;\n\t\t\ttargetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */;\n\t\t};\n/* End PBXTargetDependency 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/* 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_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\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\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 = 8.3;\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_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\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 = 8.3;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tSDKROOT = iphoneos;\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 = 4119CA378EA4FB2D23641F50 /* Pods-ScaledVisibleCellsCollectionView_Example.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tINFOPLIST_FILE = ScaledVisibleCellsCollectionView/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_NAME = \"$(TARGET_NAME)\";\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 = 9F0B4791C42FC8DD6AE6D2FD /* Pods-ScaledVisibleCellsCollectionView_Example.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tINFOPLIST_FILE = ScaledVisibleCellsCollectionView/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_NAME = \"$(TARGET_NAME)\";\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 = 6A74583C730ED5CE33C9A66E /* Pods-ScaledVisibleCellsCollectionView_Tests.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tBUNDLE_LOADER = \"$(TEST_HOST)\";\n\t\t\t\tFRAMEWORK_SEARCH_PATHS = (\n\t\t\t\t\t\"$(SDKROOT)/Developer/Library/Frameworks\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\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_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tTEST_HOST = \"$(BUILT_PRODUCTS_DIR)/ScaledVisibleCellsCollectionView_Example.app/ScaledVisibleCellsCollectionView_Example\";\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 = 8AC5D4A86B766122FF7C646B /* Pods-ScaledVisibleCellsCollectionView_Tests.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tBUNDLE_LOADER = \"$(TEST_HOST)\";\n\t\t\t\tFRAMEWORK_SEARCH_PATHS = (\n\t\t\t\t\t\"$(SDKROOT)/Developer/Library/Frameworks\",\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_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tTEST_HOST = \"$(BUILT_PRODUCTS_DIR)/ScaledVisibleCellsCollectionView_Example.app/ScaledVisibleCellsCollectionView_Example\";\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 \"ScaledVisibleCellsCollectionView\" */ = {\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 \"ScaledVisibleCellsCollectionView_Example\" */ = {\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 \"ScaledVisibleCellsCollectionView_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/* End XCConfigurationList section */\n\t};\n\trootObject = 607FACC81AFB9204008FA782 /* Project object */;\n}\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/ScaledVisibleCellsCollectionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"self:ScaledVisibleCellsCollectionView.xcodeproj\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/ScaledVisibleCellsCollectionView.xcodeproj/xcshareddata/xcschemes/ScaledVisibleCellsCollectionView-Example.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"0630\"\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 = \"607FACCF1AFB9204008FA782\"\n               BuildableName = \"ScaledVisibleCellsCollectionView_Example.app\"\n               BlueprintName = \"ScaledVisibleCellsCollectionView_Example\"\n               ReferencedContainer = \"container:ScaledVisibleCellsCollectionView.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n         <BuildActionEntry\n            buildForTesting = \"YES\"\n            buildForRunning = \"YES\"\n            buildForProfiling = \"NO\"\n            buildForArchiving = \"NO\"\n            buildForAnalyzing = \"YES\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"607FACE41AFB9204008FA782\"\n               BuildableName = \"ScaledVisibleCellsCollectionView_Tests.xctest\"\n               BlueprintName = \"ScaledVisibleCellsCollectionView_Tests\"\n               ReferencedContainer = \"container:ScaledVisibleCellsCollectionView.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      buildConfiguration = \"Debug\">\n      <Testables>\n         <TestableReference\n            skipped = \"NO\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"607FACE41AFB9204008FA782\"\n               BuildableName = \"ScaledVisibleCellsCollectionView_Tests.xctest\"\n               BlueprintName = \"ScaledVisibleCellsCollectionView_Tests\"\n               ReferencedContainer = \"container:ScaledVisibleCellsCollectionView.xcodeproj\">\n            </BuildableReference>\n         </TestableReference>\n      </Testables>\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"607FACCF1AFB9204008FA782\"\n            BuildableName = \"ScaledVisibleCellsCollectionView_Example.app\"\n            BlueprintName = \"ScaledVisibleCellsCollectionView_Example\"\n            ReferencedContainer = \"container:ScaledVisibleCellsCollectionView.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n   </TestAction>\n   <LaunchAction\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      buildConfiguration = \"Debug\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      allowLocationSimulation = \"YES\">\n      <BuildableProductRunnable\n         runnableDebuggingMode = \"0\">\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"607FACCF1AFB9204008FA782\"\n            BuildableName = \"ScaledVisibleCellsCollectionView_Example.app\"\n            BlueprintName = \"ScaledVisibleCellsCollectionView_Example\"\n            ReferencedContainer = \"container:ScaledVisibleCellsCollectionView.xcodeproj\">\n         </BuildableReference>\n      </BuildableProductRunnable>\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </LaunchAction>\n   <ProfileAction\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      buildConfiguration = \"Release\"\n      debugDocumentVersioning = \"YES\">\n      <BuildableProductRunnable\n         runnableDebuggingMode = \"0\">\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"607FACCF1AFB9204008FA782\"\n            BuildableName = \"ScaledVisibleCellsCollectionView_Example.app\"\n            BlueprintName = \"ScaledVisibleCellsCollectionView_Example\"\n            ReferencedContainer = \"container:ScaledVisibleCellsCollectionView.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": "ScaledVisibleCellsCollectionViewExample/ScaledVisibleCellsCollectionView.xcodeproj/xcuserdata/ikedamai.xcuserdatad/xcschemes/xcschememanagement.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>SuppressBuildableAutocreation</key>\n\t<dict>\n\t\t<key>607FACCF1AFB9204008FA782</key>\n\t\t<dict>\n\t\t\t<key>primary</key>\n\t\t\t<true/>\n\t\t</dict>\n\t\t<key>607FACE41AFB9204008FA782</key>\n\t\t<dict>\n\t\t\t<key>primary</key>\n\t\t\t<true/>\n\t\t</dict>\n\t</dict>\n</dict>\n</plist>\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/ScaledVisibleCellsCollectionView.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"group:ScaledVisibleCellsCollectionView.xcodeproj\">\n   </FileRef>\n   <FileRef\n      location = \"group:Pods/Pods.xcodeproj\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/ScaledVisibleCellsCollectionView.xcworkspace/xcshareddata/ScaledVisibleCellsCollectionView.xccheckout",
    "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>IDESourceControlProjectFavoriteDictionaryKey</key>\n\t<false/>\n\t<key>IDESourceControlProjectIdentifier</key>\n\t<string>DFEBC038-48CA-4125-AF74-FD1A1BF9D88D</string>\n\t<key>IDESourceControlProjectName</key>\n\t<string>ScaledVisibleCellsCollectionView</string>\n\t<key>IDESourceControlProjectOriginsDictionary</key>\n\t<dict>\n\t\t<key>B3EF76A2567DC792311C6177A929DB9D96C39798</key>\n\t\t<string>https://github.com/ikemai/ScaledVisibleCellsCollectionView.git</string>\n\t</dict>\n\t<key>IDESourceControlProjectPath</key>\n\t<string>ScaledVisibleCellsCollectionViewExample/ScaledVisibleCellsCollectionView.xcworkspace</string>\n\t<key>IDESourceControlProjectRelativeInstallPathDictionary</key>\n\t<dict>\n\t\t<key>B3EF76A2567DC792311C6177A929DB9D96C39798</key>\n\t\t<string>../..</string>\n\t</dict>\n\t<key>IDESourceControlProjectURL</key>\n\t<string>https://github.com/ikemai/ScaledVisibleCellsCollectionView.git</string>\n\t<key>IDESourceControlProjectVersion</key>\n\t<integer>111</integer>\n\t<key>IDESourceControlProjectWCCIdentifier</key>\n\t<string>B3EF76A2567DC792311C6177A929DB9D96C39798</string>\n\t<key>IDESourceControlProjectWCConfigurations</key>\n\t<array>\n\t\t<dict>\n\t\t\t<key>IDESourceControlRepositoryExtensionIdentifierKey</key>\n\t\t\t<string>public.vcs.git</string>\n\t\t\t<key>IDESourceControlWCCIdentifierKey</key>\n\t\t\t<string>B3EF76A2567DC792311C6177A929DB9D96C39798</string>\n\t\t\t<key>IDESourceControlWCCName</key>\n\t\t\t<string>ScaledVisibleCellsCollectionView</string>\n\t\t</dict>\n\t</array>\n</dict>\n</plist>\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewExample/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>org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)</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": "ScaledVisibleCellsCollectionViewExample/Tests/Tests.swift",
    "content": "//// https://github.com/Quick/Quick\n//\n//import ScaledVisibleCellsCollectionView\n//\n//class TableOfContentsSpec: QuickSpec {\n//    override func spec() {\n//        describe(\"these will fail\") {\n//\n//            it(\"can do maths\") {\n//                expect(1) == 2\n//            }\n//\n//            it(\"can read\") {\n//                expect(\"number\") == \"string\"\n//            }\n//\n//            it(\"will eventually fail\") {\n//                expect(\"time\").toEventually( equal(\"done\") )\n//            }\n//            \n//            context(\"these will pass\") {\n//\n//                it(\"can do maths\") {\n//                    expect(23) == 23\n//                }\n//\n//                it(\"can read\") {\n//                    expect(\"🐮\") == \"🐮\"\n//                }\n//\n//                it(\"will eventually pass\") {\n//                    var time = \"passing\"\n//\n//                    dispatch_async(dispatch_get_main_queue()) {\n//                        time = \"done\"\n//                    }\n//\n//                    waitUntil { done in\n//                        NSThread.sleepForTimeInterval(0.5)\n//                        expect(time) == \"done\"\n//\n//                        done()\n//                    }\n//                }\n//            }\n//        }\n//    }\n//}\n"
  },
  {
    "path": "ScaledVisibleCellsCollectionViewTests/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>jp.mai.ikeda.$(PRODUCT_NAME:rfc1034identifier)</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": "ScaledVisibleCellsCollectionViewTests/ScaledVisibleCellsCollectionViewTests.swift",
    "content": "//\n//  ScaledVisibleCellsCollectionViewTests.swift\n//  ScaledVisibleCellsCollectionViewTests\n//\n//  Created by Mai Ikeda on 2015/08/22.\n//  Copyright (c) 2015年 mai_ikeda. All rights reserved.\n//\n\nimport UIKit\nimport XCTest\n\nclass ScaledVisibleCellsCollectionViewTests: XCTestCase {\n    \n    override func setUp() {\n        super.setUp()\n        // Put setup code here. This method is called before the invocation of each test method in the class.\n    }\n    \n    override func tearDown() {\n        // Put teardown code here. This method is called after the invocation of each test method in the class.\n        super.tearDown()\n    }\n    \n    func testExample() {\n        // This is an example of a functional test case.\n        XCTAssert(true, \"Pass\")\n    }\n    \n    func testPerformanceExample() {\n        // This is an example of a performance test case.\n        self.measureBlock() {\n            // Put the code you want to measure the time of here.\n        }\n    }\n    \n}\n"
  }
]